DurableServiceAttribute.UnknownExceptionAction Property

Definition

Gets or sets the UnknownExceptionAction enumeration value associated with the durable service.

public:
 property System::ServiceModel::Description::UnknownExceptionAction UnknownExceptionAction { System::ServiceModel::Description::UnknownExceptionAction get(); void set(System::ServiceModel::Description::UnknownExceptionAction value); };
public System.ServiceModel.Description.UnknownExceptionAction UnknownExceptionAction { get; set; }
member this.UnknownExceptionAction : System.ServiceModel.Description.UnknownExceptionAction with get, set
Public Property UnknownExceptionAction As UnknownExceptionAction

Property Value

An UnknownExceptionAction enumeration value.

Remarks

When DurableServiceAttribute is instantiated, it sets this property value to TerminateInstance. This means that whenever an unknown exception is encountered by the durable service, the service instance is terminated and any state information is deleted from the persistence store.

Applies to