Class PlayerTrackInfo

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll

Provides a means to retrieve the track information.

C#
Copy
public class PlayerTrackInfo
Inheritance
object
PlayerTrackInfo

Properties

View Source

Selected

Gets or sets the selected track index.

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

The currently selected track index.

Remarks

The Player that owns this instance must be in the Ready, Playing, or Paused state.

Exceptions
Type Condition
System.ObjectDisposedException

The Player that this instance belongs to has been disposed of.

System.InvalidOperationException

The Player that this instance belongs to is not in the valid state.

System.ArgumentOutOfRangeException

value is less than zero.
-or-
value is equal to or greater than GetCount().

Methods

View Source

GetCount()

Gets the number of tracks.

Declaration
C#
Copy
public int GetCount()
Returns
Type Description
int

The number of tracks.

Remarks

The Player that owns this instance must be in the Ready, Playing, or Paused state.

Exceptions
Type Condition
System.ObjectDisposedException

The Player that this instance belongs to has been disposed of.

System.InvalidOperationException

The Player that this instance belongs to is not in the valid state.

View Source

GetLanguageCode(int)

Gets the language code for the specified index, or null if the language is undefined.

Declaration
C#
Copy
public string GetLanguageCode(int index)
Parameters
Type Name Description
int index
Returns
Type Description
string

The number of tracks.

Remarks

The Player that owns this instance must be in the Ready, Playing, or Paused state.

The language codes are defined in ISO 639-1.

Exceptions
Type Condition
System.ObjectDisposedException

The Player that this instance belongs to has been disposed of.

System.InvalidOperationException

The Player that this instance belongs to is not in the valid state.

System.ArgumentOutOfRangeException

index is less than zero.
-or-
index is equal to or greater than GetCount().

See Also