Interface IIdentity
Root-level component that marks the identity of an object. An identity has a namespace and name. Used together these produce a unique identity that is used to identify objects during serialization and deserialization.
Namespace: ExtendedXmlSerializer.ContentModel.Identification
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface IIdentity
Properties
Identifier
The identifier for the identity, usually a namespace or URI.
Declaration
string Identifier { get; }
Property Value
System.String
|
Name
The identity's name.
Declaration
string Name { get; }
Property Value
System.String
|