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