Class DataChannelReceiveArgs
Arguments for the data channel receive event.
Inheritance
System.Object
DataChannelReceiveArgs
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 DataChannelReceiveArgs
Properties
DataBytes
Gets or sets a received data buffer if it is available. Set to null if a data string was not received. Bear in mind that when accessing the payload data from the DataBuffer, only Length bytes starting with the Index byte should be read. See examples.
Declaration
public DataBuffer DataBytes { get; set; }
Property Value
Type | Description |
---|---|
DataBuffer |
DataString
Gets or sets a received data string if it is available. Set to null if a data string was not received.
Declaration
public string DataString { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RemoteConnectionInfo
Gets the remote connection info.
Declaration
public ConnectionInfo RemoteConnectionInfo { get; }
Property Value
Type | Description |
---|---|
ConnectionInfo |