34 references to InnerChannel
System.ServiceModel.Discovery (34)
System\ServiceModel\Discovery\DiscoveryClientChannelBase.cs (1)
74
return this.
InnerChannel
.GetProperty<T>();
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (13)
27
if (this.
InnerChannel
== null)
31
return this.
InnerChannel
.LocalAddress;
49
return this.
InnerChannel
.BeginReceive(timeout, callback, state);
54
return this.
InnerChannel
.BeginReceive(callback, state);
59
return this.
InnerChannel
.BeginTryReceive(timeout, callback, state);
64
return this.
InnerChannel
.BeginWaitForMessage(timeout, callback, state);
69
return this.
InnerChannel
.EndReceive(result);
74
return this.
InnerChannel
.EndTryReceive(result, out message);
79
return this.
InnerChannel
.EndWaitForMessage(result);
84
return this.
InnerChannel
.Receive(timeout);
89
return this.
InnerChannel
.Receive();
94
return this.
InnerChannel
.TryReceive(timeout, out message);
99
return this.
InnerChannel
.WaitForMessage(timeout);
System\ServiceModel\Discovery\DiscoveryClientDuplexSessionChannel.cs (2)
24
if (this.
InnerChannel
== null)
29
return this.
InnerChannel
.Session;
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (7)
27
if (this.
InnerChannel
== null)
32
return this.
InnerChannel
.RemoteAddress;
40
if (this.
InnerChannel
== null)
45
return this.
InnerChannel
.Via;
51
return this.
InnerChannel
.BeginSend(message, timeout, callback, state);
61
this.
InnerChannel
.EndSend(result);
66
this.
InnerChannel
.Send(message, timeout);
System\ServiceModel\Discovery\DiscoveryClientOutputSessionChannel.cs (2)
24
if (this.
InnerChannel
== null)
29
return this.
InnerChannel
.Session;
System\ServiceModel\Discovery\DiscoveryClientRequestChannel.cs (7)
27
if (this.
InnerChannel
== null)
32
return this.
InnerChannel
.RemoteAddress;
40
if (this.
InnerChannel
== null)
45
return this.
InnerChannel
.Via;
51
return this.
InnerChannel
.BeginRequest(message, timeout, callback, state);
61
return this.
InnerChannel
.EndRequest(result);
66
return this.
InnerChannel
.Request(message, timeout);
System\ServiceModel\Discovery\DiscoveryClientRequestSessionChannel.cs (2)
24
if (this.
InnerChannel
== null)
29
return this.
InnerChannel
.Session;