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