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