1 override of ToDateTime
System.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
383public override DateTime ToDateTime(object value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
8 references to ToDateTime
System.Xml (8)
System\Xml\Core\XsdValidatingReader.cs (4)
415return xmlType.ValueConverter.ToDateTime(typedValue); 418return XmlUntypedConverter.Untyped.ToDateTime(typedValue); 662return xmlType.ValueConverter.ToDateTime(typedValue); 665return XmlUntypedConverter.Untyped.ToDateTime(typedValue);
System\Xml\Schema\FacetChecker.cs (2)
1051DateTime dateTimeValue = datatype.ValueConverter.ToDateTime(value); 1091return MatchEnumeration(datatype.ValueConverter.ToDateTime(value), enumeration, datatype);
System\Xml\Schema\XmlAtomicValue.cs (1)
231return valueConverter.ToDateTime(this.objVal);
System\Xml\XPath\XPathNavigator.cs (1)
211return schemaType.ValueConverter.ToDateTime(datatype.ParseValue(Value, NameTable, this));