18 implementations of LocalAddress
System.ServiceModel (17)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
3206public EndpointAddress LocalAddress
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
29public EndpointAddress LocalAddress
System\ServiceModel\Channels\DuplexChannel.cs (1)
21public virtual EndpointAddress LocalAddress
System\ServiceModel\Channels\InputChannel.cs (1)
21public EndpointAddress LocalAddress
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
131public EndpointAddress LocalAddress
System\ServiceModel\Channels\LayeredChannelFactory.cs (2)
87public virtual EndpointAddress LocalAddress 185public override EndpointAddress LocalAddress
System\ServiceModel\Channels\MsmqInputChannelBase.cs (1)
32public EndpointAddress LocalAddress
System\ServiceModel\Channels\OneWayChannelListener.cs (2)
91public EndpointAddress LocalAddress 559public EndpointAddress LocalAddress
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (1)
50public override EndpointAddress LocalAddress
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
716public EndpointAddress LocalAddress
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
901public EndpointAddress LocalAddress
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
270public EndpointAddress LocalAddress
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
48public EndpointAddress LocalAddress
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1124public EndpointAddress LocalAddress
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3164public EndpointAddress LocalAddress
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
23public EndpointAddress LocalAddress
21 references to LocalAddress
System.ServiceModel (20)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1252: base(channelManager, innerChannel.LocalAddress) 3208get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (1)
339return channel.LocalAddress;
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (1)
31get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ContextInputChannelBase.cs (1)
25get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\InputChannel.cs (2)
243if (channel.LocalAddress != null) 245return new TimeoutException(SR.GetString(SR.ReceiveTimedOut, channel.LocalAddress.Uri.AbsoluteUri, timeout));
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
133get { return this.innerInputChannel.LocalAddress; }
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
89get { return InnerChannel.LocalAddress; }
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
561get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (1)
119return this.InnerChannel.LocalAddress;
System\ServiceModel\Channels\SecurityChannelFactory.cs (1)
720return this.InnerDuplexChannel.LocalAddress;
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
903get { return this.InnerChannel.LocalAddress; }
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
694EndpointAddress localAddress = (channel == null) ? null : channel.LocalAddress;
System\ServiceModel\Channels\TransactionChannelListener.cs (1)
274return InnerChannel.LocalAddress;
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
257return input.LocalAddress;
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (3)
132get { return this.channel.LocalAddress; } 257EndpointAddress address = this.channel.RemoteAddress ?? this.channel.LocalAddress; 1126get { return this.innerChannel.LocalAddress; }
System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
46get { return this.channel.LocalAddress; }
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (1)
31return this.InnerChannel.LocalAddress;