19 instantiations of EndpointAddress
dotnet-svcutil-lib (19)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (1)
459: this(binding, new EndpointAddress(remoteAddress))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (1)
16private static EndpointAddress s_anonymousEndpointAddress = new EndpointAddress(EndpointAddress.AnonymousUri, new AddressHeader[0]);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (2)
415new EndpointAddress(WebSocketHelper.NormalizeHttpSchemeWithWsScheme(remoteAddress.Uri), remoteAddress) : 614to = new EndpointAddress(toHeader);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (4)
60_ctorEndpointAddress = new EndpointAddress(address); 248return this.BeginGetMetadata(new MetadataReferenceRetriever(new EndpointAddress(address), this), callback, asyncState); 289: (MetadataRetriever)new MetadataReferenceRetriever(new EndpointAddress(address), this); 340retriever = new MetadataReferenceRetriever(new EndpointAddress(address), this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (1)
1092return new EndpointAddress(soapAddressBinding.Location);
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (3)
18: this((object)callbackInstanceType, binding, new EndpointAddress(remoteAddress)) 41: this((object)callbackInstance, binding, new EndpointAddress(remoteAddress)) 118: this(callbackObject, binding, new EndpointAddress(remoteAddress))
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (3)
224s_anonymousAddress = new EndpointAddress(AnonymousUri); 689return new EndpointAddress(addressingVersion, uri, identity, headers, buffer, metadataSection, extensionSection, pspSection); 1382return new EndpointAddress(
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\IdentityVerifier.cs (1)
38reference = new EndpointAddress(via);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (1)
2297addressToSerialize = new EndpointAddress(
Metadata\MetadataDocumentLoader.cs (2)
234new EndpointAddress(serviceUri), 566new EndpointAddress(schemaUri),
341 references to EndpointAddress
dotnet-svcutil-lib (341)
CodeDomFixup\CodeDomVisitors\ConstructorFixer.cs (4)
23new Type[] { typeof(string), typeof(EndpointAddress), }, 26new Type[] { typeof(InstanceContext), typeof(string), typeof(EndpointAddress), }, 27new Type[] { typeof(Binding), typeof(EndpointAddress), }, 28new Type[] { typeof(InstanceContext), typeof(Binding), typeof(EndpointAddress), },
CodeDomFixup\CodeDomVisitors\CreateCallbackImpl.cs (2)
150ctor.Parameters.Add(new CodeParameterDeclarationExpression(typeof(System.ServiceModel.EndpointAddress), "remoteAddress")); 164ctor.Parameters.Add(new CodeParameterDeclarationExpression(typeof(System.ServiceModel.EndpointAddress), "remoteAddress"));
CodeDomFixup\ConfigToCode.cs (4)
255typeof(EndpointAddress), 266string.Equals(ctor.Parameters[1].Type.BaseType, typeof(EndpointAddress).FullName, StringComparison.Ordinal)) 384typeof(EndpointAddress), 395&& string.Equals(ctor.Parameters[2].Type.BaseType, typeof(EndpointAddress).FullName, StringComparison.Ordinal))
CodeDomFixup\MethodCreationHelper.cs (8)
29ReturnType = new CodeTypeReference(typeof(EndpointAddress)), 597typeof(EndpointAddress), 599new CodeObjectCreateExpression(typeof(EndpointAddress), 801typeof(EndpointAddress), 803new CodeObjectCreateExpression(typeof(EndpointAddress), 2148typeof(EndpointAddress), 2157typeof(EndpointAddress), 2185ReturnType = new CodeTypeReference(typeof(EndpointAddress)),
CodeDomFixup\System.ServiceModel.FederationCodeGen.cs (2)
86public static WSTrustTokenParameters CreateWSFederationTokenParameters(System.ServiceModel.Channels.Binding issuerBinding, System.ServiceModel.EndpointAddress issuerAddress) => default; 87public static WSTrustTokenParameters CreateWS2007FederationTokenParameters(System.ServiceModel.Channels.Binding issuerBinding, System.ServiceModel.EndpointAddress issuerAddress) => default;
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (10)
137internal EndpointAddress CreateEndpointAddress(ServiceEndpoint endpoint) 222protected void InitializeEndpoint(string configurationName, EndpointAddress address) 266protected void InitializeEndpoint(Binding binding, EndpointAddress address) 434public ChannelFactory(string endpointConfigurationName, EndpointAddress remoteAddress) 454: this(binding, (EndpointAddress)null) 464public ChannelFactory(Binding binding, EndpointAddress remoteAddress) 532public TChannel CreateChannel(EndpointAddress address) 542public virtual TChannel CreateChannel(EndpointAddress address, Uri via) 633public static TChannel CreateChannel(Binding binding, EndpointAddress endpointAddress) 647public static TChannel CreateChannel(Binding binding, EndpointAddress endpointAddress, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Addressing.cs (26)
164private EndpointAddress _from; 167private FromHeader(EndpointAddress from, AddressingVersion version) 173public EndpointAddress From 188public static FromHeader Create(EndpointAddress from, AddressingVersion addressingVersion) 205EndpointAddress from = ReadHeaderValue(reader, version); 217public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion addressingVersion) 220return EndpointAddress.ReadFrom(addressingVersion, reader); 229public FullFromHeader(EndpointAddress from, string actor, bool mustUnderstand, bool relay, AddressingVersion version) 256private EndpointAddress _faultTo; 259private FaultToHeader(EndpointAddress faultTo, AddressingVersion version) 265public EndpointAddress FaultTo 285public static FaultToHeader Create(EndpointAddress faultTo, AddressingVersion addressingVersion) 297EndpointAddress faultTo = ReadHeaderValue(reader, version); 309public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version) 312return EndpointAddress.ReadFrom(version, reader); 321public FullFaultToHeader(EndpointAddress faultTo, string actor, bool mustUnderstand, bool relay, AddressingVersion version) 540private EndpointAddress _replyTo; 544private ReplyToHeader(EndpointAddress replyTo, AddressingVersion version) 550public EndpointAddress ReplyTo 570s_anonymousReplyToHeader10 = new ReplyToHeader(EndpointAddress.AnonymousAddress, AddressingVersion.WSAddressing10); 576public static ReplyToHeader Create(EndpointAddress replyTo, AddressingVersion addressingVersion) 593EndpointAddress replyTo = ReadHeaderValue(reader, version); 597if ((object)replyTo == (object)EndpointAddress.AnonymousAddress) 613public static EndpointAddress ReadHeaderValue(XmlDictionaryReader reader, AddressingVersion version) 616return EndpointAddress.ReadFrom(version, reader); 625public FullReplyToHeader(EndpointAddress replyTo, string actor, bool mustUnderstand, bool relay, AddressingVersion version)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelFactoryBase.cs (4)
107public TChannel CreateChannel(EndpointAddress address) 115public TChannel CreateChannel(EndpointAddress address, Uri via) 126private TChannel InternalCreateChannel(EndpointAddress address, Uri via) 147protected abstract TChannel OnCreateChannel(EndpointAddress address, Uri via);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (1)
29public ClientWebSocketTransportDuplexSessionChannel(HttpChannelFactory<IDuplexSessionChannel> channelFactory, ClientWebSocketFactory connectionFactory, EndpointAddress remoteAddresss, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionOrientedTransportChannelFactory.cs (1)
199protected override TChannel OnCreateChannel(EndpointAddress address, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ConnectionPool.cs (2)
50protected abstract TKey GetPoolKey(EndpointAddress address, Uri via); 200public TItem TakeConnection(EndpointAddress address, Uri via, TimeSpan timeout, out TKey key)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (6)
16private static EndpointAddress s_anonymousEndpointAddress = new EndpointAddress(EndpointAddress.AnonymousUri, new AddressHeader[0]); 21EndpointAddress localAddress, Uri localVia, EndpointAddress remoteAddresss, Uri via, bool exposeConnectionProperty) 28EndpointAddress remoteAddresss, Uri via, bool exposeConnectionProperty) 183EndpointAddress remoteAddresss, Uri via, IConnectionInitiator connectionInitiator, ConnectionPool connectionPool,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (16)
229internal async Task<HttpClient> GetHttpClientAsync(EndpointAddress to, SecurityTokenProviderContainer tokenProvider, 241internal HttpClient GetHttpClient(EndpointAddress to, NetworkCredential credential, 302internal virtual ServiceModelHttpMessageHandler GetHttpMessageHandler(EndpointAddress to, SecurityTokenContainer clientCertificateToken) 363EndpointAddress target, Uri via, ChannelParameterCollection channelParameters) 397protected virtual void ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) 410protected override TChannel OnCreateChannel(EndpointAddress remoteAddress, Uri via) 423protected virtual TChannel OnCreateChannelCore(EndpointAddress remoteAddress, Uri via) 604private void ApplyManualAddressing(ref EndpointAddress to, ref Uri via, Message message) 646private void CreateAndOpenTokenProvidersCore(EndpointAddress to, Uri via, ChannelParameterCollection channelParameters, TimeSpan timeout, out SecurityTokenProviderContainer tokenProvider) 652internal void CreateAndOpenTokenProviders(EndpointAddress to, Uri via, ChannelParameterCollection channelParameters, TimeSpan timeout, out SecurityTokenProviderContainer tokenProvider) 664internal static bool MapIdentity(EndpointAddress target, AuthenticationSchemes authenticationScheme) 674private bool MapIdentity(EndpointAddress target) 685public HttpClientRequestChannel(HttpChannelFactory<IRequestChannel> factory, EndpointAddress to, Uri via, bool manualAddressing) 816internal virtual Task<HttpClient> GetHttpClientAsync(EndpointAddress to, Uri via, TimeoutHelper timeoutHelper) 821protected async Task<HttpClient> GetHttpClientAsync(EndpointAddress to, Uri via, SecurityTokenContainer clientCertificateToken, TimeoutHelper timeoutHelper) 876private EndpointAddress _to;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsChannelFactory.cs (8)
67protected override void ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) 80protected override TChannel OnCreateChannelCore(EndpointAddress address, Uri via) 121internal SecurityTokenProvider CreateAndOpenCertificateTokenProvider(EndpointAddress target, Uri via, ChannelParameterCollection channelParameters, TimeSpan timeout) 134EndpointAddress to, Uri via, ChannelParameterCollection channelParameters, ref TimeoutHelper timeoutHelper) 166private void AddServerCertMappingOrSetRemoteCertificateValidationCallback(ServiceModelHttpMessageHandler messageHandler, EndpointAddress to) 212internal override ServiceModelHttpMessageHandler GetHttpMessageHandler(EndpointAddress to, SecurityTokenContainer clientCertificateToken) 243public HttpsClientRequestChannel(HttpsChannelFactory<IRequestChannel> factory, EndpointAddress to, Uri via, bool manualAddressing) 316internal override async Task<HttpClient> GetHttpClientAsync(EndpointAddress to, Uri via, TimeoutHelper timeoutHelper)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IChannelFactory.cs (2)
17TChannel CreateChannel(EndpointAddress to); 18TChannel CreateChannel(EndpointAddress to, Uri via);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IInputChannel.cs (1)
13EndpointAddress LocalAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IOutputChannel.cs (1)
12EndpointAddress RemoteAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IReplyChannel.cs (1)
9EndpointAddress LocalAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IRequestChannel.cs (1)
11EndpointAddress RemoteAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (5)
86public virtual EndpointAddress LocalAddress 172private EndpointAddress _localAddress; 175public LayeredDuplexChannel(ChannelManagerBase channelManager, IInputChannel innerInputChannel, EndpointAddress localAddress, IOutputChannel innerOutputChannel) 184public override EndpointAddress LocalAddress 189public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageHeaders.cs (3)
165public EndpointAddress FaultTo 189public EndpointAddress From 269public EndpointAddress ReplyTo
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
21public abstract EndpointAddress RemoteAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestChannel.cs (3)
17private EndpointAddress _to; 23protected RequestChannel(ChannelManagerBase channelFactory, EndpointAddress to, Uri via, bool manualAddressing) 47public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\RequestReplyCorrelator.cs (9)
91EndpointAddress destination = null; 174private readonly EndpointAddress _faultTo; 175private readonly EndpointAddress _from; 176private readonly EndpointAddress _replyTo; 185internal EndpointAddress FaultTo 190internal EndpointAddress From 210internal EndpointAddress ReplyTo 215private bool IsTrivial(EndpointAddress address) 218return (address == null) || (address == EndpointAddress.AnonymousAddress);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (8)
44private EndpointAddress _localAddress; 283public EndpointAddress LocalAddress 359public EndpointAddress RemoteAddress 581EndpointAddress localAddress = LocalAddress; 582EndpointAddress replyTo = headers.ReplyTo; 586headers.ReplyTo = localAddress ?? EndpointAddress.AnonymousAddress; 600EndpointAddress faultTo = headers.FaultTo; 879EndpointAddress address = RemoteAddress ?? LocalAddress;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (10)
309public virtual ServiceChannel CreateServiceChannel(EndpointAddress address, Uri via) 326public TChannel CreateChannel<TChannel>(EndpointAddress address) 331public TChannel CreateChannel<TChannel>(EndpointAddress address, Uri via) 394protected abstract IChannelBinder CreateInnerChannelBinder(EndpointAddress address, Uri via); 488protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 507protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 527protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 548protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 577protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via) 603protected override IChannelBinder CreateInnerChannelBinder(EndpointAddress to, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (4)
683EndpointAddress IContextChannel.LocalAddress 705EndpointAddress IOutputChannel.RemoteAddress 715EndpointAddress IContextChannel.RemoteAddress 795EndpointAddress IRequestChannel.RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (2)
223public override StreamUpgradeInitiator CreateUpgradeInitiator(EndpointAddress remoteAddress, Uri via) 452EndpointAddress remoteAddress, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\StreamSecurityUpgradeInitiatorBase.cs (3)
15private EndpointAddress _remoteAddress; 22protected StreamSecurityUpgradeInitiatorBase(string upgradeString, EndpointAddress remoteAddress, Uri via) 29protected EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\StreamUpgradeProvider.cs (1)
46public abstract StreamUpgradeInitiator CreateUpgradeInitiator(EndpointAddress remoteAddress, Uri via);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TcpConnectionPool.cs (1)
35protected override string GetPoolKey(EndpointAddress address, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (1)
85EndpointAddress address = context.Endpoint.Address = WsdlImporter.WSAddressingHelper.ImportAddress(context.WsdlPort);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (4)
24private EndpointAddress _localAddress; 32EndpointAddress localAddress, 34EndpointAddress remoteAddresss, 46public EndpointAddress LocalAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportOutputChannel.cs (3)
16private EndpointAddress _to; 21protected TransportOutputChannel(ChannelManagerBase channelManager, EndpointAddress to, Uri via, bool manualAddressing, MessageVersion messageVersion) 76public override EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportSecurityHelpers.cs (10)
135internal static SecurityTokenRequirement CreateSspiTokenRequirement(EndpointAddress target, Uri via, string transportScheme) 147SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, AuthenticationSchemes authenticationScheme, ChannelParameterCollection channelParameters) 164SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, 184SecurityTokenManager tokenManager, EndpointAddress target, Uri via, 207SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, ChannelParameterCollection channelParameters) 261SecurityTokenManager tokenManager, EndpointAddress target, Uri via, string transportScheme, AuthenticationSchemes authenticationScheme, 300EndpointAddress target, Uri via, string transportScheme) 326public static bool AddIdentityMapping(Uri via, EndpointAddress target) 333public static void RemoveIdentityMapping(Uri via, EndpointAddress target, bool validateState) 341public static void AddServerCertMapping(HttpRequestMessage request, EndpointAddress to)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (1)
105EndpointAddress address = null;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (3)
30public WebSocketTransportDuplexSessionChannel(HttpChannelFactory<IDuplexSessionChannel> channelFactory, EndpointAddress remoteAddresss, Uri via) 31: base(channelFactory, channelFactory, EndpointAddress.AnonymousAddress, channelFactory.MessageVersion.Addressing.AnonymousUri, remoteAddresss, via) 462private EndpointAddress _localAddress;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (2)
122public override StreamUpgradeInitiator CreateUpgradeInitiator(EndpointAddress remoteAddress, Uri via) 282WindowsStreamSecurityUpgradeProvider parent, EndpointAddress remoteAddress, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (7)
40protected ClientBase(string endpointConfigurationName, EndpointAddress remoteAddress) 45protected ClientBase(Binding binding, EndpointAddress remoteAddress) 56protected ClientBase(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress) 630EndpointAddress IContextChannel.LocalAddress 646EndpointAddress IContextChannel.RemoteAddress 766EndpointAddress IOutputChannel.RemoteAddress 801EndpointAddress IRequestChannel.RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ClientClassGenerator.cs (1)
42private static Type s_endpointAddressType = typeof(EndpointAddress);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DispatcherBuilder.cs (2)
89&& EndpointAddress.UriEquals(_listenUri, other._listenUri, true /* ignoreCase */, true /* includeHost */); 94return EndpointAddress.UriGetHashCode(_listenUri, true /* includeHost */);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (15)
38private EndpointAddress _ctorEndpointAddress = null; 65public MetadataExchangeClient(EndpointAddress address) 252public IAsyncResult BeginGetMetadata(EndpointAddress address, AsyncCallback callback, object asyncState) 294public Task<MetadataSet> GetMetadataAsync(EndpointAddress address) 304public Task<MetadataSet> GetMetadataAsync(EndpointAddress address, Uri via) 345public MetadataSet GetMetadata(EndpointAddress address) 356public MetadataSet GetMetadata(EndpointAddress address, Uri via) 405protected internal virtual ChannelFactory<IMetadataExchange> GetChannelFactory(EndpointAddress metadataAddress, string dialect, string identifier) 437internal static void TraceSendRequest(EndpointAddress address) 507EndpointAddress address = ((MetadataReference)section.Metadata).Address; 911private EndpointAddress _address; 914public MetadataReferenceRetriever(EndpointAddress address, MetadataExchangeClient resolver) 919public MetadataReferenceRetriever(EndpointAddress address, Uri via, MetadataExchangeClient resolver) 924public MetadataReferenceRetriever(EndpointAddress address, MetadataExchangeClient resolver, string dialect, string identifier) 929private MetadataReferenceRetriever(EndpointAddress address, Uri via, MetadataExchangeClient resolver, string dialect, string identifier)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataReference.cs (4)
20private EndpointAddress _address; 29public MetadataReference(EndpointAddress address, AddressingVersion addressVersion) 35public EndpointAddress Address 54_address = EndpointAddress.ReadFrom(XmlDictionaryReader.CreateDictionaryReader(reader), out _addressVersion);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceEndpoint.cs (3)
18private EndpointAddress _address; 35public ServiceEndpoint(ContractDescription contract, Binding binding, EndpointAddress address) 45public EndpointAddress Address
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
595internal static void AddAddressToWsdlPort(WsdlNS.Port wsdlPort, EndpointAddress addr, AddressingVersion addressing)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (3)
1072internal static EndpointAddress ImportAddress(WsdlNS.Port wsdlPort) 1084return EndpointAddress.ReadFrom(AddressingVersion.WSAddressing10, new XmlNodeReader(addressing10Element)); 1088return EndpointAddress.ReadFrom(AddressingVersion.WSAddressingAugust2004, new XmlNodeReader(addressing200408Element));
FrameworkFork\System.ServiceModel\System\ServiceModel\Diagnostics\SecurityTraceRecordHelper.cs (2)
35internal static void TraceIdentityDeterminationSuccess(EndpointAddress epr, EndpointIdentity identity, Type identityVerifier) 39internal static void TraceIdentityDeterminationFailure(EndpointAddress epr, Type identityVerifier)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (2)
46public EndpointAddress LocalAddress 51public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (5)
127public EndpointAddress LocalAddress 146public EndpointAddress RemoteAddress 247EndpointAddress address = _channel.RemoteAddress ?? _channel.LocalAddress; 1058public EndpointAddress LocalAddress 1063public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\EndpointDispatcher.cs (2)
19private EndpointAddress _originalAddress = null; 47public EndpointAddress EndpointAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\IChannelBinder.cs (2)
14EndpointAddress LocalAddress { get; } 15EndpointAddress RemoteAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
434EndpointAddress replyTo = rpc.ReplyToInfo.ReplyTo;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InputChannelBinder.cs (2)
44public EndpointAddress LocalAddress 49public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (2)
42public EndpointAddress LocalAddress 50public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (2)
44public EndpointAddress LocalAddress 49public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\RequestChannelBinder.cs (3)
39public EndpointAddress LocalAddress 41get { return EndpointAddress.AnonymousAddress; } 44public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (15)
20public DuplexChannelFactory(Type callbackInstanceType, Binding binding, EndpointAddress remoteAddress) 26public DuplexChannelFactory(Type callbackInstanceType, string endpointConfigurationName, EndpointAddress remoteAddress) 43public DuplexChannelFactory(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress) 49public DuplexChannelFactory(InstanceContext callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress) 75this.InitializeEndpoint((string)null, (EndpointAddress)null); 86public DuplexChannelFactory(object callbackObject, string endpointConfigurationName, EndpointAddress remoteAddress) 112: this(callbackObject, binding, (EndpointAddress)null) 122public DuplexChannelFactory(object callbackObject, Binding binding, EndpointAddress remoteAddress) 192public TChannel CreateChannel(InstanceContext callbackInstance, EndpointAddress address) 202public override TChannel CreateChannel(EndpointAddress address, Uri via) 207public virtual TChannel CreateChannel(InstanceContext callbackInstance, EndpointAddress address, Uri via) 269public static TChannel CreateChannel(object callbackObject, Binding binding, EndpointAddress endpointAddress) 274public static TChannel CreateChannel(object callbackObject, Binding binding, EndpointAddress endpointAddress, Uri via) 287public static TChannel CreateChannel(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress) 295public static TChannel CreateChannel(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress, Uri via)
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexClientBase.cs (2)
24protected DuplexClientBase(InstanceContext callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress) 28protected DuplexClientBase(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress)
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (33)
18private static EndpointAddress s_anonymousAddress; 128internal EndpointAddress(Uri newUri, EndpointAddress oldEndpointAddress) 219internal static EndpointAddress AnonymousAddress 421internal bool EndpointEquals(EndpointAddress endpointAddress) 473EndpointAddress address = obj as EndpointAddress; 537public static EndpointAddress ReadFrom(XmlDictionaryReader reader) 543internal static EndpointAddress ReadFrom(XmlDictionaryReader reader, out AddressingVersion version) 570EndpointAddress ea = ReadFromDriver(version, reader); 575public static EndpointAddress ReadFrom(XmlDictionaryReader reader, XmlDictionaryString localName, XmlDictionaryString ns) 581internal static EndpointAddress ReadFrom(XmlDictionaryReader reader, XmlDictionaryString localName, XmlDictionaryString ns, out AddressingVersion version) 608EndpointAddress ea = ReadFromDriver(version, reader); 613public static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlReader reader) 618public static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlReader reader, string localName, string ns) 627EndpointAddress ea = ReadFromDriver(addressingVersion, dictReader); 632public static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlDictionaryReader reader) 640EndpointAddress ea = ReadFromDriver(addressingVersion, reader); 645private static EndpointAddress ReadFrom(AddressingVersion addressingVersion, XmlDictionaryReader reader, XmlDictionaryString localName, XmlDictionaryString ns) 653EndpointAddress ea = ReadFromDriver(addressingVersion, reader); 658private static EndpointAddress ReadFromDriver(AddressingVersion addressingVersion, XmlDictionaryReader reader) 1239public static bool operator ==(EndpointAddress address1, EndpointAddress address2) 1249public static bool operator !=(EndpointAddress address1, EndpointAddress address2) 1269private EndpointAddress _epr; 1276public EndpointAddressBuilder(EndpointAddress address) 1325Fx.Assert(reader.Name == EndpointAddress.DummyName, "EndpointAddressBuilder: Expected dummy element not found"); 1338writer.WriteStartElement(EndpointAddress.DummyName, EndpointAddress.DummyNamespace); 1339EndpointAddress.Copy(writer, reader); 1359Fx.Assert(reader.Name == EndpointAddress.DummyName, "EndpointAddressBuilder: Expected dummy element not found"); 1369_extensionBuffer = EndpointAddress.ReadExtensions(reader, null, null, out identity, out tmp); 1380public EndpointAddress ToEndpointAddress()
FrameworkFork\System.ServiceModel\System\ServiceModel\FederatedMessageSecurityOverHttp.cs (4)
28private EndpointAddress _issuerAddress; 29private EndpointAddress _issuerMetadataAddress; 78public EndpointAddress IssuerAddress 85public EndpointAddress IssuerMetadataAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\IContextChannel.cs (2)
19EndpointAddress LocalAddress { get; } 22EndpointAddress RemoteAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (1)
39EndpointAddress targetAddress = initiatorRequirement.TargetAddress;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\IdentityVerifier.cs (9)
31public abstract bool TryGetIdentity(EndpointAddress reference, out EndpointIdentity identity); 33private static void AdjustAddress(ref EndpointAddress reference, Uri via) 42internal bool TryGetIdentity(EndpointAddress reference, Uri via, out EndpointIdentity identity) 48internal void EnsureOutgoingIdentity(EndpointAddress serviceReference, Uri via, AuthorizationContext authorizationContext) 54internal void EnsureOutgoingIdentity(EndpointAddress serviceReference, ReadOnlyCollection<IAuthorizationPolicy> authorizationPolicies) 64private void EnsureIdentity(EndpointAddress serviceReference, AuthorizationContext authorizationContext, String errorString) 87private Exception CreateIdentityCheckException(EndpointIdentity identity, AuthorizationContext authorizationContext, string errorString, EndpointAddress serviceReference) 158public override bool TryGetIdentity(EndpointAddress reference, out EndpointIdentity identity) 182private EndpointIdentity TryCreateDnsIdentity(EndpointAddress reference)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityProtocolFactory.cs (2)
693public SecurityProtocol CreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, bool isReturnLegSecurityRequired, TimeSpan timeout) 733protected abstract SecurityProtocol OnCreateSecurityProtocol(EndpointAddress target, Uri via, object listenerSecurityState, TimeSpan timeout);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (6)
380internal static string GetSpnFromIdentity(EndpointIdentity identity, EndpointAddress target) 409internal static string GetSpnFromTarget(EndpointAddress target) 883X509FindType findType, object findValue, EndpointAddress target) 893X509FindType findType, object findValue, EndpointAddress target, out X509Certificate2 certificate) 900X509FindType findType, object findValue, EndpointAddress target, bool throwIfMultipleOrNoMatch) 935X509FindType findType, object findValue, EndpointAddress target, int certCount)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\InitiatorServiceModelSecurityTokenRequirement.cs (2)
19public EndpointAddress TargetAddress 23return GetPropertyOrDefault<EndpointAddress>(TargetAddressProperty, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (8)
29public EndpointAddress IssuerAddress; 30public EndpointAddress IssuerMetadataAddress; 37private EndpointAddress _issuerAddress; 38private EndpointAddress _issuerMetadataAddress; 83public IssuedSecurityTokenParameters(string tokenType, EndpointAddress issuerAddress) 89public IssuedSecurityTokenParameters(string tokenType, EndpointAddress issuerAddress, Binding issuerBinding) 128public EndpointAddress IssuerAddress 140public EndpointAddress IssuerMetadataAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\ServiceModelSecurityTokenRequirement.cs (4)
118public EndpointAddress IssuerAddress 122return GetPropertyOrDefault<EndpointAddress>(IssuerAddressProperty, null); 203internal EndpointAddress DuplexClientLocalAddress 207return GetPropertyOrDefault<EndpointAddress>(duplexClientLocalAddressProperty, null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TrustDriver.cs (1)
155public abstract IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<IEndpointBehavior> channelBehaviors);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (10)
2271public virtual XmlElement CreateWsspIssuerElement(EndpointAddress issuerAddress, EndpointAddress issuerMetadataAddress) 2280EndpointAddress addressToSerialize; 2281addressToSerialize = 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;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
109public override IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<IEndpointBehavior> channelBehaviors)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (3)
205public override IChannelFactory<IRequestChannel> CreateFederationProxy(EndpointAddress address, Binding binding, KeyedByTypeCollection<IEndpointBehavior> channelBehaviors) 261public IRequestChannel CreateChannel(EndpointAddress address) 266public IRequestChannel CreateChannel(EndpointAddress address, Uri via)
Metadata\MetadaExchangeResolver.cs (3)
44public EndpointAddress EndpointAddress { get; private set; } 62EndpointAddress endpointAddress, 365private static MetadataExchangeResolver CreateMetadataExchangeClient(EndpointAddress endpointAddress)
Metadata\MetadataDocumentLoader.cs (2)
431EndpointAddress epr = await AsyncHelper.RunAsync(() => EndpointAddress.ReadFrom(dictionaryReader), cancellationToken).ConfigureAwait(false);