Delegate FileHelper.UploadProgress
Delegate for get the state on a specific file when use the uploads method
Namespace: SecureExchangesSDK.Helpers
Assembly: SecureExchangesSDK.dll
Syntax
public delegate void UploadProgress(Guid mailID, string filePath, long part, long totalPart);
Parameters
Type | Name | Description |
---|---|---|
System.Guid | mailID | The reference for wich mail this file is associated |
System.String | filePath | The physical path of the current file |
System.Int64 | part | The part that are currently uplodings. Notes the uploads have multi-thread |
System.Int64 | totalPart | The number of part that file contains |