Click or drag to resize

DownloadFileCompletedEventArgs Class

Provides data for DownloadFileCompleted event which is raised when a single file download is complete.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    System.ComponentModelAsyncCompletedEventArgs
      Aras.IOMEDownloadFileCompletedEventArgs

Namespace:  Aras.IOME
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public class DownloadFileCompletedEventArgs : AsyncCompletedEventArgs

The DownloadFileCompletedEventArgs type exposes the following members.

Properties
  NameDescription
Public propertyCancelled
Gets a value indicating whether an asynchronous operation has been canceled.
(Inherited from AsyncCompletedEventArgs.)
Public propertyError
Gets a value indicating which error occurred during an asynchronous operation.
(Inherited from AsyncCompletedEventArgs.)
Public propertyResult
Returns the result item which is the item that was returned by Aras.IOM.Item.checkout(...) for the file.
Public propertyUserState
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