5 implementations of 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)
1198EndpointAddress IRequestChannel.RemoteAddress
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
209public EndpointAddress RemoteAddress => InnerChannel.RemoteAddress;
7 references to RemoteAddress
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (2)
248SecurityUtils.ThrowIfNegotiationFault(reply, channel.RemoteAddress); 286SecurityUtils.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)
1200get { 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;