12 implementations of RemoteAddress
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\OutputChannel.cs (1)
18
public abstract EndpointAddress
RemoteAddress
{ get; }
System.ServiceModel.Primitives (9)
System\ServiceModel\Channels\ClientReliableDuplexSessionChannel.cs (1)
48
public override EndpointAddress
RemoteAddress
=> Binder.RemoteAddress;
System\ServiceModel\Channels\DuplexChannel.cs (1)
18
public abstract EndpointAddress
RemoteAddress
{ get; }
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
256
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\OutputChannel.cs (1)
18
public abstract EndpointAddress
RemoteAddress
{ get; }
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
66
public override EndpointAddress
RemoteAddress
System\ServiceModel\Channels\ServiceChannel.cs (1)
324
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
720
EndpointAddress IOutputChannel.
RemoteAddress
System\ServiceModel\ClientBase.cs (1)
1163
EndpointAddress IOutputChannel.
RemoteAddress
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1082
public EndpointAddress
RemoteAddress
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
192
public EndpointAddress
RemoteAddress
=> InnerChannel.RemoteAddress;
273
public EndpointAddress
RemoteAddress
=> InnerChannel.RemoteAddress;
10 references to RemoteAddress
System.ServiceModel.Primitives (8)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
263
return channel.
RemoteAddress
;
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
258
get { return _innerOutputChannel.
RemoteAddress
; }
System\ServiceModel\Channels\ServiceChannel.cs (1)
331
return outputChannel.
RemoteAddress
;
System\ServiceModel\ClientBase.cs (1)
1165
get { return ((IOutputChannel)_channel).
RemoteAddress
; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (3)
135
get { return _channel.
RemoteAddress
; }
237
EndpointAddress address = _channel.
RemoteAddress
?? _channel.LocalAddress;
1084
get { return _innerChannel.
RemoteAddress
; }
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
51
get { return _channel.
RemoteAddress
; }
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingOnCloseBindingElement.cs (2)
192
public EndpointAddress RemoteAddress => InnerChannel.
RemoteAddress
;
273
public EndpointAddress RemoteAddress => InnerChannel.
RemoteAddress
;