2 implementations of LocalAddress
System.ServiceModel (2)
System\ServiceModel\Channels\ServiceChannel.cs (1)
291public EndpointAddress LocalAddress
System\ServiceModel\ClientBase.cs (1)
1222EndpointAddress IContextChannel.LocalAddress
13 references to LocalAddress
System.ServiceModel (1)
System\ServiceModel\ClientBase.cs (1)
1224get { return ((IContextChannel)this.channel).LocalAddress; }
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
1300OperationContext.Current.OutgoingMessageHeaders.ReplyTo = clientChannel.LocalAddress;
System.ServiceModel.Routing (9)
System\ServiceModel\Routing\ProcessMessagesAsyncResult.cs (1)
166throw FxTrace.Exception.AsError(new ConfigurationErrorsException(SR.ErrorHandlingNotSupportedTxNoRC(messageRpc.OperationContext.Channel.LocalAddress)));
System\ServiceModel\Routing\ProcessRequestAsyncResult.cs (2)
47throw FxTrace.Exception.AsError(new ConfigurationErrorsException(SR.ReqReplyMulticastNotSupported(this.messageRpc.OperationContext.Channel.LocalAddress), matchesException)); 70throw FxTrace.Exception.AsError(new ConfigurationErrorsException(SR.ErrorHandlingNotSupportedReqReplyTxn(this.messageRpc.OperationContext.Channel.LocalAddress)));
System\ServiceModel\Routing\RoutingBehavior.cs (1)
240RoutingUtilities.Abort(channel, channel.LocalAddress);
System\ServiceModel\Routing\RoutingChannelExtension.cs (1)
257RoutingUtilities.Abort(this.channel, this.channel.LocalAddress);
System\ServiceModel\Routing\RoutingService.cs (4)
280TD.RoutingServiceProcessingFailure(this.eventTraceActivity, OperationContext.Current.Channel.LocalAddress.ToString(), exception); 297TD.RoutingServiceProcessingFailure(this.eventTraceActivity, OperationContext.Current.Channel.LocalAddress.ToString(), exception); 314TD.RoutingServiceProcessingFailure(this.eventTraceActivity, OperationContext.Current.Channel.LocalAddress.ToString(), exception); 331TD.RoutingServiceProcessingFailure(this.eventTraceActivity, OperationContext.Current.Channel.LocalAddress.ToString(), exception);
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpPage.cs (2)
51Uri baseUri = UriTemplate.RewriteUri(OperationContext.Current.Channel.LocalAddress.Uri, WebOperationContext.Current.IncomingRequest.Headers[HttpRequestHeader.Host]); 73Uri baseUri = UriTemplate.RewriteUri(OperationContext.Current.Channel.LocalAddress.Uri, WebOperationContext.Current.IncomingRequest.Headers[HttpRequestHeader.Host]);