BindEvent<T> Interface

The event of the deserialized value.

C#
public interface BindEvent<out T>
where T : class

Type Parameters

T
class

The type of the value.

Properties

Value

Gets the deserialized value.

Line

Gets the line number where this event occurs in the XML document.

Column

Gets the column number where this event occurs in the XML document.

Properties Detail

Value

Gets the deserialized value.

C#
T Value { get; }

Property Value

T

Line

Gets the line number where this event occurs in the XML document.

C#
int Line { get; }

Property Value

int

Column

Gets the column number where this event occurs in the XML document.

C#
int Column { get; }

Property Value

int