10.24.0

SDTFieldType Enumeration

Data types that can be transmitted and received by the machine-independent get/set operations.

Definition

Namespace: SolaceSystems.Solclient.Messaging.SDT
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 10.24.0
C#
public enum SDTFieldType

Members

BOOL0 Corresponds to System.Boolean {true,false}.
UINT81 Corresponds to System.Byte [0,255].
INT82 Corresponds to System.Int16 within [-128,127].
UINT163 Corresponds to System.Int32 within [0,65535].
INT164 Corresponds to System.Int16 within [-32768,32767].
UINT325 Corresponds to System.Int64 within [0,4294967295].
INT326 Corresponds to System.Int32 within [-2147483648,2147483647].
UINT647 Maps to System.Int64 within [0,2power(63)-1].
INT648 Corresponds to System.Int64 within [2power(63),2power(63)-1].
WCHAR9 Corresponds to System.Char (16-bit unicode character).
UNKNOWN-1 A validly formatted but unrecognized data type.
STRING10 Corresponds to string (utf-8 encoded on the wire).
BYTEARRAY11 byte[].
FLOAT12 Corresponds to float.
DOUBLE13 Corresponds to double.
MAP14 Corresponds to IMapContainer.
STREAM15 Corresponds to IStreamContainer.
NULL16 Corresponds to null.
DESTINATION17 Corresponds to IDestination.
SMF_MESSAGE18 Corresponds to ISmfMessage (a complete SMF message that is encapsulated in the container).

See Also