6 implementations of RemoteAddress
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
189public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OutputChannel.cs (1)
21public abstract EndpointAddress RemoteAddress { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
359public EndpointAddress RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
705EndpointAddress IOutputChannel.RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
766EndpointAddress IOutputChannel.RemoteAddress
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1063public EndpointAddress RemoteAddress
7 references to RemoteAddress
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
191get { return _innerOutputChannel.RemoteAddress; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
365return outputChannel.RemoteAddress;
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
768get { return ((IOutputChannel)_channel).RemoteAddress; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (3)
148get { return _channel.RemoteAddress; } 247EndpointAddress address = _channel.RemoteAddress ?? _channel.LocalAddress; 1065get { return _innerChannel.RemoteAddress; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
52get { return _channel.RemoteAddress; }