4 writes to typedAttributeValue
System.Xml (4)
System\Xml\Core\XsdValidatingReader.cs (2)
35
typedAttributeValue
= null;
1699
attributePSVI.
typedAttributeValue
= validator.ValidateAttribute(localName, ns, valueGetter, attributePSVI.attributeSchemaInfo);
System\Xml\Schema\XmlSchemaValidator.cs (2)
925
attrValidInfo.
typedAttributeValue
= simpleValue.TypedValue;
928
attrValidInfo.
typedAttributeValue
= attdef.DefaultValueTyped;
5 references to typedAttributeValue
System.Xml (5)
System\Xml\Core\XsdValidatingReader.cs (2)
1854
if ( attributePSVI != null && attributePSVI.
typedAttributeValue
!= null ) {
1860
return ReturnBoxedValue( attributePSVI.
typedAttributeValue
, AttributeSchemaInfo.XmlType, unwrapTypedValue );
System\Xml\Core\XsdValidatingReaderAsync.cs (2)
566
if ( attributePSVI != null && attributePSVI.
typedAttributeValue
!= null ) {
572
tuple = new Tuple<string, object>(originalStringValue, ReturnBoxedValue( attributePSVI.
typedAttributeValue
, AttributeSchemaInfo.XmlType, unwrapTypedValue ));
System\Xml\Schema\XmlSchemaValidator.cs (1)
934
attrData.RawValue = attSchemaInfo.XmlType.ValueConverter.ToString(attrValidInfo.
typedAttributeValue
);