Firebase.Storage.StorageProgress< T >

A class that receives progress updates for storage uploads and downloads.

Summary

Inheritance

Inherits from: IProgress< T >

Public functions

Report(T value)
virtual void
Called periodically during a long running operation, this method will pass value to the delegate passed in the constructor.
StorageProgress(Action< T > callback)
Creates an instance of a StorageProgress class.

Public functions

Report

virtual void Report(
  T value
)

Called periodically during a long running operation, this method will pass value to the delegate passed in the constructor.

Details
Parameters
value
Current state of the long running operation.

StorageProgress

 StorageProgress(
  Action< T > callback
)

Creates an instance of a StorageProgress class.

Details
Parameters
callback
A delegate that will be called periodically during a long running operation.