5 writes to name
System.IdentityModel (5)
System\IdentityModel\Tokens\SamlAttribute.cs (5)
40this.name = StringUtil.OptimizeString(attributeName); 72this.name = claim.ClaimType; 77this.name = StringUtil.OptimizeString(claim.ClaimType.Substring(lastSlashIndex + 1, claim.ClaimType.Length - (lastSlashIndex + 1))); 94this.name = StringUtil.OptimizeString(value); 227this.name = reader.GetAttribute(dictionary.AttributeName, null);
8 references to name
System.IdentityModel (8)
System\IdentityModel\Tokens\SamlAttribute.cs (8)
42this.claimType = string.IsNullOrEmpty(this.nameSpace) ? this.name : this.nameSpace + "/" + this.name; 85get { return this.name; } 206if (string.IsNullOrEmpty(this.name)) 228if (string.IsNullOrEmpty(this.name)) 235this.claimType = string.IsNullOrEmpty(this.nameSpace) ? this.name : this.nameSpace + "/" + this.name; 272writer.WriteString(this.name);