1 override of ToInt64
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (1)
449public override long ToInt64(object value) { return (long)ChangeType((object)value, Int64Type, null); }
6 references to ToInt64
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (4)
655return xmlType.ValueConverter.ToInt64(typedValue); 659return XmlUntypedConverter.Untyped.ToInt64(typedValue); 986return xmlType.ValueConverter.ToInt64(typedValue); 990return XmlUntypedConverter.Untyped.ToInt64(typedValue);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlAtomicValue.cs (1)
340return valueConverter.ToInt64(_objVal);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
380return schemaType.ValueConverter.ToInt64(datatype.ParseValue(Value, NameTable, this));