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