1 implementation of IWorkflowCompilerOptionsService
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\XomlCompiler.cs (1)
74public class WorkflowCompilerOptionsService : IWorkflowCompilerOptionsService
21 references to IWorkflowCompilerOptionsService
System.Workflow.Activities (6)
Common\CompilerHelpers.cs (3)
130IWorkflowCompilerOptionsService workflowCompilerOptions = serviceProvider.GetService(typeof(IWorkflowCompilerOptionsService)) as IWorkflowCompilerOptionsService;
Common\CompModHelpers.cs (3)
411IWorkflowCompilerOptionsService compilerOptionsService = (IWorkflowCompilerOptionsService)serviceProvider.GetService(typeof(IWorkflowCompilerOptionsService));
System.Workflow.ComponentModel (15)
AuthoringOM\Compiler\XomlCompiler.cs (6)
196IWorkflowCompilerOptionsService optionsService = serviceProvider.GetService(typeof(IWorkflowCompilerOptionsService)) as IWorkflowCompilerOptionsService; 247static IDisposable CreateScope(IServiceProvider serviceProvider, IWorkflowCompilerOptionsService optionsService) 303IWorkflowCompilerOptionsService service; 305public InterfaceContextScope(IServiceProvider serviceProvider, IWorkflowCompilerOptionsService service)
AuthoringOM\Design\XomlDesignerLoader.cs (3)
52if (LoaderHost.GetService(typeof(IWorkflowCompilerOptionsService)) == null) 53LoaderHost.AddService(typeof(IWorkflowCompilerOptionsService), callback); 418else if (serviceType == typeof(IWorkflowCompilerOptionsService))
Shared\CompilerHelpers.cs (3)
128IWorkflowCompilerOptionsService workflowCompilerOptions = serviceProvider.GetService(typeof(IWorkflowCompilerOptionsService)) as IWorkflowCompilerOptionsService;
Shared\CompModHelpers.cs (3)
409IWorkflowCompilerOptionsService compilerOptionsService = (IWorkflowCompilerOptionsService)serviceProvider.GetService(typeof(IWorkflowCompilerOptionsService));