Class PlayerTrackInfo
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
Provides a means to retrieve the track information.
public class PlayerTrackInfo
- Inheritance
-
objectPlayerTrackInfo
Properties
View SourceSelected
Gets or sets the selected track index.
Declaration
public int Selected { get; set; }
Property Value
| Type | Description |
|---|---|
| int | The currently selected track index. |
Remarks
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 |
|
See Also
Methods
View SourceGetCount()
Gets the number of tracks.
Declaration
public int GetCount()
Returns
| Type | Description |
|---|---|
| int | The number of tracks. |
Remarks
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. |
See Also
View SourceGetLanguageCode(int)
Gets the language code for the specified index, or null if the language is undefined.
Declaration
public string GetLanguageCode(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The index of track. |
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 |
|