2 writes to Name
System.IdentityModel (2)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (2)
585samlSubject.Name = identityClaim.Value; 2322subject.Name = reader.ReadElementString();
8 references to Name
System.IdentityModel (8)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (8)
1362if (!string.IsNullOrEmpty(samlSubject.Name)) 1364Claim claim = new Claim(ClaimTypes.NameIdentifier, samlSubject.Name, ClaimValueTypes.String, issuer); 2324if (string.IsNullOrEmpty(subject.Name)) 2374if ((subject.ConfirmationMethods.Count == 0) && (string.IsNullOrEmpty(subject.Name))) 2408if (!string.IsNullOrEmpty(subject.Name)) 2419writer.WriteString(subject.Name); 3552string requiredSubjectName = subjects[0].Name; 3558if (!StringComparer.Ordinal.Equals(subject.Name, requiredSubjectName) ||