2 writes to channels
System.ServiceModel (2)
System\ServiceModel\InstanceContext.cs (2)
63this.channels = new ServiceChannelManager(this); 81this.channels = new ServiceChannelManager(this, NotifyEmptyCallback);
15 references to channels
System.ServiceModel (15)
System\ServiceModel\InstanceContext.cs (15)
190return channels.IncomingChannels; 200return this.channels.IsBusy; 218return channels.OutgoingChannels; 315channels.Abort(); 321return channels.BeginCloseInput(timeout, callback, state); 327this.channels.IncrementActivityCount(); 337this.channels.AddIncomingChannel(proxy); 350this.channels.RemoveChannel(proxy); 401channels.CloseInput(timeout); 406channels.EndCloseInput(result); 558channels.Close(timeout); 622this.channels.DecrementActivityCount(); 628this.channels.RemoveChannel((IChannel)channel.Proxy); 651IAsyncResult result = this.instanceContext.channels.BeginClose(this.timeoutHelper.RemainingTime(), PrepareAsyncCompletion(new AsyncCompletion(CloseChannelsCallback)), this); 666this.instanceContext.channels.EndClose(result);