Provides data for DownloadFilesCompleted event which is raised when either all file downloads are complete or when the operation was cancled by user.

Namespace:  Aras.IOME
Assembly:  IOM (in IOM.dll) Version: 11.0.0.6296

Syntax

C#
public class DownloadFilesCompletedEventArgs : AsyncCompletedEventArgs
Visual Basic (Declaration)
Public Class DownloadFilesCompletedEventArgs _
	Inherits AsyncCompletedEventArgs
J#
public class DownloadFilesCompletedEventArgs extends AsyncCompletedEventArgs
JScript
public class DownloadFilesCompletedEventArgs extends AsyncCompletedEventArgs

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.

Inheritance Hierarchy

System..::.Object
  System..::.EventArgs
    System.ComponentModel..::.AsyncCompletedEventArgs
      Aras.IOME..::.DownloadFilesCompletedEventArgs

See Also