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)
365string uri = serviceChannel.RemoteAddress == null ? String.Empty : serviceChannel.RemoteAddress.ToString();
System\ServiceModel\Channels\ServiceChannel.cs (7)
716if (this.RemoteAddress != null && this.RemoteAddress.Uri != null) 718remoteAddress = this.RemoteAddress.Uri.AbsoluteUri; 941EndpointAddress address = this.RemoteAddress ?? this.LocalAddress; 1057if (this.RemoteAddress != null && this.RemoteAddress.Uri != null) 1059remoteAddress = this.RemoteAddress.Uri.AbsoluteUri;
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
944EndpointAddress remoteAddress = rpc.Channel.RemoteAddress;