13 references to InterfaceType
System.Workflow.Activities (13)
CorrelationValidator.cs (3)
34
Type interfaceType = (activity is CallExternalMethodActivity) ? ((CallExternalMethodActivity)activity).
InterfaceType
: ((HandleExternalEventActivity)activity).InterfaceType;
227
if (currentActivity is CallExternalMethodActivity && !interfaceType.Equals(((CallExternalMethodActivity)currentActivity).
InterfaceType
))
819
Type interfaceType = (activity is CallExternalMethodActivity) ? ((CallExternalMethodActivity)activity).
InterfaceType
: ((HandleExternalEventActivity)activity).InterfaceType;
Designers\InvokeMethodActivityDesigner.cs (2)
28
AddRemoveCorrelationToken(invokeMethod.
InterfaceType
, properties, corrRefProperty);
30
Type type = invokeMethod.
InterfaceType
;
InvokeMethodActivity.cs (8)
141
if (this.
InterfaceType
== null)
146
foreach (MethodInfo method in this.
InterfaceType
.GetMethods(BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public))
160
Type type = this.
InterfaceType
;
172
throw new InvalidOperationException(SR.GetString(SR.MethodInfoMissing, this.MethodName, this.
InterfaceType
.Name));
189
if (this.
InterfaceType
== null)
193
Type type = this.
InterfaceType
;
198
throw new InvalidOperationException(SR.GetString(SR.Error_ServiceNotFound, this.
InterfaceType
));
261
Type type = this.
InterfaceType
;