1 override of ToInt64
System.Private.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
368public 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)
674return xmlType.ValueConverter.ToInt64(typedValue); 678return XmlUntypedConverter.Untyped.ToInt64(typedValue); 1007return xmlType.ValueConverter.ToInt64(typedValue!); 1011return XmlUntypedConverter.Untyped.ToInt64(typedValue!);
System\Xml\Schema\XmlAtomicValue.cs (1)
350return valueConverter.ToInt64(_objVal);
System\Xml\XPath\XPathNavigator.cs (1)
335return schemaType.ValueConverter.ToInt64(datatype.ParseValue(Value, NameTable, this));