Struct DownloadProgress

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll
API Level:
3

Represents data for a downloading status.

C#
Copy
public struct DownloadProgress

Constructors

View Source

DownloadProgress(Int32, Int32)

Initializes a new instance of the DownloadProgress struct.

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

The position that downloading started in percentage.

System.Int32 current

The position indicating the current downloading progress in percentage.

API Level: 3

Properties

View Source

Current

Gets or sets the current position.

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

The position indicating the current downloading progress in percentage.

API Level: 3
View Source

Start

Gets or sets the start position.

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

The position that downloading started in percentage.

API Level: 3

Methods

View Source

ToString()

Returns a string that represents the current object.

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

A string that represents the current object.

Overrides
API Level: 3