1 write to Namespace
System.IdentityModel (1)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (1)
2608attribute.Namespace = reader.GetAttribute(SamlConstants.AttributeNames.AttributeNamespace, null);
10 references to Namespace
System.IdentityModel (10)
System\IdentityModel\Tokens\SamlAttributeKeyComparer.cs (1)
41_namespace = attribute.Namespace ?? String.Empty;
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (9)
1254if (string.IsNullOrEmpty(attr.Namespace)) 1266int lastSlashIndex = attr.Namespace.LastIndexOf('/'); 1267if ((lastSlashIndex == -1) || (!(lastSlashIndex == attr.Namespace.Length - 1))) 1269claimType = attr.Namespace + "/" + attr.Name; 1273claimType = attr.Namespace + attr.Name; 1456string claimType = string.IsNullOrEmpty(innerAttribute.Namespace) ? innerAttribute.Name : innerAttribute.Namespace + "/" + innerAttribute.Name; 2609if (string.IsNullOrEmpty(attribute.Namespace)) 2778writer.WriteAttributeString(SamlConstants.AttributeNames.AttributeNamespace, null, attribute.Namespace);