Delegate Utility.StreamCopyProgressDelegate
A delegate used to update a progress bar while copying a stream.
Namespace: OSGeo.MapGuide.MaestroAPI
Assembly: OSGeo.MapGuide.MaestroAPI.dll
Syntax
public delegate void StreamCopyProgressDelegate(long copied, long remaining, long total);
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | copied | The number of bytes copied so far |
System.Int64 | remaining | The number of bytes left in the stream. -1 if the stream length is not known |
System.Int64 | total | The total number of bytes in the source stream. -1 if the stream length is unknown |