1 write to Name
System.IdentityModel (1)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (1)
2602attribute.Name = reader.GetAttribute(SamlConstants.AttributeNames.AttributeName, null);
9 references to Name
System.IdentityModel (9)
System\IdentityModel\Tokens\SamlAttributeKeyComparer.cs (1)
39_name = attribute.Name;
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (8)
1256claimType = attr.Name; 1258else if (StringComparer.Ordinal.Equals(attr.Name, SamlConstants.ElementNames.NameIdentifier)) 1269claimType = attr.Namespace + "/" + attr.Name; 1273claimType = attr.Namespace + attr.Name; 1456string claimType = string.IsNullOrEmpty(innerAttribute.Namespace) ? innerAttribute.Name : innerAttribute.Namespace + "/" + innerAttribute.Name; 2603if (string.IsNullOrEmpty(attribute.Name)) 2777writer.WriteAttributeString(SamlConstants.AttributeNames.AttributeName, null, attribute.Name);