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