Class MediaControlPlaylist
Definition
- Namespace:
- Tizen.Multimedia.Remoting
- Assembly:
- Tizen.Multimedia.Remoting.dll
Represents playlist for media control.
C#
Copy
public class MediaControlPlaylist : IDisposable
- Inheritance
-
objectMedia
Control Playlist
- Implements
-
System.
IDisposable
Constructors
View Source
MediaControlPlaylist(string, Dictionary<string, MediaControlMetadata>)
Initializes a new instance of the Media
Declaration
C#
Copy
public MediaControlPlaylist(string name, Dictionary<string, MediaControlMetadata> metadata)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of this playlist. |
System.Collections.Generic.Dictionary<TKey, TValue><string, Media |
metadata | The metadata of this playlist. |
Exceptions
Type | Condition |
---|---|
System. |
An internal error occurs. |
View Source
MediaControlPlaylist(string)
Initializes a new instance of the Media
Declaration
C#
Copy
public MediaControlPlaylist(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of this playlist. |
Exceptions
Type | Condition |
---|---|
System. |
An internal error occurs. |
Properties
Declaration
C#
Copy
public string Name { get; }
Property Value
Type | Description |
---|---|
string |
Declaration
C#
Copy
public int TotalCount { get; }
Property Value
Type | Description |
---|---|
int |
Methods
View Source
AddMetadata(Dictionary<string, MediaControlMetadata>)
Sets the metadata to the playlist.
Declaration
C#
Copy
public void AddMetadata(Dictionary<string, MediaControlMetadata> metadata)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.Dictionary<TKey, TValue><string, Media |
metadata | The metadata of media. |
Exceptions
Type | Condition |
---|---|
System. |
|
Declaration
C#
Copy
public void AddMetadata(string index, MediaControlMetadata metadata)
Parameters
Type | Name | Description |
---|---|---|
string | index | The index of media in the playlist. |
Media |
metadata | The metadata of media. |
Exceptions
Type | Condition |
---|---|
System. |
|
Declaration
C#
Copy
public void Dispose()
Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | true to release both managed and unmanaged resources; false to release only unmanaged resources. |
Declaration
C#
Copy
protected ~MediaControlPlaylist()
Declaration
C#
Copy
public Dictionary<string, MediaControlMetadata> GetMetadata()
Returns
Type | Description |
---|---|
System.Collections.Generic.Dictionary<TKey, TValue><string, Media |
The dictionary set of index and Media |
Declaration
C#
Copy
public MediaControlMetadata GetMetadata(string index)
Parameters
Type | Name | Description |
---|---|---|
string | index | The index of media in the playlist. |
Returns
Type | Description |
---|---|
Media |
A Media |
Exceptions
Type | Condition |
---|---|
System. |
|
Declaration
C#
Copy
public void Update()
Implements
System.IDisposable