 | SDTFieldType Enumeration |
version: 10.22.0
Data types that can be transmitted and received by the machine-independent get/set operations.
Namespace:
SolaceSystems.Solclient.Messaging.SDT
Assembly:
SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 10.22.0
Syntax
Members
| Member name | Value | Description |
---|
| BOOL | 0 |
Corresponds to System.Boolean {true,false}.
|
| UINT8 | 1 |
Corresponds to System.Byte [0,255].
|
| INT8 | 2 |
Corresponds to System.Int16 within [-128,127].
|
| UINT16 | 3 |
Corresponds to System.Int32 within [0,65535].
|
| INT16 | 4 |
Corresponds to System.Int16 within [-32768,32767].
|
| UINT32 | 5 |
Corresponds to System.Int64 within [0,4294967295].
|
| INT32 | 6 |
Corresponds to System.Int32 within [-2147483648,2147483647].
|
| UINT64 | 7 |
Maps to System.Int64 within [0,2power(63)-1].
|
| INT64 | 8 |
Corresponds to System.Int64 within [2power(63),2power(63)-1].
|
| WCHAR | 9 |
Corresponds to System.Char (16-bit unicode character).
|
| STRING | 10 |
Corresponds to string (utf-8 encoded on the wire).
|
| BYTEARRAY | 11 |
byte[].
|
| FLOAT | 12 |
Corresponds to float.
|
| DOUBLE | 13 |
Corresponds to double.
|
| MAP | 14 |
Corresponds to IMapContainer.
|
| STREAM | 15 |
Corresponds to IStreamContainer.
|
| NULL | 16 |
Corresponds to null.
|
| DESTINATION | 17 |
Corresponds to IDestination.
|
| SMF_MESSAGE | 18 |
Corresponds to ISmfMessage (a complete SMF message that is encapsulated in the container).
|
| UNKNOWN | -1 |
A validly formatted but unrecognized data type.
|
See Also