Class WebSocketSendArgs
Send arguments for the WebSocket class.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class WebSocketSendArgs : Dynamic
Constructors
WebSocketSendArgs()
Creates a new WebSocketSendArgs instance.
Declaration
public WebSocketSendArgs()
Properties
BinaryMessage
Gets or sets the message to send as binary data.
Declaration
public byte[] BinaryMessage { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
TextMessage
Gets or sets the message to send as text data.
Declaration
public string TextMessage { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Timeout
Gets or sets the timeout for the request (in ms).
Declaration
public int Timeout { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |