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