ExportErrorEventArgs Constructors

Definition

Overloads

ExportErrorEventArgs(Int32, String)

Initialize an ExportErrorEventArgs instance.

ExportErrorEventArgs(Int32, String, Exception)

Initialize an ExportErrorEventArgs instance.

ExportErrorEventArgs(Int32, String)

Initialize an ExportErrorEventArgs instance.

public:
 ExportErrorEventArgs(int exportedDiagramsCount, System::String ^ projectItem);
public ExportErrorEventArgs (int exportedDiagramsCount, string projectItem);
new Microsoft.VisualStudio.Modeling.Shell.ExportErrorEventArgs : int * string -> Microsoft.VisualStudio.Modeling.Shell.ExportErrorEventArgs
Public Sub New (exportedDiagramsCount As Integer, projectItem As String)

Parameters

exportedDiagramsCount
Int32

The number of items already exported in the current operation.

projectItem
String

The file name of the current item being exported.

Applies to

ExportErrorEventArgs(Int32, String, Exception)

Initialize an ExportErrorEventArgs instance.

public:
 ExportErrorEventArgs(int exportedDiagramsCount, System::String ^ projectFile, Exception ^ exception);
public ExportErrorEventArgs (int exportedDiagramsCount, string projectFile, Exception exception);
new Microsoft.VisualStudio.Modeling.Shell.ExportErrorEventArgs : int * string * Exception -> Microsoft.VisualStudio.Modeling.Shell.ExportErrorEventArgs
Public Sub New (exportedDiagramsCount As Integer, projectFile As String, exception As Exception)

Parameters

exportedDiagramsCount
Int32

The number of items already exported in the current operation.

projectFile
String

The file name of the current item being exported.

exception
Exception

The exception related to the current error, if any.

Applies to