3 instantiations of CommunicationObjectManager
System.ServiceModel (3)
System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
99this.channels = new CommunicationObjectManager<IChannel>(this.ThisLock);
System\ServiceModel\Channels\HttpChannelListener.cs (1)
857this.webSocketLifetimeManager = new CommunicationObjectManager<ServerWebSocketTransportDuplexSessionChannel>(this.ThisLock);
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
91this.channels = new CommunicationObjectManager<IChannel>(this.ThisLock);
6 references to CommunicationObjectManager
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelFactoryBase.cs (1)
89CommunicationObjectManager<IChannel> channels;
System\ServiceModel\Channels\HttpChannelListener.cs (3)
826CommunicationObjectManager<ServerWebSocketTransportDuplexSessionChannel> webSocketLifetimeManager; 1411CommunicationObjectManager<TCommunicationObject> communicationObjectManager; 1415public LifetimeWrappedCloseAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, CommunicationObjectManager<TCommunicationObject> communicationObjectManager, ChainedBeginHandler begin1, ChainedEndHandler end1, ICommunicationObject[] communicationObjects)
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (2)
25CommunicationObjectManager<IChannel> channels; 151internal CommunicationObjectManager<IChannel> Channels