T

Namespace: Chimayo.Ssis.Ast.ControlFlow
Parent Module: _CfData

Control flow typed data value

Union Cases

Union CaseDescription
Boolean(bool)
Signature: bool
Currency(decimal)
Signature: decimal
Date(DateTime)
Signature: DateTime
Decimal(decimal)
Signature: decimal
Empty
Signature:
Guid(Guid)
Signature: Guid
Int16(int16)
Signature: int16
Int32(int32)
Signature: int32
Int64(int64)
Signature: int64
Int8(int8)
Signature: int8
Null
Signature:
Numeric(decimal)
Signature: decimal
Object
Signature:

Values of type object are not supported, but the data type is to support runtime behaviour

Real32(float32)
Signature: float32
Real64(float)
Signature: float
String(string)
Signature: string
UInt16(uint16)
Signature: uint16
UInt32(uint32)
Signature: uint32
UInt64(uint64)
Signature: uint64
UInt8(uint8)
Signature: uint8

Static members

Static memberDescription
create(o)
Signature: o:'a -> T
Type parameters: 'a

Creates a new instance of CfData by a typed .NET object. Not all data types can be created this way due to ambiguity. 'None' is converted to 'Null'. 'unit' is converted to 'Empty'.

getDefault(t)
Signature: t:CfDataType -> T

Gets a default CfData value for a specific CfDataType

getType(value)
Signature: value:T -> CfDataType

Gets the CfDataType of a CfData value