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