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