Class SeriesInformation

Definition

Namespace:
Tizen.Multimedia.Remoting
Assembly:
Tizen.Multimedia.Remoting.dll

Represents properties for the video series information.

C#
Copy
public class SeriesInformation
Inheritance
object
SeriesInformation

Constructors

View Source

SeriesInformation(int, string)

Initializes a new instance of the SeriesInformation class.

Declaration
C#
Copy
public SeriesInformation(int number, string title)
Parameters
Type Name Description
int number

The order of this video in entire series.

string title

The title.

Properties

View Source

Number

Gets or sets the order of this video in entire series.

Declaration
C#
Copy
public int Number { get; }
Property Value
Type Description
int
View Source

Title

Gets or sets the title.

Declaration
C#
Copy
public string Title { get; }
Property Value
Type Description
string

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
object.ToString()