1 override of ValueType
System.Xml (1)
System\Xml\Schema\DataTypeImplementation.cs (1)
435public override Type ValueType { get { return typeof(string); }}
9 references to ValueType
System.Xml (9)
System\Xml\Core\XsdValidatingReader.cs (3)
357return xmlSchemaInfo.SchemaType.Datatype.ValueType; 363return AttributeSchemaInfo.SchemaType.Datatype.ValueType; 2138typedValue = xmlType.ValueConverter.ChangeType(typedValue, xmlType.Datatype.ValueType, thisNSResolver);
System\Xml\Schema\XmlAtomicValue.cs (1)
176get { return this.xmlType.Datatype.ValueType; }
System\Xml\Schema\XmlValueConverter.cs (1)
294this.clrTypeDefault = schemaType.Datatype.ValueType;
System\Xml\XPath\XPathNavigator.cs (4)
83return schemaType.ValueConverter.ChangeType(Value, datatype.ValueType, this); 92return schemaType.ValueConverter.ChangeType(datatype.ParseValue(Value, NameTable, this), datatype.ValueType, this); 144return datatype.ValueType; 153return datatype.ValueType;