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