NBElementValueType EnumerationIBM Integration Bus
The NBElementValueType enum represents the allowed broker data types for NBElement values in the logical (hierarchical) view of the message.

Namespace: IBM.Broker.Plugin
Assembly: IBM.Broker.Plugin (in IBM.Broker.Plugin.dll) Version: 9.0.0.0
Syntax

public enum NBElementValueType
Members

  Member nameValueDescription
Unknown0 The datatype is unknown
Boolean1 The datatype is Boolean, which maps to the CLR type of Boolean or Nullable<Boolean>.
Integer2 The datatype is Integer, which maps to the CLR type of Int64 or Nullable<Int64>.
Float3 The datatype is Float, which maps to the CLR type of Double or Nullable<Double>.
Decimal4 The datatype is Decimal, which maps to the CLR type of Decimal or Nullable<Decimal>.
Character5 The datatype is Character, which maps to the CLR type of String.
Time6 The datatype is Time, which maps to the CLR type of TimeSpan or Nullable<TimeSpan>.
GmtTime7 The datatype is GmtTime, which maps to the CLR type of TimeSpan or Nullable<TimeSpan>.
Date8 The datatype is Date, which maps to the CLR type of DateTimeOffset or Nullable<DateTimeOffset>.
Timestamp9 The datatype is Timestamp, which maps to the CLR type of DateTimeOffset or Nullable<DateTimeOffset>.
GmtTimestamp10 The datatype is GmtTimestamp, which maps to the CLR type of DateTime or Nullable<DateTime>.
IntervalDaySecond11 The datatype is IntervalDaySecond, which maps to the CLR type of TimeSpan or Nullable<TimeSpan>.
IntervalYearMonth12 The datatype is IntervalYearMonth, which does not currently have a datatype mapping.
Blob13 The datatype is Blob, which maps to the CLR type of Byte[].
Bit14 The datatype is Bit, which maps to the CLR type of BitArray.
See Also