22 references to WorkflowUnhandledExceptionAction
System.ServiceModel.Activities (22)
System\ServiceModel\Activities\Configuration\WorkflowUnhandledExceptionElement.cs (3)
22public WorkflowUnhandledExceptionAction Action 24get { return (WorkflowUnhandledExceptionAction)base[action]; } 46properties.Add(new ConfigurationProperty(action, typeof(WorkflowUnhandledExceptionAction), WorkflowUnhandledExceptionBehavior.defaultAction, null, new ServiceModelActivitiesEnumValidator(typeof(WorkflowUnhandledExceptionActionHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Activities\Description\WorkflowUnhandledExceptionAction.cs (5)
17internal static bool IsDefined(WorkflowUnhandledExceptionAction value) 19return (value == WorkflowUnhandledExceptionAction.Abandon || 20value == WorkflowUnhandledExceptionAction.Cancel || 21value == WorkflowUnhandledExceptionAction.Terminate || 22value == WorkflowUnhandledExceptionAction.AbandonAndSuspend);
System\ServiceModel\Activities\Description\WorkflowUnhandledExceptionBehavior.cs (4)
15internal const WorkflowUnhandledExceptionAction defaultAction = WorkflowUnhandledExceptionAction.AbandonAndSuspend; 17WorkflowUnhandledExceptionAction action; 24public WorkflowUnhandledExceptionAction Action
System\ServiceModel\Activities\Dispatcher\WorkflowServiceInstance.cs (8)
6032WorkflowUnhandledExceptionAction action; 6034public UnhandledExceptionPolicyHelper(WorkflowServiceInstance instance, WorkflowUnhandledExceptionAction action) 6052if (this.action == WorkflowUnhandledExceptionAction.Cancel) 6056else if (this.action == WorkflowUnhandledExceptionAction.Terminate) 6060else if (this.action == WorkflowUnhandledExceptionAction.AbandonAndSuspend) 6119if (this.action == WorkflowUnhandledExceptionAction.Cancel) 6123else if (this.action == WorkflowUnhandledExceptionAction.Terminate) 6127else if (this.action == WorkflowUnhandledExceptionAction.AbandonAndSuspend)
System\ServiceModel\Activities\WorkflowServiceHost.cs (2)
48WorkflowUnhandledExceptionAction unhandledExceptionAction; 186internal WorkflowUnhandledExceptionAction UnhandledExceptionAction