Class PlaylistUpdatedEventArgs

Definition

Namespace:
Tizen.Multimedia.Remoting
Assembly:
Tizen.Multimedia.Remoting.dll
API Level:
5

Provides data for the PlaylistUpdated event.

C#
Copy
public class PlaylistUpdatedEventArgs : EventArgs
Inheritance
PlaylistUpdatedEventArgs

Constructors

View Source

PlaylistUpdatedEventArgs(MediaControlPlaylistMode, String, MediaControlPlaylist)

Initializes a new instance of the PlaylistUpdatedEventArgs class.

Declaration
C#
Copy
public PlaylistUpdatedEventArgs(MediaControlPlaylistMode mode, string name, MediaControlPlaylist playlist)
Parameters
Type Name Description
MediaControlPlaylistMode mode

A value indicating the updated repeat mode.

System.String name

A value indicating the playlist name.

MediaControlPlaylist playlist

A value indicating the playlist.

Exceptions
Type Condition
System.ArgumentException

mode is invalid.

ArgumentNullException

name or playlist is null.

API Level: 5

Properties

View Source

Mode

Gets the updated playlist mode.

Declaration
C#
Copy
public MediaControlPlaylistMode Mode { get; }
Property Value
Type Description
MediaControlPlaylistMode

The MediaControlPlaylistMode.

Remarks

If The Mode is Updated, Retrieves the playlist using Name and call Update() to keep the playlist up to date.

API Level: 5
View Source

Name

Gets the playlist name.

Declaration
C#
Copy
public string Name { get; }
Property Value
Type Description
System.String
API Level: 5
View Source

Playlist

Gets the updated playlist.

Declaration
C#
Copy
public MediaControlPlaylist Playlist { get; }
Property Value
Type Description
MediaControlPlaylist
API Level: 5