2 writes to channelAcceptor
System.ServiceModel (2)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (2)
679this.channelAcceptor = new SecuritySessionChannelAcceptor<IReplySessionChannel>(this.SecurityChannelListener, listenerSecurityState); 683this.channelAcceptor = new SecuritySessionChannelAcceptor<IDuplexSessionChannel>(this.SecurityChannelListener, listenerSecurityState);
7 references to channelAcceptor
System.ServiceModel (7)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (7)
567return this.pendingSessions1.Count + this.pendingSessions2.Count + ((IInputQueueChannelAcceptor)this.channelAcceptor).PendingCount; 671if (this.channelAcceptor != null) 689return (IChannelAcceptor<TChannel>)this.channelAcceptor; 1043if (this.settings.channelAcceptor is SecuritySessionChannelAcceptor<IReplySessionChannel>) 1045SecuritySessionChannelAcceptor<IReplySessionChannel> replyAcceptor = ((SecuritySessionChannelAcceptor<IReplySessionChannel>)this.settings.channelAcceptor); 1055else if (this.settings.channelAcceptor is SecuritySessionChannelAcceptor<IDuplexSessionChannel>) 1057SecuritySessionChannelAcceptor<IDuplexSessionChannel> duplexAcceptor = ((SecuritySessionChannelAcceptor<IDuplexSessionChannel>)this.settings.channelAcceptor);