Struct DownloadProgress
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
- API Level:
- 3
Represents data for a downloading status.
C#Copypublic struct DownloadProgress
Constructors
View Source
DownloadProgress(Int32, Int32)
Initializes a new instance of the DownloadProgress struct.
Declaration
C#Copypublic 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
Declaration
C#Copypublic int Current { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The position indicating the current downloading progress in percentage. |
API Level: 3
Declaration
C#Copypublic int Start { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The position that downloading started in percentage. |
API Level: 3
Methods
Declaration
C#Copypublic override string ToString()
Returns
Type | Description |
---|---|
System.String | A string that represents the current object. |