Class DataChannelReceiveArgs
Arguments for the data channel receive event.
Inheritance
System.Object
DataChannelReceiveArgs
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 Data
Declaration
public DataBuffer DataBytes { get; set; }
Property Value
Type | Description |
---|---|
Data |
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. |
RemoteConnectionInfo
Gets the remote connection info.
Declaration
public ConnectionInfo RemoteConnectionInfo { get; }
Property Value
Type | Description |
---|---|
Connection |