16 references to EndpointAddress
System.ServiceModel (12)
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (1)
3537acksTo = new EndpointAddress(info.CreateSequenceInfo.To, match.Identity, match.Headers);
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (2)
120ServiceChannel localChannel = serviceChannelFactory.CreateServiceChannel(new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri); 415this.serviceEndpoint = new ServiceEndpoint(contractDescription, endpoint.Binding, new EndpointAddress(new Uri(address), identity, (AddressHeaderCollection)null));
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (1)
120object transparentProxy = serviceChannelFactory.CreateChannel(contractType, new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri);
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.Activities (4)
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\Endpoint.cs (1)
127return new EndpointAddress(address, this.Identity, new AddressHeaderCollection(this.Headers));