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