Class WebRTCDataChannelMessageReceivedEventArgs

Definition

Namespace:
Tizen.Multimedia.Remoting
Assembly:
Tizen.Multimedia.Remoting.dll
API Level:
9

Provides data for the MessageReceived event.

C#
Copy
public class WebRTCDataChannelMessageReceivedEventArgs : EventArgs
Inheritance
System.Object
WebRTCDataChannelMessageReceivedEventArgs

Properties

View Source

Data

Gets the byte data from remote peer.

Declaration
C#
Copy
public byte[] Data { get; }
Property Value
Type Description
System.Byte[]

The message.

Remarks

If Type is Strings, this property is null.

API Level: 9
View Source

Message

Gets the string message from remote peer.

Declaration
C#
Copy
public string Message { get; }
Property Value
Type Description
System.String

The message.

Remarks

If Type is Bytes, this property is null.

API Level: 9
View Source

Type

Gets the data channel type.

Declaration
C#
Copy
public DataChannelType Type { get; }
Property Value
Type Description
DataChannelType

The data channel type.

API Level: 9

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
System.String

A string that represents the current object.

Overrides
System.Object.ToString()
API Level: 9