DownloadFilesCompletedEventArgs Class |
Provides data for DownloadFilesCompleted event which is raised when either all file downloads
are complete or when the operation was cancled by user.
Inheritance HierarchySystemObject
SystemEventArgs
System.ComponentModelAsyncCompletedEventArgs
Aras.IOMEDownloadFilesCompletedEventArgs
Namespace:
Aras.IOME
Assembly:
IOM (in IOM.dll) Version: 14.0.9.36244
Syntaxpublic class DownloadFilesCompletedEventArgs : AsyncCompletedEventArgs
Public Class DownloadFilesCompletedEventArgs
Inherits AsyncCompletedEventArgs
public class DownloadFilesCompletedEventArgs extends AsyncCompletedEventArgs
public class DownloadFilesCompletedEventArgs extends AsyncCompletedEventArgs
The DownloadFilesCompletedEventArgs type exposes the following members.
Properties
| Name | Description |
---|
 | Cancelled | Gets a value indicating whether an asynchronous operation has been canceled. (Inherited from AsyncCompletedEventArgs.) |
 | Error | Gets a value indicating which error occurred during an asynchronous operation. (Inherited from AsyncCompletedEventArgs.) |
 | Result |
Returns the hashtable of file ID - DownloadResult pairs where each element
represent a download results for a particular file.
|
 | UserState | Gets the unique identifier for the asynchronous task. (Inherited from AsyncCompletedEventArgs.) |
Top
Remarks
In case an unhandled exception was raised during the initiation of asynchronous download of files
the download operation is interrupted and the exception is stored in the
Error property of the class.
Otherwise the
Result property of the class contains a hash table of
file ID -
DownloadResult
pairs where each element represents download result for a particular file.
See Also