UnknownExceptionAction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
TerminateInstance | 0 | The service will close all channels and remove its state information from its persistence store. |
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. |
Remarks
By default, when a durable service is created, UnknownExceptionAction is set to TerminateInstance.