Show / Hide Table of Contents

Class UnknownAttributeEventArgs

Denotes event arguments for an unknown attribute

Inheritance
object
EventArgs
UnknownAttributeEventArgs
Inherited Members
EventArgs.Empty
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: NMF.Serialization
Assembly: NMF.Serialization.dll
Syntax
public class UnknownAttributeEventArgs : EventArgs

Constructors

| Edit this page View Source

UnknownAttributeEventArgs(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 Source

Context

The context object

Declaration
public object Context { get; }
Property Value
Type Description
object
| Edit this page View Source

Name

The local name of the attribute

Declaration
public string Name { get; }
Property Value
Type Description
string
| Edit this page View Source

Namespace

The namespace of the attribute

Declaration
public string Namespace { get; }
Property Value
Type Description
string
| Edit this page View Source

Value

The attribute value

Declaration
public string Value { get; }
Property Value
Type Description
string
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX