6 implementations of RemoteAddress
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
239public EndpointAddress RemoteAddress
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\RequestChannel.cs (1)
39public EndpointAddress RemoteAddress { get; }
System\ServiceModel\Channels\ServiceChannel.cs (1)
324public EndpointAddress RemoteAddress
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
810EndpointAddress IRequestChannel.RemoteAddress
System\ServiceModel\ClientBase.cs (1)
1178EndpointAddress IRequestChannel.RemoteAddress
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
209public EndpointAddress RemoteAddress => InnerChannel.RemoteAddress;
8 references to RemoteAddress
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
243return this.InnerChannel.RemoteAddress;
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (2)
262SecurityUtils.ThrowIfNegotiationFault(reply, channel.RemoteAddress); 300SecurityUtils.ThrowIfNegotiationFault(reply, channel.RemoteAddress);
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
444return channel.RemoteAddress;
System\ServiceModel\Channels\ServiceChannel.cs (1)
337return requestChannel.RemoteAddress;
System\ServiceModel\ClientBase.cs (1)
1180get { return ((IRequestChannel)_channel).RemoteAddress; }
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (1)
47get { return _channel.RemoteAddress; }
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
209public EndpointAddress RemoteAddress => InnerChannel.RemoteAddress;