1 override of ValueType
System.Private.Xml (1)
System\Xml\Schema\DataTypeImplementation.cs (1)
480public override Type ValueType { get { return typeof(string); } }
9 references to ValueType
System.Private.Xml (9)
System\Xml\Core\XsdValidatingReader.cs (3)
426return _xmlSchemaInfo.SchemaType.Datatype.ValueType; 435return AttributeSchemaInfo.SchemaType.Datatype.ValueType; 2730typedValue = xmlType.ValueConverter.ChangeType(typedValue, xmlType.Datatype.ValueType, _thisNSResolver);
System\Xml\Schema\XmlAtomicValue.cs (1)
213get { return _xmlType.Datatype!.ValueType; }
System\Xml\Schema\XmlValueConverter.cs (1)
246_clrTypeDefault = schemaType.Datatype.ValueType;
System\Xml\XPath\XPathNavigator.cs (4)
87return schemaType.ValueConverter.ChangeType(Value, datatype.ValueType, this); 99return schemaType.ValueConverter.ChangeType(datatype.ParseValue(Value, NameTable, this), datatype.ValueType, this); 153return datatype.ValueType; 165return datatype.ValueType;