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