|
Kinetica C# API
Version 7.2.3.1
|
Interface for receiving callbacks during file upload operations. More...
Public Member Functions | |
| void | OnMultiPartUploadComplete (IList< FileOperationResult > results) |
| Called when all parts of a multi-part upload have been completed. More... | |
| void | OnPartUpload (FileOperationResult result) |
| Called when a single part of a multi-part upload has been completed. More... | |
| void | OnFullFileUpload (FileOperationResult result) |
| Called when a full file upload (non-multi-part) has been completed. More... | |
Interface for receiving callbacks during file upload operations.
Implement this interface to receive notifications about upload progress.
Definition at line 9 of file IFileUploadListener.cs.
| void IFileUploadListener.OnFullFileUpload | ( | FileOperationResult | result | ) |
Called when a full file upload (non-multi-part) has been completed.
| result | Result of the file upload. |
| void IFileUploadListener.OnMultiPartUploadComplete | ( | IList< FileOperationResult > | results | ) |
Called when all parts of a multi-part upload have been completed.
| results | List of results for each part of the upload. |
| void IFileUploadListener.OnPartUpload | ( | FileOperationResult | result | ) |
Called when a single part of a multi-part upload has been completed.
This is useful for tracking progress of large file uploads.
| result | Result of the part upload. |