1 override of ValueType
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (1)
492public override Type ValueType { get { return typeof(string); } }
9 references to ValueType
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (3)
418return _xmlSchemaInfo.SchemaType.Datatype.ValueType; 425return AttributeSchemaInfo.SchemaType.Datatype.ValueType; 2578typedValue = xmlType.ValueConverter.ChangeType(typedValue, xmlType.Datatype.ValueType, _thisNSResolver);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlAtomicValue.cs (1)
203get { return _xmlType.Datatype.ValueType; }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (1)
301_clrTypeDefault = schemaType.Datatype.ValueType;
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (4)
100return schemaType.ValueConverter.ChangeType(Value, datatype.ValueType, this); 112return schemaType.ValueConverter.ChangeType(datatype.ParseValue(Value, NameTable, this), datatype.ValueType, this); 178return datatype.ValueType; 190return datatype.ValueType;