7 implementations of LocalAddress
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3328public EndpointAddress LocalAddress
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
21public EndpointAddress LocalAddress
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
21public EndpointAddress LocalAddress
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
115public EndpointAddress LocalAddress
System\ServiceModel\Channels\ReplyChannel.cs (1)
21public EndpointAddress LocalAddress
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1208public EndpointAddress LocalAddress
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
365public EndpointAddress LocalAddress
13 references to LocalAddress
System.ServiceModel (11)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3330get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ContextReplyChannel.cs (1)
23get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ContextReplySessionChannel.cs (1)
23get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
93get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ReplyChannel.cs (2)
149if (channel.LocalAddress != null) 151return new TimeoutException(SR.GetString(SR.ReceiveRequestTimedOut, channel.LocalAddress.Uri.AbsoluteUri, timeout));
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
1210get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
907EndpointAddress localAddress = (channel == null) ? null : channel.LocalAddress;
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
369return InnerChannel.LocalAddress;
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
263return reply.LocalAddress;
System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (1)
46get { return this.channel.LocalAddress; }
System.ServiceModel.Channels (2)
System\ServiceModel\Channels\UdpReplyChannel.cs (2)
181if (channel.LocalAddress != null) 183return new TimeoutException(SR.ReceiveRequestTimedOut(channel.LocalAddress.Uri.AbsoluteUri, timeout));