4 writes to typedAttributeValue
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (2)
38typedAttributeValue = null; 2071attributePSVI.typedAttributeValue = _validator.ValidateAttribute(localName, ns, _valueGetter, attributePSVI.attributeSchemaInfo);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (2)
1096attrValidInfo.typedAttributeValue = simpleValue.TypedValue; 1100attrValidInfo.typedAttributeValue = attdef.DefaultValueTyped;
5 references to typedAttributeValue
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (2)
2254if (_attributePSVI != null && _attributePSVI.typedAttributeValue != null) 2262return ReturnBoxedValue(_attributePSVI.typedAttributeValue, AttributeSchemaInfo.XmlType, unwrapTypedValue);
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReaderAsync.cs (2)
670if (_attributePSVI != null && _attributePSVI.typedAttributeValue != null) 678tuple = new Tuple<string, object>(originalStringValue, ReturnBoxedValue(_attributePSVI.typedAttributeValue, AttributeSchemaInfo.XmlType, unwrapTypedValue));
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (1)
1106attrData.RawValue = attSchemaInfo.XmlType.ValueConverter.ToString(attrValidInfo.typedAttributeValue);