22 references to InnerChannel
Extensibility.MessageInterceptor.IntegrationTests (22)
InterceptingChannelBase.cs (1)
47return this.InnerChannel.GetProperty<T>();
InterceptingChannelFactory.cs (8)
128return this.InnerChannel.RemoteAddress; 136return this.InnerChannel.Via; 167this.InnerChannel.Send(message, timeout); 243return this.InnerChannel.RemoteAddress; 251return this.InnerChannel.Via; 284reply = this.InnerChannel.Request(message); 304IAsyncResult requestResult = channel.InnerChannel.BeginRequest(message, timeout, requestCallback, this); 318replyMessage = channel.InnerChannel.EndRequest(result);
InterceptingDuplexChannel.cs (13)
25return this.InnerChannel.LocalAddress; 46message = this.InnerChannel.Receive(timeout); 78result = this.InnerChannel.TryReceive(timeout, out message); 102return this.InnerChannel.WaitForMessage(timeout); 107return this.InnerChannel.BeginWaitForMessage(timeout, callback, state); 112return this.InnerChannel.EndWaitForMessage(result); 206this.innerChannel = channel.InnerChannel; 240this.innerChannel = channel.InnerChannel; 276return this.InnerChannel.RemoteAddress; 284return this.InnerChannel.Via; 296this.InnerChannel.Send(message, timeout); 307return this.InnerChannel.BeginSend(message, timeout, callback, state); 312this.InnerChannel.EndSend(result);