Class CustomCommand

Definition

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

Provides a means to to send custom commands.

C#
Copy
public sealed class CustomCommand : Command
Inheritance
System.Object
CustomCommand
Remarks

This command can be used by both client and server to send predefined command or data.

Constructors

View Source

CustomCommand(String)

Initializes a new instance of the CustomCommand class.

Declaration
C#
Copy
public CustomCommand(string action)
Parameters
Type Name Description
System.String action

A predefined custom command.

API Level: 5
View Source

CustomCommand(String, Bundle)

Initializes a new instance of the CustomCommand class.

Declaration
C#
Copy
public CustomCommand(string action, Bundle bundle)
Parameters
Type Name Description
System.String action

A predefined custom command.

Bundle bundle

The extra data for custom command.

API Level: 5

Properties

View Source

Action

Gets the custom action.

Declaration
C#
Copy
public string Action { get; }
Property Value
Type Description
System.String
API Level: 5
View Source

Bundle

Gets the extra data.

Declaration
C#
Copy
public Bundle Bundle { get; }
Property Value
Type Description
Bundle
API Level: 5