50 references to EndpointDispatcher
Binding.Http.IntegrationTests (1)
HttpBindingTestHelpers.cs (1)
21public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) { }
Binding.ReliableSession.IntegrationTests (1)
src\System.Private.ServiceModel\tests\Scenarios\Binding\Http\HttpBindingTestHelpers.cs (1)
21public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) { }
Client.ClientBase.IntegrationTests (3)
ClientBaseTestHelpers.cs (2)
87public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) 134public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
MessageInspectorTestHelpers.cs (1)
87public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
Contract.Fault.IntegrationTests (1)
FaultExceptionTests.cs (1)
80public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
Contract.Message.IntegrationTests (2)
MessageContractCommon.4.1.0.cs (1)
172public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
MessageContractTests.cs (1)
134public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
Contract.XmlSerializer.IntegrationTests (1)
XmlSerializerFormatTest.cs (1)
29public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
dotnet-svcutil.xmlserializer.IntegrationTests (1)
src\System.Private.ServiceModel\tests\Scenarios\Contract\XmlSerializer\XmlSerializerFormatTest.cs (1)
29public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
System.ServiceModel.Primitives (34)
System\ServiceModel\CallbackBehaviorAttribute.cs (1)
67void IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher)
System\ServiceModel\Channels\ServiceChannel.cs (3)
35private EndpointDispatcher _endpointDispatcher; 85EndpointDispatcher endpointDispatcher, 208internal EndpointDispatcher EndpointDispatcher
System\ServiceModel\Description\CallbackDebugBehavior.cs (1)
32void IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher)
System\ServiceModel\Description\ClientCredentials.cs (1)
186void IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher)
System\ServiceModel\Description\DispatcherBuilder.cs (2)
287public void ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher) 353public void ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher) { }
System\ServiceModel\Description\IEndpointBehavior.cs (1)
15void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher);
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
343internal static void TraceDroppedMessage(Message message, EndpointDispatcher dispatcher)
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (10)
93public SynchronizedCollection<EndpointDispatcher> Endpoints 342private void OnAddEndpoint(EndpointDispatcher endpoint) 355private void OnRemoveEndpoint(EndpointDispatcher endpoint) 491foreach (EndpointDispatcher ed in Endpoints) 581EndpointDispatcher endpoint = _endpointDispatchers[i]; 629internal class EndpointDispatcherCollection : SynchronizedCollection<EndpointDispatcher> 641foreach (EndpointDispatcher item in Items) 648protected override void InsertItem(int index, EndpointDispatcher item) 661EndpointDispatcher item = Items[index]; 666protected override void SetItem(int index, EndpointDispatcher item)
System\ServiceModel\Dispatcher\ChannelHandler.cs (5)
235EndpointDispatcher endpoint = _requestInfo.Endpoint; 407private ServiceChannel GetDatagramChannel(Message message, out EndpointDispatcher endpoint, out bool addressMatched) 432private EndpointDispatcher GetEndpointDispatcher(Message message, out bool addressMatched) 437private ServiceChannel GetSessionChannel(Message message, out EndpointDispatcher endpoint, out bool addressMatched) 1250public EndpointDispatcher Endpoint;
System\ServiceModel\Dispatcher\ConcurrencyBehavior.cs (1)
52foreach (EndpointDispatcher endpointDispatcher in runtime.Endpoints)
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
147public EndpointDispatcher EndpointDispatcher { get; } = null;
System\ServiceModel\Dispatcher\EndpointDispatcherTable.cs (5)
14private List<EndpointDispatcher> _cachedEndpoints; 23public void AddEndpoint(EndpointDispatcher endpoint) 31_cachedEndpoints = new List<EndpointDispatcher>(optimizationThreshold); 41public void RemoveEndpoint(EndpointDispatcher endpoint) 52public EndpointDispatcher Lookup(Message message, out bool addressMatched)
System\ServiceModel\OperationContext.cs (2)
37private EndpointDispatcher _endpointDispatcher; 135public EndpointDispatcher EndpointDispatcher
UnitTests.Common (6)
MockClientMessageInspector.cs (3)
29public Action<ServiceEndpoint, EndpointDispatcher> ApplyDispatchBehaviorOverride { get; set; } 52public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) 57public void DefaultApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)
MockEndpointBehavior.cs (3)
22public Action<ServiceEndpoint, EndpointDispatcher> ApplyDispatchBehaviorOverride { get; set; } 42public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) 47public void DefaultApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher)