Class PlaybackCommandReceivedEventArgs

Definition

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

Provides data for the PlaybackCommandReceived event.

C#
Copy
public class PlaybackCommandReceivedEventArgs : EventArgs
Inheritance
PlaybackCommandReceivedEventArgs

Constructors

View Source

PlaybackCommandReceivedEventArgs(String, MediaControlPlaybackCommand)

Initializes a new instance of the PlaybackCommandReceivedEventArgs class.

Declaration
C#
Copy
public PlaybackCommandReceivedEventArgs(string clientAppId, MediaControlPlaybackCommand command)
Parameters
Type Name Description
String clientAppId

The client application id.

MediaControlPlaybackCommand command

The playback command.

API Level: 4

Properties

View Source

ClientAppId

Gets the application id of the client that sent command.

Declaration
C#
Copy
public string ClientAppId { get; }
Property Value
Type Description
String

The client application id.

API Level: 4
View Source

Command

Gets the command.

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

The MediaControlPlaybackCommand.

API Level: 4

Extension Methods