DownloadFileCompletedEventArgs Class |
Provides data for DownloadFileCompleted event which is raised when a single file download is complete.
Inheritance HierarchySystemObject
SystemEventArgs
System.ComponentModelAsyncCompletedEventArgs
Aras.IOMEDownloadFileCompletedEventArgs
Namespace:
Aras.IOME
Assembly:
IOM (in IOM.dll) Version: 14.0.20.39432
Syntaxpublic class DownloadFileCompletedEventArgs : AsyncCompletedEventArgs
Public Class DownloadFileCompletedEventArgs
Inherits AsyncCompletedEventArgs
public class DownloadFileCompletedEventArgs extends AsyncCompletedEventArgs
public class DownloadFileCompletedEventArgs extends AsyncCompletedEventArgs
The DownloadFileCompletedEventArgs 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 result item which is the item that was returned by Aras.IOM.Item.checkout(...)
for the file.
|
 | UserState | Gets the unique identifier for the asynchronous task. (Inherited from AsyncCompletedEventArgs.) |
Top
Remarks
In case an unhandled exception was raised during the file download the download of the file is interrupted
and the exception is stored in the Error property of the class. Otherwise the result of the
Aras.IOM.Item.checkout(...) for the file is stored in the Result property of the class.
See Also