18 implementations of RemoteAddress
System.ServiceModel (15)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
2915
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\DatagramAdapter.cs (1)
1145
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\DuplexChannel.cs (1)
26
public abstract EndpointAddress
RemoteAddress
{ get; }
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
136
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
190
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\OutputChannel.cs (1)
19
public abstract EndpointAddress
RemoteAddress
{ get; }
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (1)
70
public override EndpointAddress
RemoteAddress
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (1)
74
public override EndpointAddress
RemoteAddress
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1031
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\ServiceChannel.cs (1)
367
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\TransactionChannelFactory.cs (1)
225
public EndpointAddress
RemoteAddress
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
519
public EndpointAddress
RemoteAddress
System\ServiceModel\ClientBase.cs (1)
1358
EndpointAddress IOutputChannel.
RemoteAddress
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1129
public EndpointAddress
RemoteAddress
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
3601
public EndpointAddress
RemoteAddress
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpDuplexChannel.cs (1)
35
public virtual EndpointAddress
RemoteAddress
System\ServiceModel\Channels\UdpOutputChannel.cs (1)
66
public override EndpointAddress
RemoteAddress
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (1)
23
public EndpointAddress
RemoteAddress
18 references to RemoteAddress
System.ServiceModel (17)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1259
get { return this.innerChannel.
RemoteAddress
; }
2917
get { return InnerChannel.
RemoteAddress
; }
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
351
return channel.
RemoteAddress
;
System\ServiceModel\Channels\ContextOutputChannelBase.cs (1)
20
get { return this.InnerChannel.
RemoteAddress
; }
System\ServiceModel\Channels\DatagramAdapter.cs (1)
1135
this.remoteAddress = inner.
RemoteAddress
;
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
192
get { return this.innerOutputChannel.
RemoteAddress
; }
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
285
get { return this.innerChannel.
RemoteAddress
; }
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1033
get { return this.innerDuplexChannel.
RemoteAddress
; }
System\ServiceModel\Channels\ServiceChannel.cs (1)
373
return outputChannel.
RemoteAddress
;
System\ServiceModel\Channels\TransactionChannelFactory.cs (1)
229
return InnerChannel.
RemoteAddress
;
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
523
return InnerChannel.
RemoteAddress
;
System\ServiceModel\ClientBase.cs (1)
1360
get { return ((IOutputChannel)this.channel).
RemoteAddress
; }
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (4)
151
get { return this.channel.
RemoteAddress
; }
257
EndpointAddress address = this.channel.
RemoteAddress
?? this.channel.LocalAddress;
648
EndpointAddress address = this.channel.
RemoteAddress
;
1131
get { return this.innerChannel.
RemoteAddress
; }
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
53
get { return this.channel.
RemoteAddress
; }
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (1)
32
return this.InnerChannel.
RemoteAddress
;