BindEventImpl<T> Class

The default implementation of the BindEvent<T> interface.

C#
public class BindEventImpl<T> : BindEvent<T>
where T : class

Type Parameters

T
class

The type of the deserialized event.

Inheritance
BindEventImpl<T>
Implements

Constructors

BindEventImpl(T, IXmlLineInfo)

Initializes a new instance of the BindEventImpl<T> class.

Properties

Methods

Equals(object) (Inherited from object)
GetHashCode() (Inherited from object)
GetType() (Inherited from object)
MemberwiseClone() (Inherited from object)
ToString() (Inherited from object)

Constructors Detail

BindEventImpl(T, IXmlLineInfo)

Initializes a new instance of the BindEventImpl<T> class.

C#
public BindEventImpl(T value, IXmlLineInfo info)

Parameters

value
T

The deserialized value.

info
IXmlLineInfo

The location information of the XML document.

Properties Detail

Value

C#
public T Value { get; }

Property Value

T

Implements

Line

C#
public int Line { get; }

Property Value

int

Implements

Column

C#
public int Column { get; }

Property Value

int

Implements