WorkflowInstanceUnhandledExceptionRecord Constructors

Definition

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

Overloads

WorkflowInstanceUnhandledExceptionRecord(Guid, String, ActivityInfo, Exception)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

WorkflowInstanceUnhandledExceptionRecord(Guid, Int64, String, ActivityInfo, Exception)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

WorkflowInstanceUnhandledExceptionRecord(Guid, String, ActivityInfo, Exception, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

WorkflowInstanceUnhandledExceptionRecord(Guid, Int64, String, ActivityInfo, Exception, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

WorkflowInstanceUnhandledExceptionRecord(Guid, String, ActivityInfo, Exception)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

public:
 WorkflowInstanceUnhandledExceptionRecord(Guid instanceId, System::String ^ activityDefinitionId, System::Activities::Tracking::ActivityInfo ^ faultSource, Exception ^ exception);
public WorkflowInstanceUnhandledExceptionRecord (Guid instanceId, string activityDefinitionId, System.Activities.Tracking.ActivityInfo faultSource, Exception exception);
new System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord : Guid * string * System.Activities.Tracking.ActivityInfo * Exception -> System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord
Public Sub New (instanceId As Guid, activityDefinitionId As String, faultSource As ActivityInfo, exception As Exception)

Parameters

instanceId
Guid

The instance ID of the generating workflow instance.

activityDefinitionId
String

The activity definition ID of the generating workflow activity.

faultSource
ActivityInfo

The activity that generated the fault.

exception
Exception

The unhandled exception data.

Applies to

WorkflowInstanceUnhandledExceptionRecord(Guid, Int64, String, ActivityInfo, Exception)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

public:
 WorkflowInstanceUnhandledExceptionRecord(Guid instanceId, long recordNumber, System::String ^ activityDefinitionId, System::Activities::Tracking::ActivityInfo ^ faultSource, Exception ^ exception);
public WorkflowInstanceUnhandledExceptionRecord (Guid instanceId, long recordNumber, string activityDefinitionId, System.Activities.Tracking.ActivityInfo faultSource, Exception exception);
new System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord : Guid * int64 * string * System.Activities.Tracking.ActivityInfo * Exception -> System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord
Public Sub New (instanceId As Guid, recordNumber As Long, activityDefinitionId As String, faultSource As ActivityInfo, exception As Exception)

Parameters

instanceId
Guid

The instance ID of the generating workflow instance.

recordNumber
Int64

A sequence that defines the order in which tracking events are generated.

activityDefinitionId
String

The display name of the root activity of the workflow.

faultSource
ActivityInfo

The activity that generated the fault.

exception
Exception

The unhandled exception data.

Applies to

WorkflowInstanceUnhandledExceptionRecord(Guid, String, ActivityInfo, Exception, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

public:
 WorkflowInstanceUnhandledExceptionRecord(Guid instanceId, System::String ^ activityDefinitionId, System::Activities::Tracking::ActivityInfo ^ faultSource, Exception ^ exception, System::Activities::WorkflowIdentity ^ workflowDefinitionIdentity);
public WorkflowInstanceUnhandledExceptionRecord (Guid instanceId, string activityDefinitionId, System.Activities.Tracking.ActivityInfo faultSource, Exception exception, System.Activities.WorkflowIdentity workflowDefinitionIdentity);
new System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord : Guid * string * System.Activities.Tracking.ActivityInfo * Exception * System.Activities.WorkflowIdentity -> System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord
Public Sub New (instanceId As Guid, activityDefinitionId As String, faultSource As ActivityInfo, exception As Exception, workflowDefinitionIdentity As WorkflowIdentity)

Parameters

instanceId
Guid

The instance ID of the generating workflow instance.

activityDefinitionId
String

The display name of the root activity of the workflow.

faultSource
ActivityInfo

The activity that generated the fault.

exception
Exception

The unhandled exception data.

workflowDefinitionIdentity
WorkflowIdentity

The information about the workflow identity.

Applies to

WorkflowInstanceUnhandledExceptionRecord(Guid, Int64, String, ActivityInfo, Exception, WorkflowIdentity)

Creates a new instance of the WorkflowInstanceUnhandledExceptionRecord class.

public:
 WorkflowInstanceUnhandledExceptionRecord(Guid instanceId, long recordNumber, System::String ^ activityDefinitionId, System::Activities::Tracking::ActivityInfo ^ faultSource, Exception ^ exception, System::Activities::WorkflowIdentity ^ workflowDefinitionIdentity);
public WorkflowInstanceUnhandledExceptionRecord (Guid instanceId, long recordNumber, string activityDefinitionId, System.Activities.Tracking.ActivityInfo faultSource, Exception exception, System.Activities.WorkflowIdentity workflowDefinitionIdentity);
new System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord : Guid * int64 * string * System.Activities.Tracking.ActivityInfo * Exception * System.Activities.WorkflowIdentity -> System.Activities.Tracking.WorkflowInstanceUnhandledExceptionRecord
Public Sub New (instanceId As Guid, recordNumber As Long, activityDefinitionId As String, faultSource As ActivityInfo, exception As Exception, workflowDefinitionIdentity As WorkflowIdentity)

Parameters

instanceId
Guid

The instance ID of the generating workflow instance.

recordNumber
Int64

A sequence that defines the order in which tracking events are generated.

activityDefinitionId
String

The display name of the root activity of the workflow.

faultSource
ActivityInfo

The activity that generated the fault.

exception
Exception

The unhandled exception data.

workflowDefinitionIdentity
WorkflowIdentity

The information about the workflow identity.

Applies to