1 override of ToInt64
System.Private.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
368
public override long
ToInt64
(object value) { return (long)ChangeType((object)value, Int64Type, null); }
6 references to ToInt64
System.Private.Xml (6)
System\Xml\Core\XsdValidatingReader.cs (4)
674
return xmlType.ValueConverter.
ToInt64
(typedValue);
678
return XmlUntypedConverter.Untyped.
ToInt64
(typedValue);
1007
return xmlType.ValueConverter.
ToInt64
(typedValue!);
1011
return XmlUntypedConverter.Untyped.
ToInt64
(typedValue!);
System\Xml\Schema\XmlAtomicValue.cs (1)
350
return valueConverter.
ToInt64
(_objVal);
System\Xml\XPath\XPathNavigator.cs (1)
335
return schemaType.ValueConverter.
ToInt64
(datatype.ParseValue(Value, NameTable, this));