Class UnknownAttributeEventArgs
Denotes event arguments for an unknown attribute
Inherited Members
Namespace: NMF.Serialization
Assembly: NMF.Serialization.dll
Syntax
public class UnknownAttributeEventArgs : EventArgs
Constructors
| Edit this page View SourceUnknownAttributeEventArgs(object, string, string, string)
Creates a new instance
Declaration
public UnknownAttributeEventArgs(object context, string ns, string name, string value)
Parameters
Type | Name | Description |
---|---|---|
object | context | The context object |
string | ns | The namespace of the attribute |
string | name | The local name of the attribute |
string | value | The attribute value |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if either is null |
Properties
| Edit this page View SourceContext
The context object
Declaration
public object Context { get; }
Property Value
Type | Description |
---|---|
object |
Name
The local name of the attribute
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
string |
Namespace
The namespace of the attribute
Declaration
public string Namespace { get; }
Property Value
Type | Description |
---|---|
string |
Value
The attribute value
Declaration
public string Value { get; }
Property Value
Type | Description |
---|---|
string |