Implemented interface members:
property
RemoteAddress
System.ServiceModel.IContextChannel.RemoteAddress
property
RemoteAddress
System.ServiceModel.Channels.IOutputChannel.RemoteAddress
property
RemoteAddress
System.ServiceModel.Channels.IRequestChannel.RemoteAddress
10 references to RemoteAddress
System.ServiceModel (10)
System\ServiceModel\Administration\ServiceInstanceProvider.cs (2)
365
string uri = serviceChannel.
RemoteAddress
== null ? String.Empty : serviceChannel.
RemoteAddress
.ToString();
System\ServiceModel\Channels\ServiceChannel.cs (7)
716
if (this.
RemoteAddress
!= null && this.
RemoteAddress
.Uri != null)
718
remoteAddress = this.
RemoteAddress
.Uri.AbsoluteUri;
941
EndpointAddress address = this.
RemoteAddress
?? this.LocalAddress;
1057
if (this.
RemoteAddress
!= null && this.
RemoteAddress
.Uri != null)
1059
remoteAddress = this.
RemoteAddress
.Uri.AbsoluteUri;
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
944
EndpointAddress remoteAddress = rpc.Channel.
RemoteAddress
;