2 implementations of IReferenceService
System.Workflow.ComponentModel (2)
AuthoringOM\Design\ReferenceService.cs (1)
11internal sealed class ReferenceService : IReferenceService, IDisposable
AuthoringOM\Serializer\ActivityCodeDomReferenceService.cs (1)
32internal sealed class ActivityCodeDomReferenceService : IReferenceService
88 references to IReferenceService
System (9)
compmod\system\componentmodel\ReferenceConverter.cs (9)
64IReferenceService refSvc = (IReferenceService)context.GetService(typeof(IReferenceService)); 104IReferenceService refSvc = (IReferenceService)context.GetService(typeof(IReferenceService)); 149IReferenceService refSvc = (IReferenceService)context.GetService(typeof(IReferenceService));
System.Workflow.Activities (22)
Common\BasePropertyDescriptor.cs (3)
48IReferenceService referenceService = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService;
Designers\StateDesignerConnector.cs (3)
279IReferenceService referenceService = serializationManager.GetService(typeof(IReferenceService)) as IReferenceService;
Rules\Design\LogicalExpressionEditor.cs (12)
42IReferenceService rs = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService; 106IReferenceService rs = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService; 150IReferenceService rs = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService; 208IReferenceService rs = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService;
Rules\Design\LogicalExpressionTypeConverter.cs (4)
26IReferenceService referenceService = ((IReferenceService)this.ServiceProvider.GetService(typeof(IReferenceService))); 28throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, Messages.MissingService, typeof(IReferenceService).FullName));
System.Workflow.ComponentModel (57)
AuthoringOM\Design\ActivityDesigner.cs (3)
2241IReferenceService referenceService = GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Design\ActivityDesignerLayoutSerializers.cs (3)
210IReferenceService referenceService = serializationManager.GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Design\ComponentSerializationService.cs (12)
184IReferenceService referenceService = this.serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService; 242IReferenceService referenceService = this.serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService; 316IReferenceService referenceService = this.serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService; 551IReferenceService rs = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Design\CompositeActivityDesigner.cs (3)
1483IReferenceService referenceService = GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Design\DesignerHelpers.cs (3)
1588IReferenceService referenceService = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (6)
184IReferenceService rs = this.context.GetService(typeof(IReferenceService)) as IReferenceService; 313IReferenceService rs = this.context.GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Design\ReferenceService.cs (6)
141IComponent comp = ((IReferenceService)this).GetComponent(cevent.Component); 241IComponent IReferenceService.GetComponent(object reference) 255string IReferenceService.GetName(object reference) 269object IReferenceService.GetReference(string name) 285object[] IReferenceService.GetReferences() 296object[] IReferenceService.GetReferences(Type baseType)
AuthoringOM\Design\UITypeEditors.cs (3)
69IReferenceService rs = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Design\WorkflowInlining.cs (3)
276LoaderHost.RemoveService(typeof(IReferenceService)); 277LoaderHost.AddService(typeof(IReferenceService), callback); 284if (serviceType == typeof(IReferenceService))
AuthoringOM\Design\XomlDesignerLoader.cs (8)
61LoaderHost.RemoveService(typeof(IReferenceService)); 62if (LoaderHost.GetService(typeof(IReferenceService)) == null) 63LoaderHost.AddService(typeof(IReferenceService), callback); 414else if (serviceType == typeof(IReferenceService)) 439if (serviceType == typeof(IReferenceService)) 875IReferenceService referenceService = this.serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService;
AuthoringOM\Serializer\ActivityCodeDomReferenceService.cs (2)
34private IReferenceService refService; 36public ActivityCodeDomReferenceService(IReferenceService referenceService)
AuthoringOM\Serializer\ActivityCodeDomSerializationManager.cs (2)
134if (serviceType == typeof(IReferenceService)) 135service = new ActivityCodeDomReferenceService(this.serializationManager.GetService(serviceType) as IReferenceService);
Shared\BasePropertyDescriptor.cs (3)
47IReferenceService referenceService = serviceProvider.GetService(typeof(IReferenceService)) as IReferenceService;