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