Skip to main content
Version: 5.7.0

GetUploadProgress

Returns the progress of the given upload from 0.0 to 1.0 or -1 if upload not found.

caution

This will always return 1 on Unity mobile platforms.

Method Parameters

ParameterDescription
uploadIdThe id of the upload

Usage

http://localhost:3000
string myUploadId = "1234-1234-1234-1234"; //From UploadFile return data

double progress = _bc.FileService.GetUploadProgress(myUploadId);