1 write to innerChannel
System.ServiceModel (1)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1110this.innerChannel = innerChannel;
36 references to innerChannel
System.ServiceModel (36)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (36)
1126get { return this.innerChannel.LocalAddress; } 1131get { return this.innerChannel.RemoteAddress; } 1136get { return this.innerChannel.Via; } 1141get { return this.innerChannel.Session; } 1146get { return this.innerChannel.State; } 1151add { this.innerChannel.Closing += value; } 1152remove { this.innerChannel.Closing -= value; } 1157add { this.innerChannel.Closed += value; } 1158remove { this.innerChannel.Closed -= value; } 1163add { this.innerChannel.Faulted += value; } 1164remove { this.innerChannel.Faulted -= value; } 1169add { this.innerChannel.Opened += value; } 1170remove { this.innerChannel.Opened -= value; } 1175add { this.innerChannel.Opening += value; } 1176remove { this.innerChannel.Opening -= value; } 1183IDefaultCommunicationTimeouts defaultTimeouts = this.innerChannel as IDefaultCommunicationTimeouts; 1200IDefaultCommunicationTimeouts defaultTimeouts = this.innerChannel as IDefaultCommunicationTimeouts; 1225result = this.innerChannel.BeginReceive(TimeSpan.MaxValue, receiveAsyncCallback, this); 1274message = this.innerChannel.EndReceive(result); 1323result = this.innerChannel.BeginClose(closeInnerChannelCallback, this); 1332this.innerChannel.Abort(); 1363this.innerChannel.EndClose(result); 1372this.innerChannel.Abort(); 1444return this.innerChannel.GetProperty<T>(); 1449this.innerChannel.Abort(); 1467this.innerChannel.Close(timeout); 1490return this.innerChannel.BeginClose(timeout, callback, state); 1503this.innerChannel.EndClose(result); 1520this.innerChannel.Open(); 1526this.innerChannel.Open(timeout); 1532return this.innerChannel.BeginOpen(callback, state); 1537return this.innerChannel.BeginOpen(timeout, callback, state); 1542this.innerChannel.EndOpen(result); 1558return this.innerChannel.BeginSend(message, callback, state); 1563return this.innerChannel.BeginSend(message, timeout, callback, state); 1568this.innerChannel.EndSend(result);