3 implementations of IDebuggableWorkflowTree
System.Activities (2)
System\Activities\ActivityBuilder.cs (2)
18public sealed class ActivityBuilder : IDebuggableWorkflowTree 289public sealed class ActivityBuilder<TResult> : IDebuggableWorkflowTree
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\WorkflowService.cs (1)
30public class WorkflowService : IDebuggableWorkflowTree
12 references to IDebuggableWorkflowTree
System.Activities (4)
System\Activities\ActivityBuilder.cs (2)
161Activity IDebuggableWorkflowTree.GetWorkflowRoot() 364Activity IDebuggableWorkflowTree.GetWorkflowRoot()
System\Activities\Debugger\SourceLocationProvider.cs (2)
163IDebuggableWorkflowTree debuggableWorkflowTree = deserializedObject as IDebuggableWorkflowTree;
System.Activities.Presentation (8)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\WorkflowDesignerXamlHelper.cs (2)
108IDebuggableWorkflowTree debuggableWorkflowTree = rootModelObject as IDebuggableWorkflowTree;
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemExtensions.cs (2)
528if (root is IDebuggableWorkflowTree) 530return ((IDebuggableWorkflowTree)root).GetWorkflowRoot();
System.Activities.Presentation\System\Activities\Presentation\NamespaceSettingsHandler.cs (4)
73IDebuggableWorkflowTree debuggableWorkflowTree = root as IDebuggableWorkflowTree; 119IDebuggableWorkflowTree root = rootModel.GetCurrentValue() as IDebuggableWorkflowTree;