1 write to Namespace
System.IdentityModel (1)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (1)
2608
attribute.
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)
1254
if (string.IsNullOrEmpty(attr.
Namespace
))
1266
int lastSlashIndex = attr.
Namespace
.LastIndexOf('/');
1267
if ((lastSlashIndex == -1) || (!(lastSlashIndex == attr.
Namespace
.Length - 1)))
1269
claimType = attr.
Namespace
+ "/" + attr.Name;
1273
claimType = attr.
Namespace
+ attr.Name;
1456
string claimType = string.IsNullOrEmpty(innerAttribute.
Namespace
) ? innerAttribute.Name : innerAttribute.
Namespace
+ "/" + innerAttribute.Name;
2609
if (string.IsNullOrEmpty(attribute.
Namespace
))
2778
writer.WriteAttributeString(SamlConstants.AttributeNames.AttributeNamespace, null, attribute.
Namespace
);