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