2 instantiations of DispatcherBuilder
System.ServiceModel (2)
System\ServiceModel\ComIntegration\ComPlusServiceHost.cs (1)
73DispatcherBuilder dispatcherBuilder = new DispatcherBuilder();
System\ServiceModel\ServiceHost.cs (1)
552DispatcherBuilder dispatcherBuilder = new DispatcherBuilder();
27 references to DispatcherBuilder
System.ServiceModel (27)
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
122ClientRuntime clientRuntime = DispatcherBuilder.BuildProxyBehavior(serviceEndpoint, out parameters);
System\ServiceModel\ComIntegration\ComPlusServiceHost.cs (1)
73DispatcherBuilder dispatcherBuilder = new DispatcherBuilder();
System\ServiceModel\Description\DispatcherBuilder.cs (11)
102DispatcherBuilder.BuildProxyOperation(operation, clientRuntime); 106DispatcherBuilder.BuildDispatchOperation(operation, clientRuntime.CallbackDispatchRuntime, null); 110DispatcherBuilder.ApplyClientBehavior(serviceEndpoint, clientRuntime); 339Type returnValue = DispatcherBuilder.MaybeCreateListener(true, supportedChannelTypes.ToArray(), binding, parameters, 612DispatcherBuilder.SecurityContractInformationEndpointBehavior.ServerInstance.AddBindingParameters(endpoint, parameters); 613DispatcherBuilder.AddBindingParameters(endpoint, parameters); 753EndpointDispatcher dispatcher = DispatcherBuilder.BuildDispatcher(serviceHost, description, endpoint, endpoint.Contract, provider); 861DispatcherBuilder.BindOperations(endpoint.Contract, null, dispatcher.DispatchRuntime); 955DispatcherBuilder.BuildDispatchOperation(operation, dispatch, provider); 959DispatcherBuilder.BuildProxyOperation(operation, dispatch.CallbackClientRuntime); 1069DispatcherBuilder.BindOperations(contractDescription, clientRuntime, null);
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (1)
985DispatcherBuilder.MaybeCreateListener(true, endpointChannelTypes, binding, parameters,
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
1174DispatcherBuilder.MaybeCreateListener(true, endpointChannelTypes, binding, parameters,
System\ServiceModel\ServiceHost.cs (12)
50Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> endpointsByListenUriInfo; 278internal Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> EndpointsByListenUriInfo 290Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> GetEndpointsByListenUriInfo() 292Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>> endpointDictionary = new Dictionary<DispatcherBuilder.ListenUriInfo, Collection<ServiceEndpoint>>(); 295DispatcherBuilder.ListenUriInfo listenUriInfo = DispatcherBuilder.GetListenUriInfoForEndpoint(this, endpoint); 552DispatcherBuilder dispatcherBuilder = new DispatcherBuilder(); 658return DispatcherBuilder.GetBindingParameters(this, new Collection<ServiceEndpoint>()); 668else if (!this.EndpointsByListenUriInfo.TryGetValue(DispatcherBuilder.GetListenUriInfoForEndpoint(this, inputEndpoint), out endpoints) || !endpoints.Contains(inputEndpoint)) 674return DispatcherBuilder.GetBindingParameters(this, endpoints); 679return DispatcherBuilder.GetBindingParameters(this, endpoints);