ServerCommand Enumeration |  |
Namespace: sttp.transportAssembly: sttp.net (in sttp.net.dll) Version: 1.0.0
Syntaxpublic enum ServerCommand
Public Enumeration ServerCommand
public enum class ServerCommand
Request Example
MembersMember name | Value | Description |
---|
Connect | 0 |
Command code for handling connect operations.
|
MetaDataRefresh | 1 |
Command code for requesting an updated set of metadata.
|
Subscribe | 2 |
Command code for requesting a subscription of streaming data from server based on connection string that follows.
|
Unsubscribe | 3 |
Command code for requesting that server stop sending streaming data to the client and cancel the current subscription.
|
RotateCipherKeys | 4 |
Command code for manually requesting that server send a new set of cipher keys for data packet encryption (UDP only).
|
UpdateProcessingInterval | 5 |
Command code for manually requesting that server to update the processing interval with the following specified value.
|
DefineOperationalModes | 6 |
Command code for establishing operational modes.
|
ConfirmNotification | 7 |
Command code for receipt of a notification.
|
ConfirmBufferBlock | 8 |
Command code for receipt of a buffer block measurement.
|
ConfirmUpdateBaseTimes | 9 |
Command code for receipt of a base time update.
|
ConfirmSignalIndexCache | 10 |
Command code for confirming the receipt of a signal index cache.
|
GetPrimaryMetadataSchema | 11 |
Command code for requesting the primary metadata schema.
|
GetSignalSelectionSchema | 12 |
Command code for requesting the signal selection schema.
|
UserCommand00 | 208 |
Command code for handling user-defined commands.
|
UserCommand01 | 209 |
Command code for handling user-defined commands.
|
UserCommand02 | 210 |
Command code for handling user-defined commands.
|
UserCommand03 | 211 |
Command code for handling user-defined commands.
|
UserCommand04 | 212 |
Command code for handling user-defined commands.
|
UserCommand05 | 213 |
Command code for handling user-defined commands.
|
UserCommand06 | 214 |
Command code for handling user-defined commands.
|
UserCommand07 | 215 |
Command code for handling user-defined commands.
|
UserCommand08 | 216 |
Command code for handling user-defined commands.
|
UserCommand09 | 217 |
Command code for handling user-defined commands.
|
UserCommand10 | 218 |
Command code for handling user-defined commands.
|
UserCommand11 | 219 |
Command code for handling user-defined commands.
|
UserCommand12 | 220 |
Command code for handling user-defined commands.
|
UserCommand13 | 221 |
Command code for handling user-defined commands.
|
UserCommand14 | 222 |
Command code for handling user-defined commands.
|
UserCommand15 | 223 |
Command code for handling user-defined commands.
|
Remarks
Solicited server commands will receive a
Succeeded or
Failed
response code along with an associated success or failure message. Message type for successful responses will be based
on server command - for example, server response for a successful MetaDataRefresh command will return a serialized
[!:DataSet] of the available server metadata. Message type for failed responses will always be a string of
text representing the error message.
See Also