2 writes to NameFormat
System.IdentityModel (2)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (2)
589samlSubject.NameFormat = identityClaim.Properties[ClaimProperties.SamlNameIdentifierFormat]; 2318subject.NameFormat = reader.GetAttribute(SamlConstants.AttributeNames.NameIdentifierFormat, null);
6 references to NameFormat
System.IdentityModel (6)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (6)
1366if (samlSubject.NameFormat != null) 1368claim.Properties[ClaimProperties.SamlNameIdentifierFormat] = samlSubject.NameFormat; 2411if (!string.IsNullOrEmpty(subject.NameFormat)) 2413writer.WriteAttributeString(SamlConstants.AttributeNames.NameIdentifierFormat, null, subject.NameFormat); 3553string requiredSubjectFormat = subjects[0].NameFormat; 3559!StringComparer.Ordinal.Equals(subject.NameFormat, requiredSubjectFormat) ||