Class PlayOrder

Definition

Namespace:
Tizen.Content.MediaContent
Assembly:
Tizen.Content.MediaContent.dll

Represents an order of a member of the playlist.

C#
Copy
public class PlayOrder
Inheritance
object
PlayOrder

Constructors

View Source

PlayOrder(int, int)

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
int memberId

The ID of the member.

int orderValue

The order value.

Exceptions
Type Condition
System.ArgumentOutOfRangeException

memberId is less than or equal to zero.
-or-
orderValue is less than zero.

Properties

View Source

MemberId

Gets or sets the member ID.

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

The member ID.

Exceptions
Type Condition
System.ArgumentOutOfRangeException

value is less than or equal to zero.

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
int

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

Exceptions
Type Condition
System.ArgumentOutOfRangeException

value is less than zero.