1 override of ToInt64
System.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
438
public 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)
540
return xmlType.ValueConverter.
ToInt64
(typedValue);
543
return XmlUntypedConverter.Untyped.
ToInt64
(typedValue);
797
return xmlType.ValueConverter.
ToInt64
(typedValue);
800
return XmlUntypedConverter.Untyped.
ToInt64
(typedValue);
System\Xml\Schema\XmlAtomicValue.cs (1)
289
return valueConverter.
ToInt64
(this.objVal);
System\Xml\XPath\XPathNavigator.cs (1)
298
return schemaType.ValueConverter.
ToInt64
(datatype.ParseValue(Value, NameTable, this));