Struct DownloadProgress
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
- API Level:
- 3
Represents data for a downloading status.
public struct DownloadProgress
Constructors
View SourceDownloadProgress(Int32, Int32)
Initializes a new instance of the DownloadProgress struct.
Declaration
public DownloadProgress(int start, int current)
Parameters
Type | Name | Description |
---|---|---|
Int32 | start | The position that downloading started in percentage. |
Int32 | current | The position indicating the current downloading progress in percentage. |
API Level: 3
Properties
View SourceCurrent
Gets or sets the current position(The end position of received data).
Declaration
public int Current { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The position indicating the current downloading progress in percentage. |
API Level: 3
View SourceStart
Gets or sets the starting position.
Declaration
public int Start { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The position that downloading started in percentage. |
API Level: 3
Methods
View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A string that represents the current object. |