25 references to InterfaceType
System.Workflow.Activities (25)
WebServiceFault.cs (3)
148IComparable queueId = new EventQueueName(webservicereceive.InterfaceType, webservicereceive.MethodName, webservicereceive.QualifiedName); 237if (webServiceReceive.InterfaceType != null) 238interfaceType = typeProvider.GetType(webServiceReceive.InterfaceType.AssemblyQualifiedName);
WebServiceReceive.cs (16)
182if (this.InterfaceType != null) 184Type type = typeProvider.GetType(this.InterfaceType.AssemblyQualifiedName); 217EventQueueName key = new EventQueueName(this.InterfaceType, this.MethodName); 231ActivityExecutionStatus status = ExecuteForActivity(executionContext, this.InterfaceType, this.MethodName); 243this.ActivitySubscribed = CorrelationService.Subscribe(executionContext, this, this.InterfaceType, this.MethodName, this, this.WorkflowInstanceId); 361CorrelationService.Unsubscribe(context, this, this.InterfaceType, this.MethodName, this); 374ActivityExecutionStatus status = ExecuteForActivity(context, activity.InterfaceType, activity.MethodName); 391CorrelationService.Subscribe(parentContext, this, this.InterfaceType, this.MethodName, parentEventHandler, this.WorkflowInstanceId); 401CorrelationService.Unsubscribe(parentContext, this, this.InterfaceType, this.MethodName, parentEventHandler); 451if (this.InterfaceType != null) 452type = typeProvider.GetType(this.InterfaceType.AssemblyQualifiedName); 523if (webServiceReceive.InterfaceType != null) 524interfaceType = typeProvider.GetType(webServiceReceive.InterfaceType.AssemblyQualifiedName); 666Debug.Assert(webserviceInput.InterfaceType != null, "Interface type should not be null"); 668if (webserviceInput.InterfaceType != null) 671MethodInfo methodInfo = Helpers.GetInterfaceMethod(webserviceInput.InterfaceType, webserviceInput.MethodName);
WebServiceResponse.cs (6)
151IComparable queueId = new EventQueueName(webservicereceive.InterfaceType, webservicereceive.MethodName, webservicereceive.QualifiedName); 153MethodInfo mInfo = webservicereceive.InterfaceType.GetMethod(webservicereceive.MethodName); 262if (webServiceReceive.InterfaceType != null) 263type = typeProvider.GetType(webServiceReceive.InterfaceType.AssemblyQualifiedName); 360if (webServiceReceive.InterfaceType != null) 361interfaceType = typeProvider.GetType(webServiceReceive.InterfaceType.AssemblyQualifiedName);