Struct DownloadProgress
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
Represents data for a downloading status.
public struct DownloadProgress
Constructors
View SourceDownloadProgress(int, int)
Initializes a new instance of the DownloadProgress struct.
Declaration
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 SourceCurrent
Gets or sets the current position.
Declaration
public int Current { get; set; }
Property Value
| Type | Description |
|---|---|
| int | The position indicating the current downloading progress in percentage. |
Start
Gets or sets the start position.
Declaration
public int Start { get; set; }
Property Value
| Type | Description |
|---|---|
| int | The position that downloading started in percentage. |
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. |
Overrides
System.ValueType.ToString()