15 references to attributeValues
System.IdentityModel (15)
System\IdentityModel\Tokens\SamlAttribute.cs (15)
49this.attributeValues.Add(value); 52if (this.attributeValues.Count == 0) 80this.attributeValues.Add(claim.Resource as string); 115get { return this.attributeValues; } 179this.attributeValues.MakeReadOnly(); 189List<Claim> tempClaims = new List<Claim>(this.attributeValues.Count); 191for (int i = 0; i < this.attributeValues.Count; i++) 193if (this.attributeValues[i] == null) 196tempClaims.Add(new Claim(this.claimType, this.attributeValues[i], Rights.PossessProperty)); 212if (this.attributeValues.Count == 0) 243this.attributeValues.Add(attrValue); 249if (this.attributeValues.Count == 0) 278for (int i = 0; i < this.attributeValues.Count; i++) 280if (this.attributeValues[i] == null) 283writer.WriteElementString(dictionary.PreferredPrefix.Value, dictionary.AttributeValue, dictionary.Namespace, this.attributeValues[i]);