The NBElementValueType enum represents the allowed broker data types for NBElement values in the logical (hierarchical) view of the message.
Namespace: IBM.Broker.PluginAssembly: IBM.Broker.Plugin (in IBM.Broker.Plugin.dll) Version: 9.0.0.0
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Unknown | 0 | The datatype is unknown | |
Boolean | 1 | The datatype is Boolean, which maps to the CLR type of Boolean or Nullable<Boolean>. | |
Integer | 2 | The datatype is Integer, which maps to the CLR type of Int64 or Nullable<Int64>. | |
Float | 3 | The datatype is Float, which maps to the CLR type of Double or Nullable<Double>. | |
Decimal | 4 | The datatype is Decimal, which maps to the CLR type of Decimal or Nullable<Decimal>. | |
Character | 5 | The datatype is Character, which maps to the CLR type of String. | |
Time | 6 | The datatype is Time, which maps to the CLR type of TimeSpan or Nullable<TimeSpan>. | |
GmtTime | 7 | The datatype is GmtTime, which maps to the CLR type of TimeSpan or Nullable<TimeSpan>. | |
Date | 8 | The datatype is Date, which maps to the CLR type of DateTimeOffset or Nullable<DateTimeOffset>. | |
Timestamp | 9 | The datatype is Timestamp, which maps to the CLR type of DateTimeOffset or Nullable<DateTimeOffset>. | |
GmtTimestamp | 10 | The datatype is GmtTimestamp, which maps to the CLR type of DateTime or Nullable<DateTime>. | |
IntervalDaySecond | 11 | The datatype is IntervalDaySecond, which maps to the CLR type of TimeSpan or Nullable<TimeSpan>. | |
IntervalYearMonth | 12 | The datatype is IntervalYearMonth, which does not currently have a datatype mapping. | |
Blob | 13 | The datatype is Blob, which maps to the CLR type of Byte[]. | |
Bit | 14 | The datatype is Bit, which maps to the CLR type of BitArray. |
See Also