Class CoreUploadProgress
Progress for a single in-flight file.
Inherited Members
Namespace: CoreUpload.Components
Assembly: CoreUpload.dll
Syntax
public sealed class CoreUploadProgress
Properties
FileName
File the progress belongs to.
Declaration
public string FileName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Loaded
Bytes transferred so far.
Declaration
public long Loaded { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Percent
Completion percentage, 0-100.
Declaration
public int Percent { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Total
Total bytes for the file.
Declaration
public long Total { get; set; }
Property Value
| Type | Description |
|---|---|
| long |