WorkflowApplicationUnloadedException Constructors

Definition

Creates a new instance of the WorkflowApplicationUnloadedException class.

Overloads

WorkflowApplicationUnloadedException()

Creates a new instance of the WorkflowApplicationUnloadedException class.

WorkflowApplicationUnloadedException(String)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception.

WorkflowApplicationUnloadedException(SerializationInfo, StreamingContext)

Creates a new instance of the WorkflowApplicationUnloadedException class with the context and serialization information required to retrieve data about this exception from a serialized stream.

WorkflowApplicationUnloadedException(String, Exception)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception and with a specified exception that has a causal relationship to the WorkflowApplicationUnloadedException.

WorkflowApplicationUnloadedException(String, Guid)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception and the specified unique identifier for it.

WorkflowApplicationUnloadedException(String, Guid, Exception)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception, unique identifier for it, and the exception that is the cause of the WorkflowApplicationUnloadedException.

WorkflowApplicationUnloadedException()

Creates a new instance of the WorkflowApplicationUnloadedException class.

public:
 WorkflowApplicationUnloadedException();
public WorkflowApplicationUnloadedException ();
Public Sub New ()

Applies to

WorkflowApplicationUnloadedException(String)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception.

public:
 WorkflowApplicationUnloadedException(System::String ^ message);
public WorkflowApplicationUnloadedException (string message);
new System.Activities.WorkflowApplicationUnloadedException : string -> System.Activities.WorkflowApplicationUnloadedException
Public Sub New (message As String)

Parameters

message
String

The description of the application unloaded exception.

Applies to

WorkflowApplicationUnloadedException(SerializationInfo, StreamingContext)

Creates a new instance of the WorkflowApplicationUnloadedException class with the context and serialization information required to retrieve data about this exception from a serialized stream.

protected:
 WorkflowApplicationUnloadedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected WorkflowApplicationUnloadedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Activities.WorkflowApplicationUnloadedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Activities.WorkflowApplicationUnloadedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

All the information required to serialize or deserialize the application unloaded exception object.

context
StreamingContext

The source and destination of a given serialized stream and an additional caller-defined context.

Applies to

WorkflowApplicationUnloadedException(String, Exception)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception and with a specified exception that has a causal relationship to the WorkflowApplicationUnloadedException.

public:
 WorkflowApplicationUnloadedException(System::String ^ message, Exception ^ innerException);
public WorkflowApplicationUnloadedException (string message, Exception innerException);
new System.Activities.WorkflowApplicationUnloadedException : string * Exception -> System.Activities.WorkflowApplicationUnloadedException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A description of the application unloaded exception.

innerException
Exception

An exception that has a causal relationship to the application unloaded exception. The application unloaded exception is thrown in response to the inner exception and can use information from the inner exception to handle the error more appropriately.

Applies to

WorkflowApplicationUnloadedException(String, Guid)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception and the specified unique identifier for it.

public:
 WorkflowApplicationUnloadedException(System::String ^ message, Guid instanceId);
public WorkflowApplicationUnloadedException (string message, Guid instanceId);
new System.Activities.WorkflowApplicationUnloadedException : string * Guid -> System.Activities.WorkflowApplicationUnloadedException
Public Sub New (message As String, instanceId As Guid)

Parameters

message
String

A description of the application unloaded exception.

instanceId
Guid

A globally unique identifier.

Applies to

WorkflowApplicationUnloadedException(String, Guid, Exception)

Creates a new instance of the WorkflowApplicationUnloadedException class with the specified text string description of the exception, unique identifier for it, and the exception that is the cause of the WorkflowApplicationUnloadedException.

public:
 WorkflowApplicationUnloadedException(System::String ^ message, Guid instanceId, Exception ^ innerException);
public WorkflowApplicationUnloadedException (string message, Guid instanceId, Exception innerException);
new System.Activities.WorkflowApplicationUnloadedException : string * Guid * Exception -> System.Activities.WorkflowApplicationUnloadedException
Public Sub New (message As String, instanceId As Guid, innerException As Exception)

Parameters

message
String

A description of the application unloaded exception.

instanceId
Guid

A globally unique identifier.

innerException
Exception

An exception that has a causal relationship to the application unloaded exception. The application unloaded exception is thrown in response to the inner exception and can use information from the exception to handle the error more appropriately.

Applies to