26 references to Parent
System.ServiceModel (8)
System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (6)
108
if ((operation.
Parent
.InstanceProvider == null) && (operation.
Parent
.Type != null))
113
this.ValidateInstanceType(operation.
Parent
.Type, sync.Method);
119
this.ValidateInstanceType(operation.
Parent
.Type, async.BeginMethod);
120
this.ValidateInstanceType(operation.
Parent
.Type, async.EndMethod);
126
this.ValidateInstanceType(operation.
Parent
.Type, task.TaskMethod);
System\ServiceModel\Dispatcher\DispatchRuntime.cs (2)
941
if (item.
Parent
!= this.outer)
962
if (item.
Parent
!= this.outer)
System.ServiceModel.Activities (9)
System\ServiceModel\Activities\Description\ControlOperationBehavior.cs (2)
36
ServiceHostBase serviceHost = dispatchOperation.
Parent
.ChannelDispatcher.Host;
46
if (endpointToMatch.Id == dispatchOperation.
Parent
.EndpointDispatcher.Id)
System\ServiceModel\Activities\Description\WorkflowOperationBehavior.cs (7)
61
if (dispatchOperation.
Parent
== null
62
|| dispatchOperation.
Parent
.ChannelDispatcher == null
63
|| dispatchOperation.
Parent
.ChannelDispatcher.Host == null
64
|| dispatchOperation.
Parent
.ChannelDispatcher.Host.Description == null
65
|| dispatchOperation.
Parent
.ChannelDispatcher.Host.Description.Behaviors == null)
70
ServiceHostBase serviceHost = dispatchOperation.
Parent
.ChannelDispatcher.Host;
82
if (endpointToMatch.Id == dispatchOperation.
Parent
.EndpointDispatcher.Id)
System.ServiceModel.Routing (2)
System\ServiceModel\Routing\RoutingBehavior.cs (2)
271
dispatchOperation.
Parent
.ConcurrencyMode = ConcurrencyMode.Single;
272
dispatchOperation.
Parent
.ReleaseServiceInstanceOnTransactionComplete = false;
System.WorkflowServices (7)
System\ServiceModel\Description\WorkflowOperationBehavior.cs (7)
59
if (dispatch.
Parent
== null
60
|| dispatch.
Parent
.ChannelDispatcher == null
61
|| dispatch.
Parent
.ChannelDispatcher.Host == null
62
|| dispatch.
Parent
.ChannelDispatcher.Host.Description == null
63
|| dispatch.
Parent
.ChannelDispatcher.Host.Description.Behaviors == null)
68
WorkflowRuntimeBehavior workflowRuntimeBehavior = dispatch.
Parent
.ChannelDispatcher.Host.Description.Behaviors.Find<WorkflowRuntimeBehavior>();
75
dispatch.Invoker = new WorkflowOperationInvoker(description, this, workflowRuntimeBehavior.WorkflowRuntime, dispatch.
Parent
);