1 instantiation of FaultAndCancellationHandlingFilter
System.Workflow.ComponentModel (1)
AuthoringOM\ComponentFactoryHelpers.cs (1)
37executors.Add(new FaultAndCancellationHandlingFilter());
12 references to FaultAndCancellationHandlingFilter
System.Workflow.ComponentModel (12)
AuthoringOM\Activity.cs (1)
241DependencyProperty.RegisterAsKnown(FaultAndCancellationHandlingFilter.FaultProcessedProperty, (byte)41, DependencyProperty.PropertyValidity.Uninitialize);
AuthoringOM\Compiler\Validation\TransactionContextValidator.cs (2)
25CompositeActivity exceptionHandlers = FaultAndCancellationHandlingFilter.GetFaultHandlers(activity); 33Activity cancellationHandler = FaultAndCancellationHandlingFilter.GetCancellationHandler(activity);
AuthoringOM\Filters\FaultHandlingFilter.cs (9)
12public static DependencyProperty FaultProcessedProperty = DependencyProperty.RegisterAttached("FaultProcessed", typeof(bool), typeof(FaultAndCancellationHandlingFilter), new PropertyMetadata(false)); 36Activity handlersActivity = FaultAndCancellationHandlingFilter.GetFaultHandlers(executionContext.Activity); 46handlersActivity = FaultAndCancellationHandlingFilter.GetCancellationHandler(executionContext.Activity); 56if ((bool)activity.GetValue(FaultAndCancellationHandlingFilter.FaultProcessedProperty)) 76!(bool)context.Activity.GetValue(FaultAndCancellationHandlingFilter.FaultProcessedProperty)) 78context.Activity.SetValue(FaultAndCancellationHandlingFilter.FaultProcessedProperty, true); 85CompositeActivity exceptionHandlersActivity = FaultAndCancellationHandlingFilter.GetFaultHandlers(context.Activity); 104Activity cancelHandler = FaultAndCancellationHandlingFilter.GetCancellationHandler(context.Activity); 160context.Activity.RemoveProperty(FaultAndCancellationHandlingFilter.FaultProcessedProperty);