Class PlayOrder

Definition

Namespace:
Tizen.Content.MediaContent
Assembly:
Tizen.Content.MediaContent.dll
API Level:
4

Represents an order of a member of the playlist.

C#
Copy
public class PlayOrder : object
Inheritance
PlayOrder

Constructors

View Source

PlayOrder(Int32, Int32)

Initializes a new instance of the Playlist class with the specified member ID and the order value.

Declaration
C#
Copy
public PlayOrder(int memberId, int orderValue)
Parameters
Type Name Description
Int32 memberId

The ID of the member.

Int32 orderValue

The order value.

API Level: 4

Properties

View Source

MemberId

Gets or sets the member ID.

Declaration
C#
Copy
public int MemberId { get; set; }
Property Value
Type Description
Int32

The member ID.

API Level: 4
View Source

Value

Gets or sets the value indicating the order of the member in the playlist.

Declaration
C#
Copy
public int Value { get; set; }
Property Value
Type Description
Int32

An integer value indicating the order of the member in the playlist.

API Level: 4

Extension Methods