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