Class WebRTCDataChannelMessageReceivedEventArgs
Definition
- Namespace:
- Tizen.Multimedia.Remoting
- Assembly:
- Tizen.Multimedia.Remoting.dll
Provides data for the MessageReceived event.
public class WebRTCDataChannelMessageReceivedEventArgs : EventArgs
- Inheritance
-
objectSystem.EventArgsWebRTCDataChannelMessageReceivedEventArgs
Properties
View SourceData
Gets the byte data from remote peer.
Declaration
public byte[] Data { get; }
Property Value
Type | Description |
---|---|
byte[] | The message. |
Remarks
View SourceMessage
Gets the string message from remote peer.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
string | The message. |
Remarks
View SourceType
Gets the data channel type.
Declaration
public DataChannelType Type { get; }
Property Value
Type | Description |
---|---|
DataChannelType | The data channel type. |
Methods
View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |
Overrides
object.ToString()