Angara.Table


DataValue

Namespace: Angara.Data

Represents a single value of a table column.

Union Cases

Union CaseDescription
BooleanValue(Boolean)
Signature: Boolean
DateValue(DateTime)
Signature: DateTime
IntValue(int)
Signature: int
RealValue(float)
Signature: float
StringValue(string)
Signature: string

Instance members

Instance memberDescription
AsBoolean
Signature: Boolean

CompiledName: get_AsBoolean

AsDate
Signature: DateTime

CompiledName: get_AsDate

AsInt
Signature: int

If this instance is IntValue, returns the integer value; otherwise, throws InvalidCastException.

CompiledName: get_AsInt

AsReal
Signature: float

CompiledName: get_AsReal

AsString
Signature: string

CompiledName: get_AsString

Fork me on GitHub