Show / Hide Table of Contents

Interface IUploadProgress

Interface reporting upload progress.

Namespace: Google.Apis.Upload
Assembly: Google.Apis.dll
Syntax
public interface IUploadProgress

Properties

BytesSent

Gets the approximate number of bytes sent to the server.

Declaration
long BytesSent { get; }
Property Value
Type Description
System.Int64

Exception

Gets an exception if one occurred.

Declaration
Exception Exception { get; }
Property Value
Type Description
System.Exception

Status

Gets the current status of the upload

Declaration
UploadStatus Status { get; }
Property Value
Type Description
UploadStatus
In This Article
Back to top