UnknownExceptionAction Enum

Definition

Caution

The WF3 types are deprecated. Instead, please use the new WF4 types from System.Activities.*

Specifies how a durable service will handle an unknown exception.

public enum class UnknownExceptionAction
public enum UnknownExceptionAction
[System.Obsolete("The WF3 types are deprecated.  Instead, please use the new WF4 types from System.Activities.*")]
public enum UnknownExceptionAction
type UnknownExceptionAction = 
[<System.Obsolete("The WF3 types are deprecated.  Instead, please use the new WF4 types from System.Activities.*")>]
type UnknownExceptionAction = 
Public Enum UnknownExceptionAction
Inheritance
UnknownExceptionAction
Attributes

Fields

AbortInstance 1

The service will abruptly stop and leave existing state information in its persistence store. Any changes to instance state during the operation which threw the unknown exception will be lost.

TerminateInstance 0

The service will close all channels and remove its state information from its persistence store.

Remarks

By default, when a durable service is created, UnknownExceptionAction is set to TerminateInstance.

Applies to