Table of Contents

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 object

The context object

ns string

The namespace of the attribute

name string

The local name of the attribute

value string

The attribute value

Exceptions

ArgumentNullException

Thrown if either is null

Properties

Context

The context object

public object Context { get; }

Property Value

object

Name

The local name of the attribute

public string Name { get; }

Property Value

string

Namespace

The namespace of the attribute

public string Namespace { get; }

Property Value

string

Value

The attribute value

public string Value { get; }

Property Value

string