mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 14:55:11 +00:00
Internal rename of OID namespace to have Data prefix
This commit is contained in:
@@ -108,12 +108,12 @@ Below is a table of all namespaces within the library and what they represent
|
||||
|
||||
| Namespace | Description |
|
||||
| --- | --- |
|
||||
| `SabreTools.Data.ObjectIdentifier` | Object Identifier (OID) parsing |
|
||||
| `SabreTools.Serialization.CrossModel` | Convert between models; mainly used for metadata files converting to and from a common, `Dictionary`-based model |
|
||||
| `SabreTools.Serialization.Deserializers` | Convert from external sources to models |
|
||||
| `SabreTools.Serialization.Extensions` | Extension methods for both models and wrappers |
|
||||
| `SabreTools.Serialization.Interfaces` | Interfaces used commonly throughout the library |
|
||||
| `SabreTools.Serialization.Models` | Models representing different file and structure types |
|
||||
| `SabreTools.Serialization.ObjectIdentifier` | Object Identifier (OID) parsing |
|
||||
| `SabreTools.Serialization.Printers` | Export model information in a formatted manner |
|
||||
| `SabreTools.Serialization.Serializers` | Convert from models to external sources |
|
||||
| `SabreTools.Serialization.Wrappers` | Classes that wrap serialization and models to allow for including extension properties |
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using SabreTools.Serialization.ObjectIdentifier;
|
||||
using SabreTools.Data.ObjectIdentifier;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.Serialization.Test.ObjectIdentifier
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
using System;
|
||||
using System.Numerics;
|
||||
using System.Text;
|
||||
using SabreTools.Data.ObjectIdentifier;
|
||||
using SabreTools.Serialization.Models.ASN1;
|
||||
using SabreTools.Serialization.ObjectIdentifier;
|
||||
|
||||
namespace SabreTools.Serialization.Extensions
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace SabreTools.Serialization.ObjectIdentifier
|
||||
namespace SabreTools.Data.ObjectIdentifier
|
||||
{
|
||||
/// <summary>
|
||||
/// Methods related to Object Identifiers (OID) and ASN.1 notation
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Text;
|
||||
#pragma warning disable CS0162 // Unreachable code detected
|
||||
#pragma warning disable CS0164 // This label has not been referenced
|
||||
|
||||
namespace SabreTools.Serialization.ObjectIdentifier
|
||||
namespace SabreTools.Data.ObjectIdentifier
|
||||
{
|
||||
/// <summary>
|
||||
/// Methods related to Object Identifiers (OID) and OID-IRI formatting
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
|
||||
namespace SabreTools.Serialization.ObjectIdentifier
|
||||
namespace SabreTools.Data.ObjectIdentifier
|
||||
{
|
||||
/// <summary>
|
||||
/// Methods related to Object Identifiers (OID) and OID-IRI formatting
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SabreTools.Serialization.ObjectIdentifier
|
||||
namespace SabreTools.Data.ObjectIdentifier
|
||||
{
|
||||
/// <summary>
|
||||
/// Methods related to Object Identifiers (OID)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace SabreTools.Serialization.ObjectIdentifier
|
||||
namespace SabreTools.Data.ObjectIdentifier
|
||||
{
|
||||
/// <summary>
|
||||
/// Methods related to Object Identifiers (OID) and dot notation
|
||||
|
||||
Reference in New Issue
Block a user