Struct DownloadProgress

Definition

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

Represents data for a downloading status.

C#
Copy
public struct DownloadProgress

Constructors

View Source

DownloadProgress(int, int)

Initializes a new instance of the DownloadProgress struct.

Declaration
C#
Copy
public DownloadProgress(int start, int current)
Parameters
Type Name Description
int start

The position that downloading started in percentage.

int current

The position indicating the current downloading progress in percentage.

Properties

View Source

Current

Gets or sets the current position.

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

The position indicating the current downloading progress in percentage.

View Source

Start

Gets or sets the start position.

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

The position that downloading started in percentage.

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
System.ValueType.ToString()