BindResultImpl<T> Class

The default implementation of the BindResult<T> interface.

C#
public sealed class BindResultImpl<T> : BindResult<T>
where T : class

Type Parameters

T
class

The type of the deserialized value.

Inheritance
BindResultImpl<T>
Implements

Constructors

BindResultImpl(T, IXmlLineInfo)

The default implementation of the BindResult<T> interface.

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

BindResultImpl(T, IXmlLineInfo)

The default implementation of the BindResult<T> interface.

C#
public BindResultImpl(T value, IXmlLineInfo info)

Parameters

value
T

The deserialized value.

info
IXmlLineInfo

The location in the XML document where this result occurred.

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