2 writes to AttributeValueXsiType
System.IdentityModel (2)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (2)
717attribute.AttributeValueXsiType = claim.ValueType; 2662attribute.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)
1305claimValueType = SamlAttribute.AttributeValueXsiType; 1474claimValueType = SamlAttribute.AttributeValueXsiType; 2788if (SamlAttribute != null && !StringComparer.Ordinal.Equals(SamlAttribute.AttributeValueXsiType, ClaimValueTypes.String)) 2792int indexOfHash = SamlAttribute.AttributeValueXsiType.IndexOf('#'); 2793xsiTypePrefix = SamlAttribute.AttributeValueXsiType.Substring(0, indexOfHash); 2794xsiTypeSuffix = SamlAttribute.AttributeValueXsiType.Substring(indexOfHash + 1);