4 writes to typedAttributeValue
System.Private.Xml (4)
System\Xml\Core\XsdValidatingReader.cs (2)
33
typedAttributeValue
= null;
2176
attributePSVI.
typedAttributeValue
= _validator.ValidateAttribute(localName, ns, _valueGetter, attributePSVI.attributeSchemaInfo);
System\Xml\Schema\XmlSchemaValidator.cs (2)
1065
attrValidInfo.
typedAttributeValue
= simpleValue.TypedValue;
1069
attrValidInfo.
typedAttributeValue
= attdef.DefaultValueTyped;
5 references to typedAttributeValue
System.Private.Xml (5)
System\Xml\Core\XsdValidatingReader.cs (2)
2370
if (_attributePSVI != null && _attributePSVI.
typedAttributeValue
!= null)
2378
return ReturnBoxedValue(_attributePSVI.
typedAttributeValue
, AttributeSchemaInfo.XmlType!, unwrapTypedValue);
System\Xml\Core\XsdValidatingReaderAsync.cs (2)
696
if (_attributePSVI != null && _attributePSVI.
typedAttributeValue
!= null)
704
return (originalStringValue, ReturnBoxedValue(_attributePSVI.
typedAttributeValue
, AttributeSchemaInfo.XmlType!, unwrapTypedValue));
System\Xml\Schema\XmlSchemaValidator.cs (1)
1076
attrData.RawValue = attSchemaInfo.XmlType!.ValueConverter.ToString(attrValidInfo.
typedAttributeValue
);