Class XmlResolveNameClashException
Denotes the exception that an identifier has clashed
Implements
Inherited Members
Namespace: NMF.Serialization
Assembly: NMF.Serialization.dll
Syntax
public class XmlResolveNameClashException : Exception, ISerializable
Constructors
| Edit this page View SourceXmlResolveNameClashException(string, ITypeSerializationInfo, IEnumerable<object>)
Creates a new instance
Declaration
public XmlResolveNameClashException(string id, ITypeSerializationInfo type, IEnumerable<object> candidates)
Parameters
Type | Name | Description |
---|---|---|
string | id | the id |
ITypeSerializationInfo | type | theexpected type of elements |
IEnumerable<object> | candidates | The objects with the given id |
Properties
| Edit this page View SourceCandidates
The objects with the given id
Declaration
public IEnumerable<object> Candidates { get; }
Property Value
Type | Description |
---|---|
IEnumerable<object> |
Id
The identifier
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
string |
Type
The expected type of elements
Declaration
public ITypeSerializationInfo Type { get; }
Property Value
Type | Description |
---|---|
ITypeSerializationInfo |