2 writes to AttributeValueXsiType
System.IdentityModel (2)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (2)
717
attribute.
AttributeValueXsiType
= claim.ValueType;
2662
attribute.
AttributeValueXsiType
= String.Concat(attributeValueXsiTypePrefix, "#", attributeValueXsiTypeSuffix);
7 references to AttributeValueXsiType
System.IdentityModel (7)
System\IdentityModel\Tokens\SamlAttributeKeyComparer.cs (1)
42
_valueType = attribute.
AttributeValueXsiType
?? String.Empty;
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (6)
1305
claimValueType = SamlAttribute.
AttributeValueXsiType
;
1474
claimValueType = SamlAttribute.
AttributeValueXsiType
;
2788
if (SamlAttribute != null && !StringComparer.Ordinal.Equals(SamlAttribute.
AttributeValueXsiType
, ClaimValueTypes.String))
2792
int indexOfHash = SamlAttribute.
AttributeValueXsiType
.IndexOf('#');
2793
xsiTypePrefix = SamlAttribute.
AttributeValueXsiType
.Substring(0, indexOfHash);
2794
xsiTypeSuffix = SamlAttribute.
AttributeValueXsiType
.Substring(indexOfHash + 1);