1 write to allowedAuthenticators
System.ServiceModel (1)
System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
806
allowedAuthenticators
= new List<SecurityTokenAuthenticator>();
11 references to allowedAuthenticators
System.ServiceModel (11)
System\ServiceModel\Security\ReceiveSecurityHeader.cs (11)
809
allowedAuthenticators
.Add(this.primaryTokenAuthenticator);
813
allowedAuthenticators
.Add(this.DerivedTokenAuthenticator);
846
allowedAuthenticators
.Add(spec.TokenAuthenticator);
1512
if (this.
allowedAuthenticators
== null)
1516
for (int i = 0; i < this.
allowedAuthenticators
.Count; ++i)
1518
if (
allowedAuthenticators
[i] is TAuthenticator)
1520
TAuthenticator result = (TAuthenticator)
allowedAuthenticators
[i];
1523
this.
allowedAuthenticators
.RemoveAt(i);
1634
SecurityToken token = ReadToken(reader, this.CombinedUniversalTokenResolver,
allowedAuthenticators
, out usedTokenAuthenticator);
1649
this.
allowedAuthenticators
.Remove(usedTokenAuthenticator);
1661
this.
allowedAuthenticators
.Add(this.pendingSupportingTokenAuthenticator);