|
Kinetica C# API
Version 7.2.3.1
|
Interface for receiving callbacks during file download operations. More...
Public Member Functions | |
| void | OnMultiPartDownloadComplete (IList< FileOperationResult > results) |
| Called when all parts of a multi-part download have been completed. More... | |
| void | OnPartDownload (FileOperationResult result) |
| Called when a single part of a multi-part download has been completed. More... | |
| void | OnFullFileDownload (IList< string > fileNames) |
| Called when one or more full file downloads (non-multi-part) have been completed. More... | |
Interface for receiving callbacks during file download operations.
Implement this interface to receive notifications about download progress.
Definition at line 9 of file IFileDownloadListener.cs.
| void IFileDownloadListener.OnFullFileDownload | ( | IList< string > | fileNames | ) |
Called when one or more full file downloads (non-multi-part) have been completed.
| fileNames | List of file names that were downloaded. |
| void IFileDownloadListener.OnMultiPartDownloadComplete | ( | IList< FileOperationResult > | results | ) |
Called when all parts of a multi-part download have been completed.
| results | List of results for each part of the download. |
| void IFileDownloadListener.OnPartDownload | ( | FileOperationResult | result | ) |
Called when a single part of a multi-part download has been completed.
This is useful for tracking progress of large file downloads.
| result | Result of the part download. |