1 override of ToInt64
System.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
438public override long ToInt64(object value) {return (long) ChangeType((object) value, Int64Type, null); }
6 references to ToInt64
System.Xml (6)
System\Xml\Core\XsdValidatingReader.cs (4)
540return xmlType.ValueConverter.ToInt64(typedValue); 543return XmlUntypedConverter.Untyped.ToInt64(typedValue); 797return xmlType.ValueConverter.ToInt64(typedValue); 800return XmlUntypedConverter.Untyped.ToInt64(typedValue);
System\Xml\Schema\XmlAtomicValue.cs (1)
289return valueConverter.ToInt64(this.objVal);
System\Xml\XPath\XPathNavigator.cs (1)
298return schemaType.ValueConverter.ToInt64(datatype.ParseValue(Value, NameTable, this));