94 instantiations of EndpointAddress
System.ServiceModel (64)
System\ServiceModel\ChannelFactory.cs (1)
590: this(binding, new EndpointAddress(remoteAddress))
System\ServiceModel\Channels\CallbackContextMessageProperty.cs (2)
46: this(new EndpointAddress(listenAddress), context) 104return CreateCallbackAddress(new EndpointAddress(listenAddress), this.context);
System\ServiceModel\Channels\HttpChannelFactory.cs (2)
441new EndpointAddress(WebSocketHelper.NormalizeWsSchemeWithHttpScheme(remoteAddress.Uri), remoteAddress) : 824to = new EndpointAddress(toHeader);
System\ServiceModel\Channels\HttpChannelListener.cs (1)
943new EndpointAddress(this.Uri), this.Uri, this.bufferPool, httpRequestContext, pipeline, httpResponseMessage, subProtocol);
System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
887address = new EndpointAddress(WebSocketHelper.GetWebSocketUri(endpointContext.Endpoint.Address.Uri), endpointContext.Endpoint.Address);
System\ServiceModel\Channels\InternalDuplexChannelFactory.cs (3)
39address = new EndpointAddress(this.innerChannelListener.Uri, uniqueEndpointHeader); 45address = new EndpointAddress(this.innerChannelListener.Uri); 77return this.CreateChannel(address, via, new EndpointAddress(this.innerChannelListener.Uri), filter, priority, usesUniqueHeader);
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
23IOutputChannel channel = this.innerChannelFactory.CreateChannel(new EndpointAddress(to));
System\ServiceModel\Channels\MsmqInputChannelBase.cs (1)
24this.localAddress = new EndpointAddress(listener.Uri);
System\ServiceModel\Channels\MsmqInputSessionChannel.cs (1)
28: base(listener, new EndpointAddress(listener.Uri))
System\ServiceModel\Channels\NamedPipeChannelListener.cs (1)
162this, new EndpointAddress(this.Uri), ExposeConnectionProperty, connectionDemuxer);
System\ServiceModel\Channels\PeerDuplexChannelListener.cs (1)
91this.duplexAcceptor = new PeerDuplexChannelAcceptor(this.InnerNode, this.Registration, this, new EndpointAddress(this.Uri), this.BaseUri);
System\ServiceModel\Channels\PeerInputChannelListener.cs (1)
90this.inputAcceptor = new PeerInputChannelAcceptor(this.InnerNode, this.Registration, this, new EndpointAddress(this.Uri), this.Uri);
System\ServiceModel\Channels\PeerService.cs (1)
142return new EndpointAddress(listener.Uri, listener.GetProperty<EndpointIdentity>());
System\ServiceModel\Channels\PnrpPeerResolver.cs (1)
403result = new PeerNodeAddress(new EndpointAddress(uriBuilder.Uri), new ReadOnlyCollection<IPAddress>(addresses));
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (2)
3537acksTo = new EndpointAddress(info.CreateSequenceInfo.To, match.Identity, match.Headers); 3549acksTo = new EndpointAddress(info.CreateSequenceInfo.To);
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
596EndpointAddress epa = new EndpointAddress(Utility.FormatListenerEndpoint(this.serviceName,
System\ServiceModel\Channels\TcpChannelListener.cs (1)
169this, new EndpointAddress(this.Uri), ExposeConnectionProperty, connectionDemuxer);
System\ServiceModel\ClientBase.cs (2)
106EndpointAddress endpointAddress = new EndpointAddress(remoteAddress); 240EndpointAddress endpointAddress = new EndpointAddress(remoteAddress);
System\ServiceModel\ComIntegration\ChannelCredentials.cs (1)
241channelCredentials.IssuedToken.LocalIssuerAddress = new EndpointAddress(localIssuerAddres);
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (3)
120ServiceChannel localChannel = serviceChannelFactory.CreateServiceChannel(new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri); 281EndpointAddress mexEndpointAddress = new EndpointAddress(new Uri(mexAddress), mexIdentity); 415this.serviceEndpoint = new ServiceEndpoint(contractDescription, endpoint.Binding, new EndpointAddress(new Uri(address), identity, (AddressHeaderCollection)null));
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (2)
120object transparentProxy = serviceChannelFactory.CreateChannel(contractType, new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri); 152endpoint.Address = new EndpointAddress(new Uri(address), identity);
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (2)
117serviceChannel = serviceChannelFactory.CreateServiceChannel(new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri); 288EndpointAddress endpointAddress = new EndpointAddress(new Uri(address), identity, (AddressHeaderCollection)null);
System\ServiceModel\Configuration\PeerCustomResolverElement.cs (1)
70settings.Address = new EndpointAddress(this.Address, ConfigLoader.LoadIdentity(this.Identity), this.Headers.Headers);
System\ServiceModel\Description\ConfigLoader.cs (5)
169serviceEndpoint.Address = new EndpointAddress(channelElement.Address, LoadIdentity(channelElement.Identity), channelElement.Headers.Headers); 375return new EndpointAddress(element.Address, LoadIdentity(element.Identity), element.Headers.Headers); 505serviceEndpoint = new ServiceEndpoint(contract, binding, new EndpointAddress(via, LoadIdentity(endpointElement.Identity), endpointElement.Headers.Headers)); 760endpoint.Address = new EndpointAddress(channelEndpointElementCopy.Address, LoadIdentity(channelEndpointElementCopy.Identity), channelEndpointElementCopy.Headers.Headers); 985endpoint.Address = new EndpointAddress(via, LoadIdentity(serviceEndpointElement.Identity), serviceEndpointElement.Headers.Headers);
System\ServiceModel\Description\MetadataExchangeClient.cs (4)
61this.ctorEndpointAddress = new EndpointAddress(address); 273return this.BeginGetMetadata(new MetadataReferenceRetriever(new EndpointAddress(address), this), callback, asyncState); 312: (MetadataRetriever) new MetadataReferenceRetriever(new EndpointAddress(address), this); 362retriever = new MetadataReferenceRetriever(new EndpointAddress(address), this);
System\ServiceModel\Description\MetadataResolver.cs (1)
149return new AsyncMetadataResolverHelper(new EndpointAddress(address), mode, client, contracts, callback, asyncState);
System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
412EndpointAddress address = new EndpointAddress(listenUri);
System\ServiceModel\Description\WsdlImporter.cs (1)
1097return new EndpointAddress(soapAddressBinding.Location);
System\ServiceModel\DuplexChannelFactory.cs (3)
27: this((object)callbackInstanceType, binding, new EndpointAddress(remoteAddress)) 50: this((object)callbackInstance, binding, new EndpointAddress(remoteAddress)) 127: this(callbackObject, binding, new EndpointAddress(remoteAddress))
System\ServiceModel\EndpointAddress.cs (3)
225anonymousAddress = new EndpointAddress(AnonymousUri); 691return new EndpointAddress(addressingVersion, uri, identity, headers, buffer, metadataSection, extensionSection, pspSection); 1384return new EndpointAddress(
System\ServiceModel\Security\IdentityVerifier.cs (1)
67reference = new EndpointAddress(via);
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (1)
998EndpointDispatcher endpointDispatcher = new EndpointDispatcher(new EndpointAddress(this.listenUri), "SecurityNegotiationContract", NamingHelper.DefaultNamespace, true);
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
1187EndpointDispatcher endpointDispatcher = new EndpointDispatcher(new EndpointAddress(this.listenUri), "IssueAndRenewSession", NamingHelper.DefaultNamespace, true);
System\ServiceModel\Security\SspiNegotiationTokenAuthenticator.cs (1)
60new EndpointAddress(ListenUri));
System\ServiceModel\Security\WSSecurityPolicy.cs (1)
2298addressToSerialize = new EndpointAddress(
System\ServiceModel\ServiceConfiguration.cs (2)
228ServiceEndpoint endpoint = new ServiceEndpoint(contract, binding, new EndpointAddress(ServiceHost.MakeAbsoluteUri(address, binding, this.host.InternalBaseAddresses))); 305ServiceEndpoint endpoint = new ServiceEndpoint(contract, protocol, new EndpointAddress(uri));
System\ServiceModel\ServiceHost.cs (2)
374ServiceEndpoint serviceEndpoint = new ServiceEndpoint(contract, binding, new EndpointAddress(via)); 436endpoint.Address = new EndpointAddress(absoluteUri);
System\ServiceModel\Transactions\WsatConfiguration.cs (4)
185return new EndpointAddress(this.registrationServiceAddress10, refParam); 188return new EndpointAddress(this.registrationServiceAddress11, refParam); 344return new EndpointAddress(builder.Uri, identity); 348return new EndpointAddress(builder.Uri);
System.ServiceModel.Activities (9)
System\ServiceModel\Activities\ClientOperationFormatterProvider.cs (1)
35EndpointDispatcher dispatcher = new EndpointDispatcher(new EndpointAddress("http://dummyuri/"), "dummyContract", "urn:dummyContractNs");
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (1)
147EndpointAddress address = new EndpointAddress(controlEndpointAddress.AbsoluteUri);
System\ServiceModel\Activities\InternalSendMessage.cs (3)
306result.Address = new EndpointAddress(this.Endpoint.AddressUri, this.Endpoint.Identity, this.GetCachedEndpointHeaders()); 473new EndpointAddress(endpointAddressUri, this.Endpoint.Identity, this.GetCachedEndpointHeaders()); 510endpointAddress = new EndpointAddress(callbackUri, endpointIdentity, headers);
System\ServiceModel\Activities\ServiceOperationFormatterProvider.cs (1)
25EndpointDispatcher dispatcher = new EndpointDispatcher(new EndpointAddress("http://dummyuri/"), "dummyContract", "urn:dummyContractNs");
System\ServiceModel\Activities\WorkflowControlEndpoint.cs (1)
29new EndpointAddress(new Uri(WorkflowControlEndpoint.DefaultBaseUri, new Uri(Guid.NewGuid().ToString(), UriKind.Relative))))
System\ServiceModel\Activities\WorkflowServiceHost.cs (1)
309return AddServiceEndpointCore(serviceContractName, binding, new EndpointAddress(via), listenUri, behaviorConfigurationName);
System\ServiceModel\Endpoint.cs (1)
127return new EndpointAddress(address, this.Identity, new AddressHeaderCollection(this.Headers));
System.ServiceModel.Channels (3)
System\ServiceModel\Channels\UdpChannelFactory.cs (1)
113EndpointAddress localAddress = new EndpointAddress(EndpointAddress.AnonymousUri);
System\ServiceModel\Channels\UdpChannelListener.cs (2)
738return new ServerUdpDuplexChannel(this, this.ListenSockets.ToArray(), new EndpointAddress(this.Uri), this.Uri, this.IsMulticast); 751return new UdpReplyChannel(this, this.ListenSockets.ToArray(), new EndpointAddress(this.Uri), this.Uri, this.IsMulticast);
System.ServiceModel.Discovery (7)
System\ServiceModel\Discovery\DiscoveryClientBindingElement.cs (1)
18public static readonly EndpointAddress DiscoveryEndpointAddress = new EndpointAddress("http://schemas.microsoft.com/discovery/dynamic");
System\ServiceModel\Discovery\EndpointDiscoveryMetadata.cs (2)
32this.endpointAddress = new EndpointAddress(EndpointAddress.AnonymousUri); 348this.endpointAddress = new EndpointAddress(EndpointAddress.AnonymousUri);
System\ServiceModel\Discovery\ResolveCriteria.cs (1)
24: this(new EndpointAddress(EndpointAddress.AnonymousUri))
System\ServiceModel\Discovery\UdpAnnouncementEndpoint.cs (1)
108base.Address = new EndpointAddress(base.DiscoveryVersion.Implementation.DiscoveryAddress);
System\ServiceModel\Discovery\UdpDiscoveryEndpoint.cs (1)
112base.Address = new EndpointAddress(base.DiscoveryVersion.Implementation.DiscoveryAddress);
System\ServiceModel\Discovery\UdpReplyToBehavior.cs (1)
44annonymousAddress = new EndpointAddress(EndpointAddress.AnonymousUri);
System.ServiceModel.Routing (2)
System\ServiceModel\Routing\Configuration\RoutingSection.cs (2)
580filter = new EndpointAddressMessageFilter(new EndpointAddress(this.FilterData), false); 583filter = new PrefixEndpointAddressMessageFilter(new EndpointAddress(this.FilterData), false);
System.ServiceModel.Web (4)
System\ServiceModel\Description\WebHttpBehavior.cs (1)
1078EndpointDispatcher dummyED = new EndpointDispatcher(new EndpointAddress("http://localhost/"), "name", "");
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
259EndpointAddress metadataAddress = new EndpointAddress(builder.Uri);
System\ServiceModel\Web\WebChannelFactory.cs (2)
54: base(binding, (remoteAddress != null) ? new EndpointAddress(remoteAddress) : null) 59: base(endpointConfigurationName, (remoteAddress != null) ? new EndpointAddress(remoteAddress) : null)
System.WorkflowServices (5)
System\ServiceModel\Activities\Description\WorkflowRuntimeEndpoint.cs (1)
43base.Address = new EndpointAddress(endpointUri);
System\ServiceModel\Activities\WorkflowClientDeliverMessageWrapper.cs (1)
46new EndpointAddress(this.baseUri)))
System\Workflow\Runtime\Hosting\ChannelManagerHelpers.cs (3)
38return new EndpointAddress("channelCache://" + endpointName + "/" + contractName); 50return new EndpointAddress(address.Uri, endpointIdentity); 121new object[1] { new EndpointAddress(customAddress) }) as IChannel;
989 references to EndpointAddress
System.ServiceModel (891)
System\ServiceModel\ChannelFactory.cs (19)
166internal EndpointAddress CreateEndpointAddress(ServiceEndpoint endpoint) 251protected void InitializeEndpoint(string configurationName, EndpointAddress address) 278internal void InitializeEndpoint(string configurationName, EndpointAddress address, System.Configuration.Configuration configuration) 319protected void InitializeEndpoint(Binding binding, EndpointAddress address) 565public ChannelFactory(string endpointConfigurationName, EndpointAddress remoteAddress) 585: this(binding, (EndpointAddress)null) 595public ChannelFactory(Binding binding, EndpointAddress remoteAddress) 677public TChannel CreateChannel(EndpointAddress address) 687public virtual TChannel CreateChannel(EndpointAddress address, Uri via) 734public TChannel CreateChannelWithIssuedToken(SecurityToken issuedToken, EndpointAddress address) 743public TChannel CreateChannelWithIssuedToken(SecurityToken issuedToken, EndpointAddress address, Uri via) 761public TChannel CreateChannelWithActAsToken(SecurityToken actAsToken, EndpointAddress address) 770public TChannel CreateChannelWithActAsToken(SecurityToken actAsToken, EndpointAddress address, Uri via) 788public TChannel CreateChannelWithOnBehalfOfToken(SecurityToken onBehalfOf, EndpointAddress address) 797public TChannel CreateChannelWithOnBehalfOfToken(SecurityToken onBehalfOf, EndpointAddress address, Uri via) 806internal UChannel CreateChannel<UChannel>(EndpointAddress address) 812internal UChannel CreateChannel<UChannel>(EndpointAddress address, Uri via) 886public static TChannel CreateChannel(Binding binding, EndpointAddress endpointAddress) 900public static TChannel CreateChannel(Binding binding, EndpointAddress endpointAddress, Uri via)
System\ServiceModel\Channels\Addressing.cs (27)
165EndpointAddress from; 168FromHeader(EndpointAddress from, AddressingVersion version) 174public EndpointAddress From 189public static FromHeader Create(EndpointAddress from, AddressingVersion addressingVersion) 206EndpointAddress from = ReadHeaderValue(reader, version); 218public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion addressingVersion) 221return EndpointAddress.ReadFrom(addressingVersion, reader); 230public FullFromHeader(EndpointAddress from, string actor, bool mustUnderstand, bool relay, AddressingVersion version) 257EndpointAddress faultTo; 260FaultToHeader(EndpointAddress faultTo, AddressingVersion version) 266public EndpointAddress FaultTo 286public static FaultToHeader Create(EndpointAddress faultTo, AddressingVersion addressingVersion) 298EndpointAddress faultTo = ReadHeaderValue(reader, version); 310public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version) 313return EndpointAddress.ReadFrom(version, reader); 322public FullFaultToHeader(EndpointAddress faultTo, string actor, bool mustUnderstand, bool relay, AddressingVersion version) 549EndpointAddress replyTo; 554ReplyToHeader(EndpointAddress replyTo, AddressingVersion version) 560public EndpointAddress ReplyTo 580anonymousReplyToHeader10 = new ReplyToHeader(EndpointAddress.AnonymousAddress, AddressingVersion.WSAddressing10); 590anonymousReplyToHeader200408 = new ReplyToHeader(EndpointAddress.AnonymousAddress, AddressingVersion.WSAddressingAugust2004); 595public static ReplyToHeader Create(EndpointAddress replyTo, AddressingVersion addressingVersion) 612EndpointAddress replyTo = ReadHeaderValue(reader, version); 616if ((object)replyTo == (object)EndpointAddress.AnonymousAddress) 631public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version) 634return EndpointAddress.ReadFrom(version, reader); 643public FullReplyToHeader(EndpointAddress replyTo, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
System\ServiceModel\Channels\CallbackContextMessageHeader.cs (4)
23EndpointAddress callbackAddress; 26public CallbackContextMessageHeader(EndpointAddress callbackAddress, AddressingVersion version) 114EndpointAddress callbackAddress = EndpointAddress.ReadFrom(version, reader, CallbackEndpointReference, CallbackContextHeaderNamespace);
System\ServiceModel\Channels\CallbackContextMessageProperty.cs (10)
26readonly EndpointAddress listenAddress; 31EndpointAddress callbackAddress; 36: this((EndpointAddress)null, context) 50public CallbackContextMessageProperty(EndpointAddress listenAddress, IDictionary<string, string> context) 60public CallbackContextMessageProperty(EndpointAddress callbackAddress) 77public EndpointAddress CallbackAddress 97public EndpointAddress CreateCallbackAddress(Uri listenAddress) 107static EndpointAddress CreateCallbackAddress(EndpointAddress listenAddress, IDictionary<string, string> context) 186public void GetListenAddressAndContext(out EndpointAddress listenAddress, out IDictionary<string, string> context)
System\ServiceModel\Channels\ChannelDemuxer.cs (4)
1257public override EndpointAddress RemoteAddress 2915public EndpointAddress RemoteAddress 3206public EndpointAddress LocalAddress 3328public EndpointAddress LocalAddress
System\ServiceModel\Channels\ChannelFactoryBase.cs (4)
102public TChannel CreateChannel(EndpointAddress address) 110public TChannel CreateChannel(EndpointAddress address, Uri via) 121TChannel InternalCreateChannel(EndpointAddress address, Uri via) 142protected abstract TChannel OnCreateChannel(EndpointAddress address, Uri via);
System\ServiceModel\Channels\ChannelPool.cs (3)
56protected override ChannelPoolKey GetPoolKey(EndpointAddress address, Uri via) 97EndpointAddress address; 100public ChannelPoolKey(EndpointAddress address, Uri via)
System\ServiceModel\Channels\ClientContextProtocol.cs (1)
164EndpointAddress callbackAddress = callbackContext.CallbackAddress;
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (14)
19EndpointAddress to; 22protected ClientReliableChannelBinder(EndpointAddress to, Uri via, IChannelFactory<TChannel> factory, 125public static IClientReliableChannelBinder CreateBinder(EndpointAddress to, Uri via, 322public DuplexClientReliableChannelBinder(EndpointAddress to, Uri via, 331public override EndpointAddress LocalAddress 343public override EndpointAddress RemoteAddress 412public DuplexClientReliableChannelBinder(EndpointAddress to, Uri via, 443public DuplexSessionClientReliableChannelBinder(EndpointAddress to, Uri via, 500public RequestClientReliableChannelBinder(EndpointAddress to, Uri via, 555public override EndpointAddress LocalAddress 559return EndpointAddress.AnonymousAddress; 563public override EndpointAddress RemoteAddress 670public RequestClientReliableChannelBinder(EndpointAddress to, Uri via, 701public RequestSessionClientReliableChannelBinder(EndpointAddress to, Uri via,
System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (1)
34public ClientWebSocketTransportDuplexSessionChannel(HttpChannelFactory<IDuplexSessionChannel> channelFactory, ClientWebSocketFactory connectionFactory, EndpointAddress remoteAddresss, Uri via, ConnectionBufferPool bufferPool)
System\ServiceModel\Channels\ConnectAlgorithms.cs (1)
31public void Initialize(IPeerMaintainer maintainer, PeerNodeConfig config, int wantedConnectionCount, Dictionary<EndpointAddress, Referral> referralCache)
System\ServiceModel\Channels\ConnectionOrientedTransportChannelFactory.cs (1)
207protected override TChannel OnCreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (1)
445public ConnectionOrientedTransportReplyChannel(ChannelManagerBase channelManager, EndpointAddress localAddress)
System\ServiceModel\Channels\ConnectionPool.cs (2)
52protected abstract TKey GetPoolKey(EndpointAddress address, Uri via); 210public TItem TakeConnection(EndpointAddress address, Uri via, TimeSpan timeout, out TKey key)
System\ServiceModel\Channels\ContextChannelFactory.cs (1)
33protected override TChannel OnCreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
29public EndpointAddress LocalAddress
System\ServiceModel\Channels\ContextInputChannelBase.cs (1)
23public EndpointAddress LocalAddress
System\ServiceModel\Channels\ContextOutputChannelBase.cs (1)
18public EndpointAddress RemoteAddress
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
21public EndpointAddress LocalAddress
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
21public EndpointAddress LocalAddress
System\ServiceModel\Channels\ContextRequestChannelBase.cs (1)
22public EndpointAddress RemoteAddress
System\ServiceModel\Channels\CreateSequence.cs (4)
51info.AcksTo = EndpointAddress.ReadFrom(messageVersion.Addressing, reader, wsrmFeb2005Dictionary.AcksTo, wsrmNs); 71EndpointAddress endpoint = EndpointAddress.ReadFrom(messageVersion.Addressing, reader, 173EndpointAddress localAddress = this.binder.LocalAddress;
System\ServiceModel\Channels\CreateSequenceResponse.cs (3)
11EndpointAddress acceptAcksTo; 31public EndpointAddress AcceptAcksTo 123createSequenceResponse.AcceptAcksTo = EndpointAddress.ReadFrom(addressingVersion, reader,
System\ServiceModel\Channels\DatagramAdapter.cs (4)
1121EndpointAddress remoteAddress; 1145public EndpointAddress RemoteAddress 1351EndpointAddress remoteAddress; 1375public EndpointAddress RemoteAddress
System\ServiceModel\Channels\DuplexChannel.cs (4)
13EndpointAddress localAddress; 15protected DuplexChannel(ChannelManagerBase channelManager, EndpointAddress localAddress) 21public virtual EndpointAddress LocalAddress 26public abstract EndpointAddress RemoteAddress { get; }
System\ServiceModel\Channels\FramingChannels.cs (10)
26EndpointAddress localAddress, Uri localVia, EndpointAddress remoteAddresss, Uri via, bool exposeConnectionProperty) 33EndpointAddress remoteAddresss, Uri via, bool exposeConnectionProperty) 34: this(factory, settings, EndpointAddress.AnonymousAddress, settings.MessageVersion.Addressing.AnonymousUri, 41EndpointAddress localAddress, Uri localVia, bool exposeConnectionProperty) 43EndpointAddress.AnonymousAddress, channelListener.MessageVersion.Addressing.AnonymousUri, exposeConnectionProperty) 191EndpointAddress remoteAddresss, Uri via, IConnectionInitiator connectionInitiator, ConnectionPool connectionPool, 989public static IAsyncResult BeginInitiateUpgrade(IDefaultCommunicationTimeouts timeouts, EndpointAddress remoteAddress, 1203EndpointAddress remoteAddress; 1208public InitiateUpgradeAsyncResult(IDefaultCommunicationTimeouts timeouts, EndpointAddress remoteAddress,
System\ServiceModel\Channels\HttpChannelFactory.cs (21)
394EndpointAddress target, Uri via, ChannelParameterCollection channelParameters) 428protected virtual void ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) 438protected override TChannel OnCreateChannel(EndpointAddress remoteAddress, Uri via) 440EndpointAddress httpRemoteAddress = remoteAddress != null && WebSocketHelper.IsWebSocketUri(remoteAddress.Uri) ? 448protected virtual TChannel OnCreateChannelCore(EndpointAddress remoteAddress, Uri via) 731HttpWebRequest GetWebRequest(EndpointAddress to, Uri via, NetworkCredential credential, 814void ApplyManualAddressing(ref EndpointAddress to, ref Uri via, Message message) 856void CreateAndOpenTokenProvidersCore(EndpointAddress to, Uri via, ChannelParameterCollection channelParameters, TimeSpan timeout, out SecurityTokenProviderContainer tokenProvider, out SecurityTokenProviderContainer proxyTokenProvider) 870internal void CreateAndOpenTokenProviders(EndpointAddress to, Uri via, ChannelParameterCollection channelParameters, TimeSpan timeout, out SecurityTokenProviderContainer tokenProvider, out SecurityTokenProviderContainer proxyTokenProvider) 883internal HttpWebRequest GetWebRequest(EndpointAddress to, Uri via, SecurityTokenProviderContainer tokenProvider, 895internal static bool MapIdentity(EndpointAddress target, AuthenticationSchemes authenticationScheme) 905bool MapIdentity(EndpointAddress target) 920public HttpRequestChannel(HttpChannelFactory<IRequestChannel> factory, EndpointAddress to, Uri via, bool manualAddressing) 1107public virtual HttpWebRequest GetWebRequest(EndpointAddress to, Uri via, ref TimeoutHelper timeoutHelper) 1112protected HttpWebRequest GetWebRequest(EndpointAddress to, Uri via, SecurityTokenContainer clientCertificateToken, ref TimeoutHelper timeoutHelper) 1147EndpointAddress to, Uri via, SecurityTokenContainer clientCertificateToken, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 1153EndpointAddress to, Uri via, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 1177EndpointAddress to; 1403EndpointAddress to; 1929EndpointAddress to; 1935EndpointAddress to, Uri via, SecurityTokenContainer clientCertificateToken, ref TimeoutHelper timeoutHelper,
System\ServiceModel\Channels\HttpsChannelFactory.cs (11)
96protected override void ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) 127protected override TChannel OnCreateChannelCore(EndpointAddress address, Uri via) 185internal SecurityTokenProvider CreateAndOpenCertificateTokenProvider(EndpointAddress target, Uri via, ChannelParameterCollection channelParameters, TimeSpan timeout) 207EndpointAddress to, Uri via, ChannelParameterCollection channelParameters, ref TimeoutHelper timeoutHelper) 239void AddServerCertMappingOrSetRemoteCertificateValidationCallback(HttpWebRequest request, EndpointAddress to) 287public HttpsRequestChannel(HttpsChannelFactory<IRequestChannel> factory, EndpointAddress to, Uri via, bool manualAddressing) 356public IAsyncResult BeginBaseGetWebRequest(EndpointAddress to, Uri via, SecurityTokenContainer clientCertificateToken, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 366public override HttpWebRequest GetWebRequest(EndpointAddress to, Uri via, ref TimeoutHelper timeoutHelper) 374public override IAsyncResult BeginGetWebRequest(EndpointAddress to, Uri via, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 405EndpointAddress to; 412public GetWebRequestAsyncResult(HttpsRequestChannel httpsChannel, EndpointAddress to, Uri via,
System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
884EndpointAddress address = endpointContext.Endpoint.Address;
System\ServiceModel\Channels\IChannelFactory.cs (2)
17TChannel CreateChannel(EndpointAddress to); 18TChannel CreateChannel(EndpointAddress to, Uri via);
System\ServiceModel\Channels\IInputChannel.cs (1)
12EndpointAddress LocalAddress { get; }
System\ServiceModel\Channels\InputChannel.cs (3)
13EndpointAddress localAddress; 15public InputChannel(ChannelManagerBase channelManager, EndpointAddress localAddress) 21public EndpointAddress LocalAddress
System\ServiceModel\Channels\InternalDuplexBindingElement.cs (3)
230EndpointAddress localAddress; 234public LocalAddressProvider(EndpointAddress localAddress, MessageFilter filter) 258public EndpointAddress LocalAddress
System\ServiceModel\Channels\InternalDuplexChannelFactory.cs (7)
32bool CreateUniqueLocalAddress(out EndpointAddress address, out int priority) 51protected override IDuplexChannel OnCreateChannel(EndpointAddress address, Uri via) 53EndpointAddress localAddress; 75public IDuplexChannel CreateChannel(EndpointAddress address, Uri via, MessageFilter filter, int priority, bool usesUniqueHeader) 80public IDuplexChannel CreateChannel(EndpointAddress remoteAddress, Uri via, EndpointAddress localAddress, MessageFilter filter, int priority, bool usesUniqueHeader) 193public ClientCompositeDuplexChannel(ChannelManagerBase channelManager, IInputChannel innerInputChannel, IChannelListener<IInputChannel> innerInputListener, EndpointAddress localAddress, IOutputChannel innerOutputChannel, bool usesUniqueHeader)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (4)
131public EndpointAddress LocalAddress 136public EndpointAddress RemoteAddress 273else if (to.Equals(EndpointAddress.AnonymousUri) || to.Equals(message.Version.Addressing.AnonymousUri)) 279else if (to.Equals(EndpointAddress.AnonymousUri) || to.Equals(message.Version.Addressing.AnonymousUri))
System\ServiceModel\Channels\IOutputChannel.cs (1)
11EndpointAddress RemoteAddress { get; }
System\ServiceModel\Channels\IReliableChannelBinder.cs (2)
16EndpointAddress LocalAddress { get; } 17EndpointAddress RemoteAddress { get; }
System\ServiceModel\Channels\IReplyChannel.cs (1)
11EndpointAddress LocalAddress { get; }
System\ServiceModel\Channels\IRequestChannel.cs (1)
11EndpointAddress RemoteAddress { get; }
System\ServiceModel\Channels\LayeredChannelFactory.cs (5)
87public virtual EndpointAddress LocalAddress 173EndpointAddress localAddress; 176public LayeredDuplexChannel(ChannelManagerBase channelManager, IInputChannel innerInputChannel, EndpointAddress localAddress, IOutputChannel innerOutputChannel) 185public override EndpointAddress LocalAddress 190public EndpointAddress RemoteAddress
System\ServiceModel\Channels\MessageHeaders.cs (3)
164public EndpointAddress FaultTo 188public EndpointAddress From 268public EndpointAddress ReplyTo
System\ServiceModel\Channels\MsmqChannelFactory.cs (2)
46protected override IOutputChannel OnCreateChannel(EndpointAddress to, Uri via) 60protected override IOutputSessionChannel OnCreateChannel(EndpointAddress to, Uri via)
System\ServiceModel\Channels\MsmqChannelFactoryBase.cs (2)
163internal SecurityTokenProvider CreateTokenProvider(EndpointAddress to, Uri via) 175internal SecurityTokenProviderContainer CreateX509TokenProvider(EndpointAddress to, Uri via)
System\ServiceModel\Channels\MsmqInputChannelBase.cs (2)
13EndpointAddress localAddress; 32public EndpointAddress LocalAddress
System\ServiceModel\Channels\MsmqOutputChannel.cs (1)
20public MsmqOutputChannel(MsmqChannelFactory<IOutputChannel> factory, EndpointAddress to, Uri via, bool manualAddressing)
System\ServiceModel\Channels\MsmqOutputMessage.cs (2)
36public MsmqOutputMessage(MsmqChannelFactoryBase<TChannel> factory, int bodySize, EndpointAddress remoteAddress) 41protected MsmqOutputMessage(MsmqChannelFactoryBase<TChannel> factory, int bodySize, EndpointAddress remoteAddress, int additionalPropertyCount)
System\ServiceModel\Channels\MsmqOutputSessionChannel.cs (1)
24public MsmqOutputSessionChannel(MsmqChannelFactory<IOutputSessionChannel> factory, EndpointAddress to, Uri via, bool manualAddressing)
System\ServiceModel\Channels\NamedPipeConnectionPool.cs (1)
40protected override string GetPoolKey(EndpointAddress address, Uri via)
System\ServiceModel\Channels\OneWayChannelFactory.cs (8)
88protected override IOutputChannel OnCreateChannel(EndpointAddress to, Uri via) 110public override EndpointAddress RemoteAddress 265protected override IOutputChannel OnCreateChannel(EndpointAddress address, Uri via) 283public override EndpointAddress RemoteAddress 426protected override IOutputChannel OnCreateChannel(EndpointAddress address, Uri via) 434EndpointAddress remoteAddress; 442EndpointAddress remoteAddress, Uri via) 452public override EndpointAddress RemoteAddress
System\ServiceModel\Channels\OneWayChannelListener.cs (3)
91public EndpointAddress LocalAddress 559public EndpointAddress LocalAddress 1164public DuplexSessionOneWayInputChannel(ChannelManagerBase channelManager, EndpointAddress localAddress)
System\ServiceModel\Channels\OutputChannel.cs (1)
19public abstract EndpointAddress RemoteAddress { get; }
System\ServiceModel\Channels\PeerChannelFactory.cs (1)
131protected override TChannel OnCreateChannel(EndpointAddress to, Uri via)
System\ServiceModel\Channels\PeerCustomResolverBindingElement.cs (2)
17EndpointAddress address; 63public EndpointAddress Address
System\ServiceModel\Channels\PeerDuplexChannel.cs (3)
16EndpointAddress to; 25EndpointAddress localAddress, Uri via) 39public override EndpointAddress RemoteAddress
System\ServiceModel\Channels\PeerDuplexChannelListener.cs (2)
17EndpointAddress localAddress; 21public PeerDuplexChannelAcceptor(PeerNodeImplementation peerNode, PeerNodeImplementation.Registration registration, ChannelManagerBase channelManager, EndpointAddress localAddress, Uri via)
System\ServiceModel\Channels\PeerInputChannel.cs (2)
15EndpointAddress to; 21EndpointAddress localAddress, Uri via)
System\ServiceModel\Channels\PeerInputChannelListener.cs (2)
16EndpointAddress localAddress; 20public PeerInputChannelAcceptor(PeerNodeImplementation peerNode, PeerNodeImplementation.Registration registration, ChannelManagerBase channelManager, EndpointAddress localAddress, Uri via)
System\ServiceModel\Channels\PeerIPHelper.cs (2)
326public static EndpointAddress GetIPEndpointAddress(EndpointAddress epr, IPAddress address)
System\ServiceModel\Channels\PeerMaintainer.cs (7)
47void Initialize(IPeerMaintainer maintainer, PeerNodeConfig config, int wantedConnectedNeighbors, Dictionary<EndpointAddress, Referral> referralCache); 61Dictionary<EndpointAddress, Referral> referralCache; 83referralCache = new Dictionary<EndpointAddress, Referral>(); 126EndpointAddress key = referral.Address.EndpointAddress; 379connectAlgorithm.Initialize(this, config, neighborManager.ConnectedNeighborCount + 1, new Dictionary<EndpointAddress, Referral>()); 473EndpointAddress key = neighbor.ListenAddress.EndpointAddress; 615EndpointAddress key = address.EndpointAddress;
System\ServiceModel\Channels\PeerMessageDispatcher.cs (4)
45EndpointAddress to; 53public PeerMessageDispatcher(PeerMessageQueueAdapter queueHandler, PeerNodeImplementation peerNode, ChannelManagerBase channelManager, EndpointAddress to, Uri via) 62EndpointAddress filterTo = null; 157public PeerMessageFilter(Uri via, EndpointAddress to)
System\ServiceModel\Channels\PeerNeighborManager.cs (2)
1056public IAsyncResult BeginOpenProxy(EndpointAddress remoteAddress, Binding binding, 1443EndpointAddress remoteAddress = PeerIPHelper.GetIPEndpointAddress(
System\ServiceModel\Channels\PeerOutputChannel.cs (2)
17EndpointAddress to; 23EndpointAddress localAddress, Uri via, MessageVersion messageVersion)
System\ServiceModel\Channels\PeerSecurityHelpers.cs (2)
193protected override SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout) 219public override bool TryGetIdentity(EndpointAddress reference, out EndpointIdentity identity)
System\ServiceModel\Channels\PeerSecurityManager.cs (1)
465public SecurityProtocol CreateSecurityProtocol<TChannel>(EndpointAddress target, TimeSpan timespan)
System\ServiceModel\Channels\PeerService.cs (1)
139public EndpointAddress GetListenAddress()
System\ServiceModel\Channels\ReliableChannelBinder.cs (2)
108public abstract EndpointAddress LocalAddress 123public abstract EndpointAddress RemoteAddress
System\ServiceModel\Channels\ReliableChannelFactory.cs (1)
177protected override TChannel OnCreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Channels\ReliableChannelListener.cs (5)
31IMessageFilterTable<EndpointAddress> localAddresses; 80public IMessageFilterTable<EndpointAddress> LocalAddresses 574IServerReliableChannelBinder CreateBinder(TInnerChannel channel, EndpointAddress localAddress, EndpointAddress remoteAddress) 800EndpointAddress acksTo;
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (3)
50public override EndpointAddress LocalAddress 70public override EndpointAddress RemoteAddress 1900EndpointAddress acksTo;
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (2)
591EndpointAddress acksTo; 1003EndpointAddress acksTo;
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (6)
1491EndpointAddress address = this.binder.LocalAddress; 3141bool ordered, UniqueId inputId, EndpointAddress acceptAcksTo) 3482ReliableChannelListenerBase<TChannel> listener, IChannel channel, out EndpointAddress acksTo) 3511Collection<EndpointAddress> addresses = new Collection<EndpointAddress>(); 3536EndpointAddress match = addresses[0];
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
74public override EndpointAddress RemoteAddress
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (1)
916EndpointAddress acksTo;
System\ServiceModel\Channels\ReliableSessionBindingElement.cs (2)
415IMessageFilterTable<EndpointAddress> table = context.BindingParameters.Find<IMessageFilterTable<EndpointAddress>>();
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (2)
115public EndpointAddress LocalAddress 209EndpointAddress replyTo;
System\ServiceModel\Channels\ReplyChannel.cs (3)
13EndpointAddress localAddress; 15public ReplyChannel(ChannelManagerBase channelManager, EndpointAddress localAddress) 21public EndpointAddress LocalAddress
System\ServiceModel\Channels\RequestChannel.cs (3)
18EndpointAddress to; 23protected RequestChannel(ChannelManagerBase channelFactory, EndpointAddress to, Uri via, bool manualAddressing) 47public EndpointAddress RemoteAddress
System\ServiceModel\Channels\RequestReplyCorrelator.cs (10)
92EndpointAddress destination = null; 110destination = EndpointAddress.AnonymousAddress; 186readonly EndpointAddress faultTo; 187readonly EndpointAddress from; 188readonly EndpointAddress replyTo; 204internal EndpointAddress FaultTo 209internal EndpointAddress From 229internal EndpointAddress ReplyTo 234bool IsTrivial(EndpointAddress address) 237return (address == null) || (address == EndpointAddress.AnonymousAddress);
System\ServiceModel\Channels\SecurityChannelFactory.cs (11)
195protected override TChannel OnCreateChannel(EndpointAddress address, Uri via) 314EndpointAddress to; 320UChannel innerChannel, EndpointAddress to, Uri via) 334public EndpointAddress RemoteAddress 542public SecurityOutputChannel(ChannelManagerBase factory, SecurityProtocolFactory securityProtocolFactory, IOutputChannel innerChannel, EndpointAddress to, Uri via) 581public SecurityOutputSessionChannel(ChannelManagerBase factory, SecurityProtocolFactory securityProtocolFactory, IOutputSessionChannel innerChannel, EndpointAddress to, Uri via) 597public SecurityRequestChannel(ChannelManagerBase factory, SecurityProtocolFactory securityProtocolFactory, IRequestChannel innerChannel, EndpointAddress to, Uri via) 690public SecurityRequestSessionChannel(ChannelManagerBase factory, SecurityProtocolFactory securityProtocolFactory, IRequestSessionChannel innerChannel, EndpointAddress to, Uri via) 706public SecurityDuplexChannel(ChannelManagerBase factory, SecurityProtocolFactory securityProtocolFactory, IDuplexChannel innerChannel, EndpointAddress to, Uri via) 716public EndpointAddress LocalAddress 845public SecurityDuplexSessionChannel(ChannelManagerBase factory, SecurityProtocolFactory securityProtocolFactory, IDuplexSessionChannel innerChannel, EndpointAddress to, Uri via)
System\ServiceModel\Channels\SecurityChannelListener.cs (3)
901public EndpointAddress LocalAddress 1031public EndpointAddress RemoteAddress 1208public EndpointAddress LocalAddress
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (33)
21EndpointAddress cachedLocalAddress; 24EndpointAddress remoteAddress; 27EndpointAddress remoteAddress, MessageFilter filter, int priority, MaskingMode maskingMode, 36protected ServerReliableChannelBinder(TChannel channel, EndpointAddress cachedLocalAddress, 37EndpointAddress remoteAddress, MaskingMode maskingMode, 54public override EndpointAddress LocalAddress 85public override EndpointAddress RemoteAddress 185EndpointAddress remoteAddress, MessageFilter filter, int priority, 220EndpointAddress cachedLocalAddress, EndpointAddress remoteAddress, 310protected abstract EndpointAddress GetInnerChannelLocalAddress(); 666EndpointAddress remoteAddress, MessageFilter filter, int priority, 675EndpointAddress cachedLocalAddress, EndpointAddress remoteAddress, 691protected override EndpointAddress GetInnerChannelLocalAddress() 694EndpointAddress localAddress = (channel == null) ? null : channel.LocalAddress; 772EndpointAddress remoteAddress, MessageFilter filter, int priority, 780EndpointAddress cachedLocalAddress, EndpointAddress remoteAddress, 814EndpointAddress remoteAddress, MessageFilter filter, int priority, 823EndpointAddress cachedLocalAddress, EndpointAddress remoteAddress, 879EndpointAddress remoteAddress, MessageFilter filter, int priority, 888EndpointAddress cachedLocalAddress, EndpointAddress remoteAddress, 904protected override EndpointAddress GetInnerChannelLocalAddress() 907EndpointAddress localAddress = (channel == null) ? null : channel.LocalAddress; 966EndpointAddress remoteAddress, MessageFilter filter, int priority, 974EndpointAddress cachedLocalAddress, EndpointAddress remoteAddress, 1004EndpointAddress remoteAddress, MessageFilter filter, int priority, 1013EndpointAddress cachedLocalAddress, EndpointAddress remoteAddress,
System\ServiceModel\Channels\ServerWebSocketTransportDuplexSessionChannel.cs (1)
27EndpointAddress localAddress,
System\ServiceModel\Channels\ServiceChannel.cs (9)
48EndpointAddress localAddress; 291public EndpointAddress LocalAddress 367public EndpointAddress RemoteAddress 622EndpointAddress localAddress = this.LocalAddress; 623EndpointAddress replyTo = headers.ReplyTo; 627headers.ReplyTo = localAddress ?? EndpointAddress.AnonymousAddress; 641EndpointAddress faultTo = headers.FaultTo; 651EndpointAddress from = headers.From; 941EndpointAddress address = this.RemoteAddress ?? this.LocalAddress;
System\ServiceModel\Channels\ServiceChannelFactory.cs (12)
326public virtual ServiceChannel CreateServiceChannel(EndpointAddress address, Uri via) 343public TChannel CreateChannel<TChannel>(EndpointAddress address) 348public TChannel CreateChannel<TChannel>(EndpointAddress address, Uri via) 361public object CreateChannel(Type channelType, EndpointAddress address) 366public object CreateChannel(Type channelType, EndpointAddress address, Uri via) 423protected abstract IChannelBinder CreateInnerChannelBinder(EndpointAddress address, Uri via); 505protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 524protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 544protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 565protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 602protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 628protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via)
System\ServiceModel\Channels\SessionConnectionReader.cs (2)
333public IDuplexSessionChannel CreateDuplexSessionChannel(ConnectionOrientedTransportChannelListener channelListener, EndpointAddress localAddress, bool exposeConnectionProperty, ConnectionDemuxer connectionDemuxer) 352EndpointAddress localAddress, bool exposeConnectionProperty, ConnectionDemuxer connectionDemuxer)
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
596EndpointAddress epa = new EndpointAddress(Utility.FormatListenerEndpoint(this.serviceName,
System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (2)
248public override StreamUpgradeInitiator CreateUpgradeInitiator(EndpointAddress remoteAddress, Uri via) 763EndpointAddress remoteAddress, Uri via)
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
24EndpointAddress remoteAddresss, Uri via, IConnectionInitiator connectionInitiator, ConnectionPool connectionPool)
System\ServiceModel\Channels\StreamSecurityUpgradeInitiatorBase.cs (3)
12EndpointAddress remoteAddress; 19protected StreamSecurityUpgradeInitiatorBase(string upgradeString, EndpointAddress remoteAddress, Uri via) 26protected EndpointAddress RemoteAddress
System\ServiceModel\Channels\StreamUpgradeProvider.cs (1)
45public abstract StreamUpgradeInitiator CreateUpgradeInitiator(EndpointAddress remoteAddress, Uri via);
System\ServiceModel\Channels\SymmetricSecurityBindingElement.cs (2)
303IMessageFilterTable<EndpointAddress> endpointFilterTable = context.BindingParameters.Find<IMessageFilterTable<EndpointAddress>>();
System\ServiceModel\Channels\TcpConnectionPool.cs (1)
34protected override string GetPoolKey(EndpointAddress address, Uri via)
System\ServiceModel\Channels\TransactionChannelFactory.cs (3)
87protected override TChannel OnCreateChannel(EndpointAddress remoteAddress, Uri via) 225public EndpointAddress RemoteAddress 282public EndpointAddress RemoteAddress
System\ServiceModel\Channels\TransactionChannelListener.cs (3)
270public EndpointAddress LocalAddress 365public EndpointAddress LocalAddress 519public EndpointAddress RemoteAddress
System\ServiceModel\Channels\TransportBindingElement.cs (1)
173string wsdlTransportUri, EndpointAddress address, AddressingVersion addressingVersion)
System\ServiceModel\Channels\TransportBindingElementImporter.cs (1)
87EndpointAddress address = context.Endpoint.Address = WsdlImporter.WSAddressingHelper.ImportAddress(context.WsdlPort);
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (4)
26EndpointAddress localAddress; 34EndpointAddress localAddress, 36EndpointAddress remoteAddresss, 48public EndpointAddress LocalAddress
System\ServiceModel\Channels\TransportOutputChannel.cs (3)
19EndpointAddress to; 24protected TransportOutputChannel(ChannelManagerBase channelManager, EndpointAddress to, Uri via, bool manualAddressing, MessageVersion messageVersion) 79public override EndpointAddress RemoteAddress
System\ServiceModel\Channels\TransportReplyChannelAcceptor.cs (1)
98public TransportReplyChannel(ChannelManagerBase channelManager, EndpointAddress localAddress)
System\ServiceModel\Channels\TransportSecurityHelpers.cs (10)
46public static bool AddIdentityMapping(Uri via, EndpointAddress target) 91public static void RemoveIdentityMapping(Uri via, EndpointAddress target, bool validateState) 134public static void AddServerCertMapping(HttpWebRequest request, EndpointAddress to) 353static SecurityTokenRequirement CreateSspiTokenRequirement(EndpointAddress target, Uri via, string transportScheme) 365SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, AuthenticationSchemes authenticationScheme, ChannelParameterCollection channelParameters) 385SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, 405SecurityTokenManager tokenManager, EndpointAddress target, Uri via, 440SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, ChannelParameterCollection channelParameters) 507EndpointAddress target, Uri via, string transportScheme) 519SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, AuthenticationSchemes authenticationScheme,
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (5)
40public WebSocketTransportDuplexSessionChannel(HttpChannelListener channelListener, EndpointAddress localAddress, Uri localVia, ConnectionBufferPool bufferPool) 41: base(channelListener, channelListener, localAddress, localVia, EndpointAddress.AnonymousAddress, channelListener.MessageVersion.Addressing.AnonymousUri) 51public WebSocketTransportDuplexSessionChannel(HttpChannelFactory<IDuplexSessionChannel> channelFactory, EndpointAddress remoteAddresss, Uri via, ConnectionBufferPool bufferPool) 52: base(channelFactory, channelFactory, EndpointAddress.AnonymousAddress, channelFactory.MessageVersion.Addressing.AnonymousUri, remoteAddresss, via) 491EndpointAddress localAddress;
System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (2)
126public override StreamUpgradeInitiator CreateUpgradeInitiator(EndpointAddress remoteAddress, Uri via) 313WindowsStreamSecurityUpgradeProvider parent, EndpointAddress remoteAddress, Uri via)
System\ServiceModel\Channels\WsrmMessageInfo.cs (8)
829EndpointAddress acksTo = EndpointAddress.AnonymousAddress; 835public EndpointAddress AcksTo 964EndpointAddress acceptAcksTo; 968public EndpointAddress AcceptAcksTo 1213EndpointAddress replyTo; 1227public EndpointAddress ReplyTo 1260this.replyTo = EndpointAddress.AnonymousAddress;
System\ServiceModel\ClientBase.cs (10)
106EndpointAddress endpointAddress = new EndpointAddress(remoteAddress); 121protected ClientBase(string endpointConfigurationName, EndpointAddress remoteAddress) 144protected ClientBase(Binding binding, EndpointAddress remoteAddress) 240EndpointAddress endpointAddress = new EndpointAddress(remoteAddress); 256protected ClientBase(InstanceContext callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress) 281protected ClientBase(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress) 1222EndpointAddress IContextChannel.LocalAddress 1238EndpointAddress IContextChannel.RemoteAddress 1358EndpointAddress IOutputChannel.RemoteAddress 1393EndpointAddress IRequestChannel.RemoteAddress
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
281EndpointAddress mexEndpointAddress = new EndpointAddress(new Uri(mexAddress), mexIdentity);
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (1)
288EndpointAddress endpointAddress = new EndpointAddress(new Uri(address), identity, (AddressHeaderCollection)null);
System\ServiceModel\Configuration\ChannelEndpointElement.cs (1)
24public ChannelEndpointElement(EndpointAddress address, string contractType)
System\ServiceModel\Configuration\ConfigurationChannelFactory.cs (1)
14public ConfigurationChannelFactory(string endpointConfigurationName, Configuration configuration, EndpointAddress remoteAddress)
System\ServiceModel\Configuration\ConfigurationDuplexChannelFactory.cs (1)
14public ConfigurationDuplexChannelFactory(object callbackObject, string endpointConfigurationName, EndpointAddress remoteAddress, Configuration configuration)
System\ServiceModel\Configuration\EndpointAddressElementBase.cs (1)
59public void InitializeFrom(EndpointAddress endpointAddress)
System\ServiceModel\ConfigurationEndpointTrait.cs (2)
16EndpointAddress remoteAddress; 20EndpointAddress remoteAddress,
System\ServiceModel\Description\ClientClassGenerator.cs (1)
42static Type endpointAddressType = typeof(EndpointAddress);
System\ServiceModel\Description\ClientCredentials.cs (1)
297if (InfoCardHelper.IsInfocardRequired(serviceEndpoint.Binding, this, this.CreateSecurityTokenManager(), EndpointAddress.AnonymousAddress, out dummyPolicyElements, out dummyRelyingPartyIssuer))
System\ServiceModel\Description\ConfigLoader.cs (7)
373internal static EndpointAddress LoadEndpointAddress(EndpointAddressElementBase element) 584internal static ServiceEndpoint LookupEndpoint(string configurationName, EndpointAddress address, ContractDescription contract) 592internal static ServiceEndpoint LookupEndpoint(string configurationName, EndpointAddress address, ContractDescription contract, ContextInformation configurationContext) 610static ServiceEndpoint LookupEndpoint(ChannelEndpointElement channelEndpointElement, ContextInformation context, EndpointAddress address, ContractDescription contract) 725EndpointAddress address, ContextInformation context, ContractDescription contract, out ServiceEndpoint endpoint) 1273static bool IsChannelElementMatch(ChannelEndpointElement channelElement, ContractDescription contract, EndpointAddress address, bool useChannelElementKind, out ServiceEndpoint serviceEndpoint) 1318EndpointAddress address, bool wildcard, bool useChannelElementKind, out ServiceEndpoint serviceEndpoint)
System\ServiceModel\Description\DispatcherBuilder.cs (9)
171&& EndpointAddress.UriEquals(this.listenUri, other.listenUri, true /* ignoreCase */, true /* includeHost */); 176return EndpointAddress.UriGetHashCode(this.listenUri, true /* includeHost */); 603parameters.Add(new ThreadSafeMessageFilterTable<EndpointAddress>()); 640Dictionary<EndpointAddress, Collection<EndpointInfo>> endpointInfosPerEndpointAddress 641= new Dictionary<EndpointAddress, Collection<EndpointInfo>>(); 693ThreadSafeMessageFilterTable<EndpointAddress> endpointAddressTable = new ThreadSafeMessageFilterTable<EndpointAddress>(); 904void EnsureRequiredRuntimeProperties(Dictionary<EndpointAddress, Collection<EndpointInfo>> endpointInfosPerEndpointAddress) 939EndpointAddress address = endpoint.Address;
System\ServiceModel\Description\MetadataExchangeClient.cs (15)
39EndpointAddress ctorEndpointAddress = null; 66public MetadataExchangeClient(EndpointAddress address) 276public IAsyncResult BeginGetMetadata(EndpointAddress address, AsyncCallback callback, object asyncState) 317public Task<MetadataSet> GetMetadataAsync(EndpointAddress address) 327public Task<MetadataSet> GetMetadataAsync(EndpointAddress address, Uri via) 367public MetadataSet GetMetadata(EndpointAddress address) 378public MetadataSet GetMetadata(EndpointAddress address, Uri via) 427protected internal virtual ChannelFactory<IMetadataExchange> GetChannelFactory(EndpointAddress metadataAddress, string dialect, string identifier) 457internal static void TraceSendRequest(EndpointAddress address) 543EndpointAddress address = ((MetadataReference)section.Metadata).Address; 953EndpointAddress address; 956public MetadataReferenceRetriever(EndpointAddress address, MetadataExchangeClient resolver) 961public MetadataReferenceRetriever(EndpointAddress address, Uri via, MetadataExchangeClient resolver) 966public MetadataReferenceRetriever(EndpointAddress address, MetadataExchangeClient resolver, string dialect, string identifier) 971MetadataReferenceRetriever(EndpointAddress address, Uri via, MetadataExchangeClient resolver, string dialect, string identifier)
System\ServiceModel\Description\MetadataReference.cs (4)
20EndpointAddress address; 29public MetadataReference(EndpointAddress address, AddressingVersion addressVersion) 35public EndpointAddress Address 54this.address = EndpointAddress.ReadFrom(XmlDictionaryReader.CreateDictionaryReader(reader), out this.addressVersion);
System\ServiceModel\Description\MetadataResolver.cs (8)
18public static ServiceEndpointCollection Resolve(Type contract, EndpointAddress address) 27public static ServiceEndpointCollection Resolve(IEnumerable<ContractDescription> contracts, EndpointAddress address) 31public static ServiceEndpointCollection Resolve(IEnumerable<ContractDescription> contracts, EndpointAddress address, MetadataExchangeClient client) 86public static IAsyncResult BeginResolve(Type contract, EndpointAddress address, AsyncCallback callback, object asyncState) 95public static IAsyncResult BeginResolve(IEnumerable<ContractDescription> contracts, EndpointAddress address, AsyncCallback callback, object asyncState) 99public static IAsyncResult BeginResolve(IEnumerable<ContractDescription> contracts, EndpointAddress address, MetadataExchangeClient client, AsyncCallback callback, object asyncState) 160EndpointAddress address; 165internal AsyncMetadataResolverHelper(EndpointAddress address, MetadataExchangeClientMode mode, MetadataExchangeClient client, IEnumerable<ContractDescription> knownContracts, AsyncCallback callback, object asyncState)
System\ServiceModel\Description\ServiceEndpoint.cs (3)
21EndpointAddress address; 38public ServiceEndpoint(ContractDescription contract, Binding binding, EndpointAddress address) 48public EndpointAddress Address
System\ServiceModel\Description\ServiceMetadataBehavior.cs (1)
484EndpointAddress address = null;
System\ServiceModel\Description\ServiceMetadataEndpoint.cs (2)
25public ServiceMetadataEndpoint(EndpointAddress address) 30public ServiceMetadataEndpoint(Binding binding, EndpointAddress address)
System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
412EndpointAddress address = new EndpointAddress(listenUri);
System\ServiceModel\Description\WsdlExporter.cs (1)
595internal static void AddAddressToWsdlPort(WsdlNS.Port wsdlPort, EndpointAddress addr, AddressingVersion addressing)
System\ServiceModel\Description\WsdlImporter.cs (3)
1077internal static EndpointAddress ImportAddress(WsdlNS.Port wsdlPort) 1089return EndpointAddress.ReadFrom(AddressingVersion.WSAddressing10, new XmlNodeReader(addressing10Element)); 1093return EndpointAddress.ReadFrom(AddressingVersion.WSAddressingAugust2004, new XmlNodeReader(addressing200408Element));
System\ServiceModel\Diagnostics\AddressingProperty.cs (2)
15EndpointAddress replyTo; 43public EndpointAddress ReplyTo
System\ServiceModel\Diagnostics\MessageDroppedTraceRecord.cs (2)
13EndpointAddress endpointAddress; 14internal MessageDroppedTraceRecord(Message message, EndpointAddress endpointAddress) :
System\ServiceModel\Diagnostics\MessageTransmitTraceRecord.cs (3)
25MessageTransmitTraceRecord(Message message, string addressElementName, EndpointAddress address) 44internal static MessageTransmitTraceRecord CreateSendTraceRecord(Message message, EndpointAddress address) 54internal static MessageTransmitTraceRecord CreateReceiveTraceRecord(Message message, EndpointAddress address)
System\ServiceModel\Diagnostics\SecurityTraceRecordHelper.cs (43)
47internal static void TraceUsingCachedServiceToken<T>(IssuanceTokenProviderBase<T> provider, SecurityToken serviceToken, EndpointAddress target) 56internal static void TraceBeginSecurityNegotiation<T>(IssuanceTokenProviderBase<T> provider, EndpointAddress target) 71internal static void TraceEndSecurityNegotiation<T>(IssuanceTokenProviderBase<T> provider, SecurityToken serviceToken, EndpointAddress target) 85internal static void TraceRedirectApplied<T>(IssuanceTokenProviderBase<T> provider, EndpointAddress newTarget, EndpointAddress oldTarget) 201internal static void TraceIdentityDeterminationSuccess(EndpointAddress epr, EndpointIdentity identity, Type identityVerifier) 207internal static void TraceIdentityDeterminationFailure(EndpointAddress epr, Type identityVerifier) 213internal static void TraceIdentityHostNameNormalizationFailure(EndpointAddress epr, Type identityVerifier, Exception e) 326internal static void TraceSessionRedirectApplied(EndpointAddress previousTarget, EndpointAddress newTarget, GenericXmlSecurityToken sessionToken) 332internal static void TraceCloseMessageSent(SecurityToken sessionToken, EndpointAddress remoteTarget) 338internal static void TraceCloseResponseMessageSent(SecurityToken sessionToken, EndpointAddress remoteTarget) 344internal static void TraceCloseMessageReceived(SecurityToken sessionToken, EndpointAddress remoteTarget) 350internal static void TraceSessionKeyRenewalFault(SecurityToken sessionToken, EndpointAddress remoteTarget) 356internal static void TraceRemoteSessionAbortedFault(SecurityToken sessionToken, EndpointAddress remoteTarget) 362internal static void TraceCloseResponseReceived(SecurityToken sessionToken, EndpointAddress remoteTarget) 368internal static void TracePreviousSessionKeyDiscarded(SecurityToken previousSessionToken, SecurityToken currentSessionToken, EndpointAddress remoteAddress) 374internal static void TraceSessionKeyRenewed(SecurityToken newSessionToken, SecurityToken currentSessionToken, EndpointAddress remoteAddress) 485internal static void TraceBeginSecuritySessionOperation(SecuritySessionOperation operation, EndpointAddress target, SecurityToken currentToken) 491internal static void TraceSecuritySessionOperationSuccess(SecuritySessionOperation operation, EndpointAddress target, SecurityToken currentToken, SecurityToken issuedToken) 497internal static void TraceSecuritySessionOperationFailure(SecuritySessionOperation operation, EndpointAddress target, SecurityToken currentToken, Exception e) 661EndpointAddress target; 664public SessionRequestorTraceRecord(SecuritySessionOperation operation, SecurityToken currentToken, SecurityToken issuedToken, EndpointAddress target) 673public SessionRequestorTraceRecord(SecuritySessionOperation operation, SecurityToken currentToken, Exception e, EndpointAddress target) 782EndpointAddress remoteAddress; 784public ClientSessionTraceRecord(SecurityToken currentSessionToken, SecurityToken previousSessionToken, EndpointAddress remoteAddress) 817EndpointAddress previousTarget; 818EndpointAddress newTarget; 821public SessionRedirectAppliedTraceRecord(EndpointAddress previousTarget, EndpointAddress newTarget, GenericXmlSecurityToken sessionToken) 898EndpointAddress replyTo = this.message.Headers.ReplyTo; 1147EndpointAddress epr; 1150public IdentityDeterminationSuccessTraceRecord(EndpointAddress epr, EndpointIdentity identity, Type identityVerifier) 1177EndpointAddress epr; 1179public IdentityDeterminationFailureTraceRecord(EndpointAddress epr, Type identityVerifier) 1203EndpointAddress epr; 1205public IdentityHostNameNormalizationFailureTraceRecord(EndpointAddress epr, Type identityVerifier, Exception e) 1233EndpointAddress target; 1234EndpointAddress newTarget; 1242public IssuanceProviderTraceRecord(IssuanceTokenProviderBase<T> provider, EndpointAddress target) 1246public IssuanceProviderTraceRecord(IssuanceTokenProviderBase<T> provider, SecurityToken serviceToken, EndpointAddress target) 1254public IssuanceProviderTraceRecord(IssuanceTokenProviderBase<T> provider, EndpointAddress newTarget, EndpointAddress oldTarget)
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
671EndpointAddress endpointAddress = null;
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (2)
45public EndpointAddress LocalAddress 50public EndpointAddress RemoteAddress
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (2)
22ThreadSafeMessageFilterTable<EndpointAddress> addressTable; 872internal void SetEndpointAddressTable(ThreadSafeMessageFilterTable<EndpointAddress> table)
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
248EndpointAddress LocalAddress
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (7)
130public EndpointAddress LocalAddress 149public EndpointAddress RemoteAddress 257EndpointAddress address = this.channel.RemoteAddress ?? this.channel.LocalAddress; 638void EnsureIncomingIdentity(SecurityMessageProperty property, EndpointAddress address, Message reply) 648EndpointAddress address = this.channel.RemoteAddress; 1124public EndpointAddress LocalAddress 1129public EndpointAddress RemoteAddress
System\ServiceModel\Dispatcher\EndpointAddressMessageFilter.cs (8)
20EndpointAddress address; 25public EndpointAddressMessageFilter(EndpointAddress address) 30public EndpointAddressMessageFilter(EndpointAddress address, bool includeHostNameInComparison) 51public EndpointAddress Address 137return EndpointAddress.UriEquals(u1, u2, true /* ignoreCase */, CompareHost, ComparePort); 142return EndpointAddress.UriGetHashCode(uri, CompareHost, ComparePort); 183EndpointAddress address; 191internal EndpointAddressMessageFilterHelper(EndpointAddress address)
System\ServiceModel\Dispatcher\EndpointAddressMessageFilterTable.cs (2)
179protected void IncrementQNameCount(CandidateSet cset, EndpointAddress address) 760protected void DecrementQNameCount(CandidateSet cset, EndpointAddress address)
System\ServiceModel\Dispatcher\EndpointDispatcher.cs (8)
26EndpointAddress originalAddress; 32internal EndpointDispatcher(EndpointAddress address, string contractName, string contractNamespace, string id, bool isSystemEndpoint) 39public EndpointDispatcher(EndpointAddress address, string contractName, string contractNamespace) 44public EndpointDispatcher(EndpointAddress address, string contractName, string contractNamespace, bool isSystemEndpoint) 72EndpointAddress address = builder.ToEndpointAddress(); 156internal EndpointAddress OriginalAddress 161public EndpointAddress EndpointAddress 310EndpointAddress endpointAddress = this.EndpointAddress;
System\ServiceModel\Dispatcher\IChannelBinder.cs (2)
16EndpointAddress LocalAddress { get; } 17EndpointAddress RemoteAddress { get; }
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (4)
935EndpointAddress replyTo = rpc.ReplyToInfo.ReplyTo; 944EndpointAddress remoteAddress = rpc.Channel.RemoteAddress; 957EndpointAddress faultTo = headers.FaultTo; 967EndpointAddress from = headers.From;
System\ServiceModel\Dispatcher\InputChannelBinder.cs (2)
44public EndpointAddress LocalAddress 49public EndpointAddress RemoteAddress
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (2)
51public EndpointAddress LocalAddress 56public EndpointAddress RemoteAddress
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (2)
42public EndpointAddress LocalAddress 51public EndpointAddress RemoteAddress
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilter.cs (4)
19EndpointAddress address; 24public PrefixEndpointAddressMessageFilter(EndpointAddress address) 29public PrefixEndpointAddressMessageFilter(EndpointAddress address, bool includeHostNameInComparison) 47public EndpointAddress Address
System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (2)
44public EndpointAddress LocalAddress 49public EndpointAddress RemoteAddress
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (3)
41public EndpointAddress LocalAddress 43get { return EndpointAddress.AnonymousAddress; } 46public EndpointAddress RemoteAddress
System\ServiceModel\DuplexChannelFactory.cs (15)
29public DuplexChannelFactory(Type callbackInstanceType, Binding binding, EndpointAddress remoteAddress) 35public DuplexChannelFactory(Type callbackInstanceType, string endpointConfigurationName, EndpointAddress remoteAddress) 52public DuplexChannelFactory(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress) 58public DuplexChannelFactory(InstanceContext callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress) 84this.InitializeEndpoint((string)null, (EndpointAddress)null); 95public DuplexChannelFactory(object callbackObject, string endpointConfigurationName, EndpointAddress remoteAddress) 121: this(callbackObject, binding, (EndpointAddress)null) 131public DuplexChannelFactory(object callbackObject, Binding binding, EndpointAddress remoteAddress) 201public TChannel CreateChannel(InstanceContext callbackInstance, EndpointAddress address) 211public override TChannel CreateChannel(EndpointAddress address, Uri via) 216public virtual TChannel CreateChannel(InstanceContext callbackInstance, EndpointAddress address, Uri via) 277public static TChannel CreateChannel(object callbackObject, Binding binding, EndpointAddress endpointAddress) 282public static TChannel CreateChannel(object callbackObject, Binding binding, EndpointAddress endpointAddress, Uri via) 295public static TChannel CreateChannel(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress) 303public static TChannel CreateChannel(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress, Uri via)
System\ServiceModel\DuplexClientBase.cs (4)
27protected DuplexClientBase(object callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress) 31protected DuplexClientBase(object callbackInstance, Binding binding, EndpointAddress remoteAddress) 53protected DuplexClientBase(InstanceContext callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress) 57protected DuplexClientBase(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress)
System\ServiceModel\EndpointAddress.cs (33)
19static EndpointAddress anonymousAddress; 129internal EndpointAddress(Uri newUri, EndpointAddress oldEndpointAddress) 220internal static EndpointAddress AnonymousAddress 423internal bool EndpointEquals(EndpointAddress endpointAddress) 475EndpointAddress address = obj as EndpointAddress; 539public static EndpointAddress ReadFrom(XmlDictionaryReader reader) 545internal static EndpointAddress ReadFrom(XmlDictionaryReader reader, out AddressingVersion version) 572EndpointAddress ea = ReadFromDriver(version, reader); 577public static EndpointAddress ReadFrom(XmlDictionaryReader reader, XmlDictionaryString localName, XmlDictionaryString ns) 583internal static EndpointAddress ReadFrom(XmlDictionaryReader reader, XmlDictionaryString localName, XmlDictionaryString ns, out AddressingVersion version) 610EndpointAddress ea = ReadFromDriver(version, reader); 615public static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlReader reader) 620public static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlReader reader, string localName, string ns) 629EndpointAddress ea = ReadFromDriver(addressingVersion, dictReader); 634public static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlDictionaryReader reader) 642EndpointAddress ea = ReadFromDriver(addressingVersion, reader); 647public static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlDictionaryReader reader, XmlDictionaryString localName, XmlDictionaryString ns) 655EndpointAddress ea = ReadFromDriver(addressingVersion, reader); 660static EndpointAddress ReadFromDriver(AddressingVersion addressingVersion, XmlDictionaryReader reader) 1241public static bool operator ==(EndpointAddress address1, EndpointAddress address2) 1251public static bool operator !=(EndpointAddress address1, EndpointAddress address2) 1271EndpointAddress epr; 1278public EndpointAddressBuilder(EndpointAddress address) 1327Fx.Assert(reader.Name == EndpointAddress.DummyName, "EndpointAddressBuilder: Expected dummy element not found"); 1340writer.WriteStartElement(EndpointAddress.DummyName, EndpointAddress.DummyNamespace); 1341EndpointAddress.Copy(writer, reader); 1361Fx.Assert(reader.Name == EndpointAddress.DummyName, "EndpointAddressBuilder: Expected dummy element not found"); 1371this.extensionBuffer = EndpointAddress.ReadExtensions(reader, null, null, out identity, out tmp); 1382public EndpointAddress ToEndpointAddress()
System\ServiceModel\EndpointAddress10.cs (5)
21EndpointAddress address; 29EndpointAddress10(EndpointAddress address) 34public static EndpointAddress10 FromEndpointAddress(EndpointAddress address) 43public EndpointAddress ToEndpointAddress() 50this.address = EndpointAddress.ReadFrom(AddressingVersion.WSAddressing10, XmlDictionaryReader.CreateDictionaryReader(reader));
System\ServiceModel\EndpointAddressAugust2004.cs (5)
21EndpointAddress address; 29EndpointAddressAugust2004(EndpointAddress address) 34public static EndpointAddressAugust2004 FromEndpointAddress(EndpointAddress address) 43public EndpointAddress ToEndpointAddress() 50this.address = EndpointAddress.ReadFrom(AddressingVersion.WSAddressingAugust2004, XmlDictionaryReader.CreateDictionaryReader(reader));
System\ServiceModel\FederatedMessageSecurityOverHttp.cs (4)
25EndpointAddress issuerAddress; 26EndpointAddress issuerMetadataAddress; 75public EndpointAddress IssuerAddress 82public EndpointAddress IssuerMetadataAddress
System\ServiceModel\IContextChannel.cs (2)
19EndpointAddress LocalAddress { get; } 22EndpointAddress RemoteAddress { get; }
System\ServiceModel\MsmqIntegration\MsmqIntegrationChannelFactory.cs (1)
110protected override IOutputChannel OnCreateChannel(EndpointAddress to, Uri via)
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (2)
21public MsmqIntegrationOutputChannel(MsmqIntegrationChannelFactory factory, EndpointAddress to, Uri via, bool manualAddressing) 205EndpointAddress remoteAddress,
System\ServiceModel\PeerNodeAddress.cs (4)
24EndpointAddress endpointAddress; 37public PeerNodeAddress(EndpointAddress endpointAddress, ReadOnlyCollection<IPAddress> ipAddresses) 46void Initialize(EndpointAddress endpointAddress, ReadOnlyCollection<IPAddress> ipAddresses) 53public EndpointAddress EndpointAddress
System\ServiceModel\PeerResolver.cs (1)
18public virtual void Initialize(EndpointAddress address, Binding binding, ClientCredentials credentials, PeerReferralPolicy referralPolicy)
System\ServiceModel\PeerResolvers\PeerCustomResolverSettings.cs (2)
19EndpointAddress address; 25public EndpointAddress Address
System\ServiceModel\PeerResolvers\PeerDefaultCustomResolverClient.cs (2)
19EndpointAddress address; 73public override void Initialize(EndpointAddress address, Binding binding, ClientCredentials credentials, PeerReferralPolicy referralPolicy)
System\ServiceModel\ProgrammaticEndpointTrait.cs (2)
14EndpointAddress remoteAddress; 19EndpointAddress remoteAddress,
System\ServiceModel\Security\AcceleratedTokenAuthenticator.cs (1)
182EndpointAddress appliesTo;
System\ServiceModel\Security\AcceleratedTokenProvider.cs (4)
203protected override IRequestChannel CreateClientChannel(EndpointAddress target, Uri via) 221protected override bool CreateNegotiationStateCompletesSynchronously(EndpointAddress target, Uri via) 226protected override AcceleratedTokenProviderState CreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout) 241protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\AcceptorSessionSymmetricMessageSecurityProtocol.cs (1)
32EndpointAddress target)
System\ServiceModel\Security\AsymmetricSecurityProtocol.cs (1)
25EndpointAddress target, Uri via)
System\ServiceModel\Security\AsymmetricSecurityProtocolFactory.cs (1)
184protected override SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout)
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (10)
41EndpointAddress targetAddress = initiatorRequirement.TargetAddress; 84EndpointAddress targetAddress = initiatorRequirement.TargetAddress; 182EndpointAddress targetAddress = initiatorRequirement.TargetAddress; 218EndpointAddress targetAddress = initiatorRequirement.TargetAddress; 253EndpointAddress localAddress; 254if (initiatorRequirement.TryGetProperty<EndpointAddress>(ServiceModelSecurityTokenRequirement.DuplexClientLocalAddressProperty, out localAddress)) 292SecurityTokenProvider CreateServerX509TokenProvider(EndpointAddress targetAddress) 369void CopyIssuerChannelBehaviorsAndAddSecurityCredentials(IssuedSecurityTokenProvider federationTokenProvider, KeyedByTypeCollection<IEndpointBehavior> issuerChannelBehaviors, EndpointAddress issuerAddress) 451EndpointAddress issuerAddress = initiatorRequirement.IssuerAddress; 457bool isLocalIssuer = (issuerAddress == null || issuerAddress.Equals(EndpointAddress.AnonymousAddress));
System\ServiceModel\Security\DuplexSecurityProtocolFactory.cs (1)
155protected override SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout)
System\ServiceModel\Security\IdentityVerifier.cs (11)
37internal bool CheckAccess(EndpointAddress reference, Message message) 60public abstract bool TryGetIdentity(EndpointAddress reference, out EndpointIdentity identity); 62static void AdjustAddress(ref EndpointAddress reference, Uri via) 71internal bool TryGetIdentity(EndpointAddress reference, Uri via, out EndpointIdentity identity) 77internal void EnsureIncomingIdentity(EndpointAddress serviceReference, AuthorizationContext authorizationContext) 82internal void EnsureOutgoingIdentity(EndpointAddress serviceReference, Uri via, AuthorizationContext authorizationContext) 88internal void EnsureOutgoingIdentity(EndpointAddress serviceReference, ReadOnlyCollection<IAuthorizationPolicy> authorizationPolicies) 98void EnsureIdentity(EndpointAddress serviceReference, AuthorizationContext authorizationContext, String errorString) 121Exception CreateIdentityCheckException(EndpointIdentity identity, AuthorizationContext authorizationContext, string errorString, EndpointAddress serviceReference) 192public override bool TryGetIdentity(EndpointAddress reference, out EndpointIdentity identity) 216EndpointIdentity TryCreateDnsIdentity(EndpointAddress reference)
System\ServiceModel\Security\InfoCardHelper.cs (16)
91EndpointAddress target = tokenRequirement.GetProperty<EndpointAddress>(ServiceModelSecurityTokenRequirement.TargetAddressProperty); 116public static bool IsInfocardRequired(Binding binding, ClientCredentials clientCreds, SecurityTokenManager clientCredentialsTokenManager, EndpointAddress target, out CardSpacePolicyElement[] infocardChain, out Uri relyingPartyIssuer) 165static PolicyElement[] GetPolicyChain(EndpointAddress target, Binding outerBinding, IssuedSecurityTokenParameters parameters, Uri firstPrivacyNoticeLink, int firstPrivacyNoticeVersion, SecurityTokenManager clientCredentialsTokenManager) 167EndpointAddress nextTarget = target; 355static SecurityTokenProvider CreateTokenProviderForNextLeg(SecurityTokenRequirement tokenRequirement, EndpointAddress target, EndpointAddress issuerAddress, Uri relyingPartyIssuer, ClientCredentialsSecurityTokenManager clientCredentialsTokenManager, InfoCardChannelParameter infocardChannelParameter) 652EndpointAddress target, 710EndpointAddress target = tokenRequirement.GetProperty<EndpointAddress>(ServiceModelSecurityTokenRequirement.TargetAddressProperty); 724EndpointAddress m_target; 725EndpointAddress m_issuer; 737public EndpointAddress Issuer 752public PolicyElement(EndpointAddress target, EndpointAddress issuer, Collection<XmlElement> parameters, Uri privacyNoticeLink, int privacyNoticeVersion, bool isManagedIssuer, Binding binding) 792private XmlElement EndPointAddressToXmlElement(EndpointAddress epr)
System\ServiceModel\Security\InitiatorSessionSymmetricMessageSecurityProtocol.cs (1)
30EndpointAddress target, Uri via)
System\ServiceModel\Security\InitiatorSessionSymmetricTransportSecurityProtocol.cs (1)
24EndpointAddress target, Uri via) : base(factory, target, via)
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (21)
29EndpointAddress issuerAddress; 31EndpointAddress targetAddress; 59public EndpointAddress IssuerAddress 72public EndpointAddress TargetAddress 281protected void EnsureEndpointAddressDoesNotRequireEncryption(EndpointAddress target) 345static protected void ThrowIfFault(Message message, EndpointAddress target) 416protected abstract bool CreateNegotiationStateCompletesSynchronously(EndpointAddress target, Uri via); 417protected abstract IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state); 418protected abstract T CreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout); 424protected abstract bool WillInitializeChannelFactoriesCompleteSynchronously(EndpointAddress target); 425protected abstract void InitializeChannelFactories(EndpointAddress target, TimeSpan timeout); 426protected abstract IAsyncResult BeginInitializeChannelFactories(EndpointAddress target, TimeSpan timeout, AsyncCallback callback, object state); 428protected abstract IRequestChannel CreateClientChannel(EndpointAddress target, Uri via); 445nextMessage.Headers.ReplyTo = EndpointAddress.AnonymousAddress; 564EndpointAddress temp = (negotiationState == null) ? null : negotiationState.RemoteAddress; 693static Exception WrapExceptionIfRequired(Exception e, EndpointAddress targetAddress, EndpointAddress issuerAddress) 757EndpointAddress target; 758EndpointAddress issuer; 1120EndpointAddress pinnedEpr = null; 1136EndpointAddress pinnedTarget = (this.negotiationState == null) ? null : this.negotiationState.RemoteAddress;
System\ServiceModel\Security\IssuanceTokenProviderState.cs (4)
23EndpointAddress targetAddress; 24EndpointAddress remoteAddress; 45public EndpointAddress TargetAddress 57public EndpointAddress RemoteAddress
System\ServiceModel\Security\IssuedTokenClientCredential.cs (2)
20EndpointAddress localIssuerAddress; 50public EndpointAddress LocalIssuerAddress
System\ServiceModel\Security\MessageSecurityProtocol.cs (1)
24protected MessageSecurityProtocol(MessageSecurityProtocolFactory factory, EndpointAddress target, Uri via)
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (2)
56IMessageFilterTable<EndpointAddress> endpointFilterTable; 216public IMessageFilterTable<EndpointAddress> EndpointFilterTable
System\ServiceModel\Security\NegotiationTokenProvider.cs (4)
149protected override bool WillInitializeChannelFactoriesCompleteSynchronously(EndpointAddress target) 154protected override void InitializeChannelFactories(EndpointAddress target, TimeSpan timeout) 158protected override IAsyncResult BeginInitializeChannelFactories(EndpointAddress target, TimeSpan timeout, AsyncCallback callback, object state) 168protected override IRequestChannel CreateClientChannel(EndpointAddress target, Uri via)
System\ServiceModel\Security\SctClaimsHandler.cs (1)
164public void OnTokenIssued( SecurityToken issuedToken, EndpointAddress tokenRequestor )
System\ServiceModel\Security\SecurityProtocol.cs (5)
38EndpointAddress target; 43protected SecurityProtocol(SecurityProtocolFactory factory, EndpointAddress target, Uri via) 61public EndpointAddress Target 573internal bool TryGetSupportingTokens(SecurityProtocolFactory factory, EndpointAddress target, Uri via, Message message, TimeSpan timeout, bool isBlockingCall, out IList<SupportingTokenSpecification> supportingTokens) 749internal static SecurityToken GetToken(SecurityTokenProvider provider, EndpointAddress target, TimeSpan timeout)
System\ServiceModel\Security\SecurityProtocolFactory.cs (4)
120IMessageFilterTable<EndpointAddress> endpointFilterTable; 328public IMessageFilterTable<EndpointAddress> EndpointFilterTable 716public SecurityProtocol CreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, bool isReturnLegSecurityRequired, TimeSpan timeout) 756protected abstract SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout);
System\ServiceModel\Security\SecuritySessionClientSettings.cs (11)
329internal TChannel OnCreateChannel(EndpointAddress remoteAddress, Uri via) 334internal TChannel OnCreateChannel(EndpointAddress remoteAddress, Uri via, MessageFilter filter) 416EndpointAddress to; 441protected ClientSecuritySessionChannel(SecuritySessionClientSettings<TChannel> settings, EndpointAddress to, Uri via) 470public EndpointAddress RemoteAddress 494protected EndpointAddress InternalLocalAddress 798closeMessage.Headers.ReplyTo = EndpointAddress.AnonymousAddress; 2801protected ClientSecuritySimplexSessionChannel(SecuritySessionClientSettings<TChannel> settings, EndpointAddress to, Uri via) 2833public SecurityRequestSessionChannel(SecuritySessionClientSettings<TChannel> settings, EndpointAddress to, Uri via) 3155public ClientSecurityDuplexSessionChannel(SecuritySessionClientSettings<TChannel> settings, EndpointAddress to, Uri via) 3164public EndpointAddress LocalAddress
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (4)
43IMessageFilterTable<EndpointAddress> endpointFilterTable; 299public IMessageFilterTable<EndpointAddress> EndpointFilterTable 480void NotifyOperationCompletion(SecuritySessionOperation operation, SecurityContextSecurityToken newSessionToken, SecurityContextSecurityToken previousSessionToken, EndpointAddress remoteAddress) 891EndpointAddress appliesTo;
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (17)
36EndpointAddress targetAddress; 43EndpointAddress localAddress; 105public EndpointAddress TargetAddress 115public EndpointAddress LocalAddress 489IRequestChannel CreateChannel(SecuritySessionOperation operation, EndpointAddress target, Uri via) 525Message CreateRequest(SecuritySessionOperation operation, EndpointAddress target, SecurityToken currentToken, out object requestState) 556void OnOperationSuccess(SecuritySessionOperation operation, EndpointAddress target, SecurityToken issuedToken, SecurityToken currentToken) 561void OnOperationFailure(SecuritySessionOperation operation, EndpointAddress target, SecurityToken currentToken, Exception e, IChannel channel) 570GenericXmlSecurityToken DoOperation(SecuritySessionOperation operation, EndpointAddress target, Uri via, SecurityToken currentToken, TimeSpan timeout) 645RequestSecurityToken CreateRst(EndpointAddress target, out object requestState) 675message.Headers.ReplyTo = EndpointAddress.AnonymousAddress; 701protected virtual Message CreateIssueRequest(EndpointAddress target, out object requestState) 767protected virtual Message CreateRenewRequest(EndpointAddress target, SecurityToken currentSessionToken, out object requestState) 792static protected void ThrowIfFault(Message message, EndpointAddress target) 828EndpointAddress target; 835public SessionOperationAsyncResult(SecuritySessionSecurityTokenProvider requestor, SecuritySessionOperation operation, EndpointAddress target, Uri via, SecurityToken currentToken, TimeSpan timeout, AsyncCallback callback, object state) 1091protected override IRequestChannel OnCreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (6)
737IServerReliableChannelBinder CreateChannelBinder(SecurityContextSecurityToken sessionToken, EndpointAddress remoteAddress) 772void OnTokenIssued(SecurityToken issuedToken, EndpointAddress tokenRequestor) 784IServerReliableChannelBinder channelBinder = CreateChannelBinder(issuedSecurityContextToken, tokenRequestor ?? EndpointAddress.AnonymousAddress); 1214public EndpointAddress LocalAddress 2080closeMessage.Headers.ReplyTo = EndpointAddress.AnonymousAddress; 3601public EndpointAddress RemoteAddress
System\ServiceModel\Security\SecurityUtils.cs (11)
727internal static string GetSpnFromIdentity(EndpointIdentity identity, EndpointAddress target) 756internal static string GetSpnFromTarget(EndpointAddress target) 803internal static int GetServiceAddressAndViaHash(EndpointAddress sr) 1254internal static void ThrowIfNegotiationFault(Message message, EndpointAddress target) 1784internal static void MatchRstWithEndpointFilter(Message rst, IMessageFilterTable<EndpointAddress> endpointFilterTable, Uri listenUri) 1790Collection<EndpointAddress> result = new Collection<EndpointAddress>(); 2140X509FindType findType, object findValue, EndpointAddress target) 2150X509FindType findType, object findValue, EndpointAddress target, out X509Certificate2 certificate) 2157X509FindType findType, object findValue, EndpointAddress target, bool throwIfMultipleOrNoMatch) 2191X509FindType findType, object findValue, EndpointAddress target, int certCount)
System\ServiceModel\Security\ServiceCredentialsSecurityTokenManager.cs (2)
70IMessageFilterTable<EndpointAddress> endpointFilterTable = recipientRequirement.GetPropertyOrDefault<IMessageFilterTable<EndpointAddress>>(ServiceModelSecurityTokenRequirement.EndpointFilterTableProperty, null);
System\ServiceModel\Security\SessionSymmetricMessageSecurityProtocolFactory.cs (1)
50protected override SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout)
System\ServiceModel\Security\SessionSymmetricTransportSecurityProtocolFactory.cs (1)
41protected override SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout)
System\ServiceModel\Security\SimpleSecurityTokenProvider.cs (1)
76EndpointAddress targetAddress = issuedTokenRequirement.TargetAddress;
System\ServiceModel\Security\SpnegoTokenProvider.cs (3)
200protected override bool CreateNegotiationStateCompletesSynchronously(EndpointAddress target, Uri via) 205protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state) 216protected override SspiNegotiationTokenProviderState CreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout)
System\ServiceModel\Security\SspiNegotiationTokenAuthenticatorState.cs (2)
24EndpointAddress appliesTo; 78internal EndpointAddress AppliesTo
System\ServiceModel\Security\SspiNegotiationTokenProvider.cs (1)
199protected override IRequestChannel CreateClientChannel( EndpointAddress target, Uri via )
System\ServiceModel\Security\SymmetricSecurityProtocol.cs (1)
26EndpointAddress target, Uri via)
System\ServiceModel\Security\SymmetricSecurityProtocolFactory.cs (1)
136protected override SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout)
System\ServiceModel\Security\TlsnegoTokenProvider.cs (4)
108protected override bool CreateNegotiationStateCompletesSynchronously(EndpointAddress target, Uri via) 120protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state) 145protected override SspiNegotiationTokenProviderState CreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout) 237public CreateSspiStateAsyncResult(EndpointAddress target, Uri via, TlsnegoTokenProvider tlsTokenProvider, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\Tokens\IIssuanceSecurityTokenAuthenticator.cs (1)
10public delegate void IssuedSecurityTokenHandler(SecurityToken issuedToken, EndpointAddress tokenRequestor);
System\ServiceModel\Security\Tokens\InitiatorServiceModelSecurityTokenRequirement.cs (2)
27public EndpointAddress TargetAddress 31return GetPropertyOrDefault<EndpointAddress>(TargetAddressProperty, null);
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (8)
29public EndpointAddress IssuerAddress; 30public EndpointAddress IssuerMetadataAddress; 37EndpointAddress issuerAddress; 38EndpointAddress issuerMetadataAddress; 83public IssuedSecurityTokenParameters(string tokenType, EndpointAddress issuerAddress) 89public IssuedSecurityTokenParameters(string tokenType, EndpointAddress issuerAddress, Binding issuerBinding) 128public EndpointAddress IssuerAddress 140public EndpointAddress IssuerMetadataAddress
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (9)
112public EndpointAddress IssuerAddress 124public EndpointAddress TargetAddress 749protected override bool WillInitializeChannelFactoriesCompleteSynchronously(EndpointAddress target) 754protected override void InitializeChannelFactories(EndpointAddress target, TimeSpan timeout) 762protected override IAsyncResult BeginInitializeChannelFactories(EndpointAddress target, TimeSpan timeout, AsyncCallback callback, object state) 786protected override IRequestChannel CreateClientChannel(EndpointAddress target, Uri via) 822protected override bool CreateNegotiationStateCompletesSynchronously(EndpointAddress target, Uri via) 827protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state) 837protected override FederatedTokenProviderState CreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout)
System\ServiceModel\Security\Tokens\ServiceModelSecurityTokenRequirement.cs (4)
125public EndpointAddress IssuerAddress 129return GetPropertyOrDefault<EndpointAddress>(IssuerAddressProperty, null); 210internal EndpointAddress DuplexClientLocalAddress 214return GetPropertyOrDefault<EndpointAddress>(duplexClientLocalAddressProperty, null);
System\ServiceModel\Security\TransportSecurityProtocol.cs (1)
19public TransportSecurityProtocol(TransportSecurityProtocolFactory factory, EndpointAddress target, Uri via)
System\ServiceModel\Security\TransportSecurityProtocolFactory.cs (1)
42protected override SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout)
System\ServiceModel\Security\TrustDriver.cs (1)
163public abstract IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<IEndpointBehavior> channelBehaviors);
System\ServiceModel\Security\WSSecurityPolicy.cs (10)
2272public virtual XmlElement CreateWsspIssuerElement(EndpointAddress issuerAddress, EndpointAddress issuerMetadataAddress) 2281EndpointAddress addressToSerialize; 2282addressToSerialize = issuerAddress == null ? EndpointAddress.AnonymousAddress : issuerAddress; 2318public virtual bool TryGetIssuer(XmlElement assertion, out EndpointAddress issuer, out EndpointAddress issuerMetadata) 2330issuer = EndpointAddress.ReadFrom(XmlDictionaryReader.CreateDictionaryReader(new XmlNodeReader(node))); 2425EndpointAddress issuer; 2426EndpointAddress issuerMetadata; 2851EndpointAddress mexAddress = (parameters.IssuerMetadataAddress != null) ? parameters.IssuerMetadataAddress : parameters.IssuerAddress;
System\ServiceModel\Security\WSTrustChannelFactory.cs (7)
118/// <param name="remoteAddress">The <see cref="EndpointAddress" /> that provides the location of the service.</param> 119public WSTrustChannelFactory(string endpointConfigurationName, EndpointAddress remoteAddress) 129/// <param name="remoteAddress">The <see cref="EndpointAddress" /> that provides the location of the service.</param> 130public WSTrustChannelFactory(Binding binding, EndpointAddress remoteAddress) 140/// <param name="remoteAddress">The <see cref="EndpointAddress" /> that provides the location of the service.</param> 338/// <param name="address">The <see cref="EndpointAddress" /> that provides the location of the service.</param> 341public override IWSTrustChannelContract CreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Security\WSTrustDec2005.cs (1)
110public override IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<IEndpointBehavior> channelBehaviors)
System\ServiceModel\Security\WSTrustFeb2005.cs (3)
247public override IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<IEndpointBehavior> channelBehaviors) 303public IRequestChannel CreateChannel(EndpointAddress address) 308public IRequestChannel CreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\ServiceBehaviorAttribute.cs (1)
395EndpointAddress address = endpointDispatcher.OriginalAddress;
System\ServiceModel\Transactions\WsatConfiguration.cs (10)
48EndpointAddress localActivationService10; 49EndpointAddress localActivationService11; 51EndpointAddress remoteActivationService10; 52EndpointAddress remoteActivationService11; 147public EndpointAddress LocalActivationService(ProtocolVersion protocolVersion) 164public EndpointAddress RemoteActivationService(ProtocolVersion protocolVersion) 180public EndpointAddress CreateRegistrationService(AddressHeader refParam, ProtocolVersion protocolVersion) 196public bool IsLocalRegistrationService(EndpointAddress endpoint, ProtocolVersion protocolVersion) 213public bool IsDisabledRegistrationService(EndpointAddress endpoint) 314EndpointAddress CreateActivationEndpointAddress(ProtocolInformationReader protocol,
System\ServiceModel\Transactions\WsatProxy.cs (6)
172EndpointAddress address = proxy.To; 174EndpointAddress localActivationService = this.wsatConfig.LocalActivationService(this.protocolVersion); 175EndpointAddress remoteActivationService = this.wsatConfig.RemoteActivationService(this.protocolVersion); 269void RefreshActivationProxy(EndpointAddress suggestedAddress) 272EndpointAddress address = suggestedAddress; 304ActivationProxy CreateActivationProxy(EndpointAddress address)
System.ServiceModel.Activities (19)
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (1)
147EndpointAddress address = new EndpointAddress(controlEndpointAddress.AbsoluteUri);
System\ServiceModel\Activities\InternalSendMessage.cs (8)
458EndpointAddress CreateEndpointAddress(NativeActivityContext context) 481EndpointAddress CreateEndpointAddressFromCallback(EndpointAddress CallbackAddress) 487EndpointAddress endpointAddress; 2370public EndpointAddress EndpointAddress 2764ObjectCache<EndpointAddress, Pool<IChannel>> channelCache; 2806this.channelCache = new ObjectCache<EndpointAddress, Pool<IChannel>>(channelSettings) 2865public IChannel TakeChannel(EndpointAddress endpointAddress, out ObjectCacheItem<Pool<IChannel>> channelPool)
System\ServiceModel\Activities\MessagingActivityHelper.cs (1)
190EndpointAddress listenAddress;
System\ServiceModel\Activities\WorkflowControlClient.cs (2)
57public WorkflowControlClient(string endpointConfigurationName, EndpointAddress remoteAddress) 69public WorkflowControlClient(Binding binding, EndpointAddress remoteAddress)
System\ServiceModel\Activities\WorkflowControlEndpoint.cs (1)
33public WorkflowControlEndpoint(Binding binding, EndpointAddress address)
System\ServiceModel\Activities\WorkflowHostingEndpoint.cs (1)
28protected WorkflowHostingEndpoint(Type contractType, Binding binding, EndpointAddress address)
System\ServiceModel\Activities\WorkflowServiceHost.cs (1)
313ServiceEndpoint AddServiceEndpointCore(XName serviceContractName, Binding binding, EndpointAddress address,
System\ServiceModel\Activities\WorkflowUpdateableControlClient.cs (2)
62public WorkflowUpdateableControlClient(string endpointConfigurationName, EndpointAddress remoteAddress) 74public WorkflowUpdateableControlClient(Binding binding, EndpointAddress remoteAddress)
System\ServiceModel\Endpoint.cs (2)
88public EndpointAddress GetAddress() 93public EndpointAddress GetAddress(ServiceHostBase host)
System.ServiceModel.Channels (17)
System\ServiceModel\Channels\ClientUdpOutputChannel.cs (2)
21private EndpointAddress to; 23public ClientUdpOutputChannel(ChannelManagerBase factory, IPEndPoint remoteEndPoint, MessageEncoder encoder, BufferManager bufferManager, UdpSocket[] sendSockets, UdpRetransmissionSettings retransmissionSettings, EndpointAddress to, Uri via, bool isMulticast)
System\ServiceModel\Channels\UdpChannelBase.cs (2)
36EndpointAddress localAddress, 66public EndpointAddress LocalAddress
System\ServiceModel\Channels\UdpChannelFactory.cs (7)
79protected override TChannel OnCreateChannel(EndpointAddress to, Uri via) 113EndpointAddress localAddress = new EndpointAddress(EndpointAddress.AnonymousUri); 277EndpointAddress to; 280internal ClientUdpDuplexChannel(UdpChannelFactory<IDuplexChannel> factory, UdpSocket[] sockets, IPEndPoint remoteEndPoint, EndpointAddress localAddress, EndpointAddress to, Uri via, bool isMulticast) 319public override EndpointAddress RemoteAddress
System\ServiceModel\Channels\UdpChannelListener.cs (1)
760public ServerUdpDuplexChannel(UdpDuplexChannelListener listener, UdpSocket[] sockets, EndpointAddress localAddress, Uri via, bool isMulticast)
System\ServiceModel\Channels\UdpDuplexChannel.cs (2)
27EndpointAddress localAddress, 35public virtual EndpointAddress RemoteAddress
System\ServiceModel\Channels\UdpOutputChannel.cs (1)
66public override EndpointAddress RemoteAddress
System\ServiceModel\Channels\UdpReplyChannel.cs (1)
15public UdpReplyChannel(UdpReplyChannelListener listener, UdpSocket[] sockets, EndpointAddress localAddress, Uri via, bool isMulticast)
System\ServiceModel\Channels\UdpTransportImporter.cs (1)
104EndpointAddress address = null;
System.ServiceModel.Discovery (27)
System\ServiceModel\Discovery\AnnouncementEndpoint.cs (2)
22public AnnouncementEndpoint(Binding binding, EndpointAddress address) 32public AnnouncementEndpoint(DiscoveryVersion discoveryVersion, Binding binding, EndpointAddress address)
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
1276EndpointAddress originalReplyTo;
System\ServiceModel\Discovery\DiscoveryClientBindingElement.cs (1)
18public static readonly EndpointAddress DiscoveryEndpointAddress = new EndpointAddress("http://schemas.microsoft.com/discovery/dynamic");
System\ServiceModel\Discovery\DiscoveryClientChannelBase.cs (3)
228bool CreateChannel(ref TChannel innerChannel, EndpointAddress to, Uri via, TimeoutHelper timeoutHelper) 404static void TraceInnerChannelFailure(TChannel innerChannel, EndpointAddress to, Uri via, Exception exception) 596void CreateChannel(EndpointAddress address, Uri listenUri)
System\ServiceModel\Discovery\DiscoveryClientChannelFactory.cs (1)
30protected override TChannel OnCreateChannel(EndpointAddress address, Uri via)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
23public EndpointAddress LocalAddress
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (1)
23public EndpointAddress RemoteAddress
System\ServiceModel\Discovery\DiscoveryClientRequestChannel.cs (1)
23public EndpointAddress RemoteAddress
System\ServiceModel\Discovery\DiscoveryEndpoint.cs (2)
20public DiscoveryEndpoint(Binding binding, EndpointAddress endpointAddress) 30public DiscoveryEndpoint(DiscoveryVersion discoveryVersion, ServiceDiscoveryMode discoveryMode, Binding binding, EndpointAddress endpointAddress)
System\ServiceModel\Discovery\DiscoveryOperationContext.cs (1)
114EndpointAddress replyTo = operationContext.IncomingMessageHeaders.ReplyTo;
System\ServiceModel\Discovery\EndpointDiscoveryMetadata.cs (4)
21EndpointAddress endpointAddress; 32this.endpointAddress = new EndpointAddress(EndpointAddress.AnonymousUri); 48public EndpointAddress Address 348this.endpointAddress = new EndpointAddress(EndpointAddress.AnonymousUri);
System\ServiceModel\Discovery\ResolveCriteria.cs (4)
19EndpointAddress endpointAddress; 24: this(new EndpointAddress(EndpointAddress.AnonymousUri)) 28public ResolveCriteria(EndpointAddress address) 39public EndpointAddress Address
System\ServiceModel\Discovery\SerializationUtility.cs (2)
263public static EndpointAddress ReadEndpointAddress(DiscoveryVersion discoveryVersion, XmlReader reader) 395public static void WriteEndPointAddress(DiscoveryVersion discoveryVersion, EndpointAddress endpointAddress, XmlWriter writer)
System\ServiceModel\Discovery\UdpReplyToBehavior.cs (3)
30static EndpointAddress annonymousAddress; 38static EndpointAddress AnnonymousAddress 44annonymousAddress = new EndpointAddress(EndpointAddress.AnonymousUri);
System.ServiceModel.Routing (4)
System\ServiceModel\Channels\SynchronousSendBindingElement.cs (4)
91protected override TChannel OnCreateChannel(EndpointAddress address, Uri via) 194public EndpointAddress LocalAddress 266public EndpointAddress RemoteAddress 333public EndpointAddress RemoteAddress
System.ServiceModel.Web (7)
System\ServiceModel\Description\WebHttpBehavior.cs (1)
346EndpointAddress address = endpoint.Address;
System\ServiceModel\Description\WebHttpEndpoint.cs (1)
22public WebHttpEndpoint(ContractDescription contract, EndpointAddress address)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (2)
259EndpointAddress metadataAddress = new EndpointAddress(builder.Uri); 263if (EndpointAddress.UriEquals(serviceEndpoint.Address.Uri, metadataAddress.Uri, true, false))// ignoreCase // includeHostNameInComparison
System\ServiceModel\Description\WebScriptEndpoint.cs (1)
28public WebScriptEndpoint(ContractDescription contract, EndpointAddress address)
System\ServiceModel\Description\WebServiceEndpoint.cs (1)
16internal WebServiceEndpoint(ContractDescription contract, EndpointAddress address)
System\ServiceModel\Web\WebServiceHost.cs (1)
91if (endpoint.Address != null && EndpointAddress.UriEquals(endpoint.Address.Uri, baseAddress, true, false))
System.WorkflowServices (24)
System\ServiceModel\Activities\ExternalDataExchangeClient.cs (1)
15public ExternalDataExchangeClient(Binding binding, EndpointAddress address)
System\ServiceModel\Description\WorkflowServiceBehavior.cs (1)
314EndpointAddress endPointAddress = endPointDispatcher.OriginalAddress;
System\Workflow\Runtime\Hosting\ChannelManager.cs (15)
29Dictionary<EndpointAddress, ServiceEndpoint> endpoints; 30Dictionary<EndpointAddress, ChannelFactoryReference> factoryCache; 37this.factoryCache = new Dictionary<EndpointAddress, ChannelFactoryReference>(); 41this.endpoints = new Dictionary<EndpointAddress, ServiceEndpoint>(); 50EndpointAddress cacheAddress = null; 127EndpointAddress cacheAddress = ChannelManagerHelpers.BuildCacheAddress(endpointName, contractType); 141public PooledChannel TakeChannel(EndpointAddress address, Uri via, out ChannelPoolKey key) 154EndpointAddress cacheAddress = address; 186PooledChannel CreateChannel(ChannelFactoryReference factory, EndpointAddress address, Uri via, out bool channelCreated) 206ChannelFactoryReference CreateChannelFactory(EndpointAddress address) 224void ReturnChannelFactory(EndpointAddress key, ChannelFactoryReference channelFactory) 254ChannelFactoryReference TakeChannelFactory(EndpointAddress address) 356EndpointAddress factoryKey; 360internal PooledChannel(ChannelManager owner, ChannelFactoryReference factoryReference, EndpointAddress factoryKey, IChannel channel) 444protected override ChannelPoolKey GetPoolKey(EndpointAddress address, Uri via)
System\Workflow\Runtime\Hosting\ChannelManagerHelpers.cs (7)
25public static EndpointAddress BuildCacheAddress(string endpointName, Type contractType) 33public static EndpointAddress BuildCacheAddress(string endpointName, string contractName) 41public static EndpointAddress BuildCacheAddressWithIdentity(EndpointAddress address) 163public static ChannelFactory CreateChannelFactory(string endpointName, Type contractType, IDictionary<EndpointAddress, ServiceEndpoint> codeEndpoints) 184EndpointAddress key = BuildCacheAddress(endpointName, contractType); 290this.createChannelWithCustomAddressMethodInfo = this.channelFactoryType.GetMethod("CreateChannel", new Type[1] { typeof(EndpointAddress) });