3 writes to name
System.IdentityModel (3)
System\IdentityModel\Tokens\SamlSubject.cs (3)
68this.name = name; 86this.name = value; 277this.name = reader.ReadString();
9 references to name
System.IdentityModel (9)
System\IdentityModel\Tokens\SamlSubject.cs (9)
77get { return this.name; } 197if ((this.confirmationMethods.Count == 0) && (string.IsNullOrEmpty(name))) 209if (!string.IsNullOrEmpty(this.name)) 211this.claims.Add(new Claim(ClaimTypes.NameIdentifier, new SamlNameIdentifierClaimResource(this.name, this.nameQualifier, this.nameFormat), Rights.Identity)); 212this.claims.Add(new Claim(ClaimTypes.NameIdentifier, new SamlNameIdentifierClaimResource(this.name, this.nameQualifier, this.nameFormat), Rights.PossessProperty)); 279if (this.name == null) 333if ((this.confirmationMethods.Count == 0) && (string.IsNullOrEmpty(name))) 359if (this.name != null) 374writer.WriteString(this.name);