1 write to settings
System.ServiceModel (1)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
997
this.
settings
= settings;
13 references to settings
System.ServiceModel (13)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (13)
1026
lock (this.
settings
.ThisLock)
1028
if (this.
settings
.communicationObject.State != CommunicationState.Opened)
1039
if (!this.
settings
.RemovePendingSession(this.sessionToken.ContextId))
1043
if (this.
settings
.channelAcceptor is SecuritySessionChannelAcceptor<IReplySessionChannel>)
1045
SecuritySessionChannelAcceptor<IReplySessionChannel> replyAcceptor = ((SecuritySessionChannelAcceptor<IReplySessionChannel>)this.
settings
.channelAcceptor);
1046
SecurityReplySessionChannel replySessionChannel = new SecurityReplySessionChannel(this.
settings
,
1050
this.
settings
.SettingsLifetimeManager);
1051
settings
.AddSessionChannel(this.sessionToken.ContextId, replySessionChannel);
1055
else if (this.
settings
.channelAcceptor is SecuritySessionChannelAcceptor<IDuplexSessionChannel>)
1057
SecuritySessionChannelAcceptor<IDuplexSessionChannel> duplexAcceptor = ((SecuritySessionChannelAcceptor<IDuplexSessionChannel>)this.
settings
.channelAcceptor);
1058
ServerSecurityDuplexSessionChannel duplexSessionChannel = new ServerSecurityDuplexSessionChannel(this.
settings
,
1062
this.
settings
.SettingsLifetimeManager);
1063
settings
.AddSessionChannel(this.sessionToken.ContextId, duplexSessionChannel);