ServerMessageType
Overview
The ServerMessageType enumeration is used in the Remoting SDK Server Configuration System to represent type of the server message being configured. The IServerMessageConfiguration interface exposes value of this type.
Location
- Reference: RemObjects.SDK.Server.dll
- Namespace: RemObjects.SDK.Server
Value | Description |
---|---|
Bin | Binary message type. A BinMessage message instance will be used. |
BSON | BSON message type. A BsonMessage message instance will be used. |
Custom | Custom message type. To instantiate this message type Remoting SDK Server Configuration System calls the NetworkServer method. |
JSON | JSON message type. A JsonMessage message instance will be used. |
POST | POST message type. A PostMessage message instance will be used. |
SOAP | SOAP message type. A SoapMessage message instance will be used. |
XmlRpc | XML-RPC message type. A XmlRpcMessage message instance will be used. |
- IServerMessageConfiguration
- JsonMessage
- PostMessage
- SoapMessage
-
Remoting SDK Server Configuration System