InstanceUpdateException Constructors

Definition

Initializes a new instance of the InstanceUpdateException class.

Overloads

InstanceUpdateException()

Initializes a new instance of the InstanceUpdateException class.

InstanceUpdateException(IList<ActivityBlockingUpdate>)

Initializes a new instance of the InstanceUpdateException class with the specified blocking activities.

InstanceUpdateException(String)

Initializes a new instance of the InstanceUpdateException class with the specified message.

InstanceUpdateException(SerializationInfo, StreamingContext)

Initializes a new instance of the InstanceUpdateException class with serialized data.

InstanceUpdateException(String, IList<ActivityBlockingUpdate>)

Initializes a new instance of the InstanceUpdateException class with the specified message and blocking activities.

InstanceUpdateException(String, Exception)

Initializes a new instance of the InstanceUpdateException class with the specified error message and a reference to the inner exception that is the cause of this exception.

InstanceUpdateException(String, IList<ActivityBlockingUpdate>, Exception)

Initializes a new instance of the InstanceUpdateException class.

InstanceUpdateException()

Initializes a new instance of the InstanceUpdateException class.

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

Applies to

InstanceUpdateException(IList<ActivityBlockingUpdate>)

Initializes a new instance of the InstanceUpdateException class with the specified blocking activities.

public:
 InstanceUpdateException(System::Collections::Generic::IList<System::Activities::DynamicUpdate::ActivityBlockingUpdate ^> ^ blockingActivities);
public InstanceUpdateException (System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> blockingActivities);
new System.Activities.DynamicUpdate.InstanceUpdateException : System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> -> System.Activities.DynamicUpdate.InstanceUpdateException
Public Sub New (blockingActivities As IList(Of ActivityBlockingUpdate))

Parameters

blockingActivities
IList<ActivityBlockingUpdate>

The activities to block in this instance.

Applies to

InstanceUpdateException(String)

Initializes a new instance of the InstanceUpdateException class with the specified message.

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

Parameters

message
String

The message that describes the error.

Applies to

InstanceUpdateException(SerializationInfo, StreamingContext)

Initializes a new instance of the InstanceUpdateException class with serialized data.

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

Parameters

info
SerializationInfo

The object that holds the serialized object data.

context
StreamingContext

The contextual information about the source or destination.

Applies to

InstanceUpdateException(String, IList<ActivityBlockingUpdate>)

Initializes a new instance of the InstanceUpdateException class with the specified message and blocking activities.

public:
 InstanceUpdateException(System::String ^ message, System::Collections::Generic::IList<System::Activities::DynamicUpdate::ActivityBlockingUpdate ^> ^ blockingActivities);
public InstanceUpdateException (string message, System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> blockingActivities);
new System.Activities.DynamicUpdate.InstanceUpdateException : string * System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> -> System.Activities.DynamicUpdate.InstanceUpdateException
Public Sub New (message As String, blockingActivities As IList(Of ActivityBlockingUpdate))

Parameters

message
String

The error message that explains the reason for the exception.

blockingActivities
IList<ActivityBlockingUpdate>

The activities to block in this instance.

Applies to

InstanceUpdateException(String, Exception)

Initializes a new instance of the InstanceUpdateException class with the specified error message and a reference to the inner exception that is the cause of this exception.

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

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception.

Applies to

InstanceUpdateException(String, IList<ActivityBlockingUpdate>, Exception)

Initializes a new instance of the InstanceUpdateException class.

public:
 InstanceUpdateException(System::String ^ message, System::Collections::Generic::IList<System::Activities::DynamicUpdate::ActivityBlockingUpdate ^> ^ blockingActivities, Exception ^ innerException);
public InstanceUpdateException (string message, System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> blockingActivities, Exception innerException);
new System.Activities.DynamicUpdate.InstanceUpdateException : string * System.Collections.Generic.IList<System.Activities.DynamicUpdate.ActivityBlockingUpdate> * Exception -> System.Activities.DynamicUpdate.InstanceUpdateException
Public Sub New (message As String, blockingActivities As IList(Of ActivityBlockingUpdate), innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

blockingActivities
IList<ActivityBlockingUpdate>

The activities to block in this instance.

innerException
Exception

The exception that is the cause of the current exception.

Applies to