Class UploadProgress
UploadProgress allows for monitoring the asychronous upload progress of an API operation.
Namespace: GroupMeClientApi
Assembly: GroupMeClientApi.dll
Syntax
public class UploadProgress : object
Constructors
| Improve this Doc View SourceUploadProgress()
Initializes a new instance of the UploadProgress class.
Declaration
public UploadProgress()
Properties
| Improve this Doc View SourceBytesUploaded
Gets the number of bytes that have been successfully uploaded.
Declaration
public int BytesUploaded { get; }
Property Value
| Type | Description |
|---|---|
| Int32 |
State
Gets the state of the current upload operation.
Declaration
public UploadProgress.UploadState State { get; }
Property Value
| Type | Description |
|---|---|
| UploadProgress.UploadState |
Events
| Improve this Doc View SourceBytesUploadedChanged
An event that fires when the number of bytes that have been uploaded changes.
Declaration
public event Action<UploadProgress.BytesUploadedChangedEventArgs> BytesUploadedChanged
Event Type
| Type | Description |
|---|---|
| Action<UploadProgress.BytesUploadedChangedEventArgs> |