1 write to innerChannel
System.ServiceModel (1)
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
105this.innerChannel = innerChannel;
13 references to innerChannel
System.ServiceModel (13)
System\ServiceModel\Channels\OneWayChannelFactory.cs (13)
112get { return this.innerChannel.RemoteAddress; } 117get { return this.innerChannel.Via; } 122this.innerChannel.Abort(); 127this.innerChannel.Open(timeout); 132return this.innerChannel.BeginOpen(timeout, callback, state); 137this.innerChannel.EndOpen(result); 142this.innerChannel.Close(timeout); 147return this.innerChannel.BeginClose(timeout, callback, state); 152this.innerChannel.EndClose(result); 161result = this.innerChannel.GetProperty<T>(); 181Message response = this.innerChannel.Request(message, timeout); 190return this.innerChannel.BeginRequest(message, timeout, callback, state); 195Message response = this.innerChannel.EndRequest(result);