Class UnknownAttributeEventArgs
- Namespace
- NMF.Serialization
- Assembly
- NMF.Serialization.dll
Denotes event arguments for an unknown attribute
public class UnknownAttributeEventArgs : EventArgs
- Inheritance
-
UnknownAttributeEventArgs
- Inherited Members
Constructors
UnknownAttributeEventArgs(object, string, string, string)
Creates a new instance
public UnknownAttributeEventArgs(object context, string ns, string name, string value)
Parameters
context
objectThe context object
ns
stringThe namespace of the attribute
name
stringThe local name of the attribute
value
stringThe attribute value
Exceptions
- ArgumentNullException
Thrown if either is null
Properties
Context
The context object
public object Context { get; }
Property Value
Name
The local name of the attribute
public string Name { get; }
Property Value
Namespace
The namespace of the attribute
public string Namespace { get; }
Property Value
Value
The attribute value
public string Value { get; }