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