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
contextobjectThe context object
nsstringThe namespace of the attribute
namestringThe local name of the attribute
valuestringThe 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; }