24 references to ToInt64
System.Data.Common (4)
System\Data\Common\Int64Storage.cs (1)
249return XmlConvert.ToInt64(s);
System\Data\Common\SQLConvert.cs (2)
591return new SqlInt64(XmlConvert.ToInt64((string)value)); 622return XmlConvert.ToInt64((string)value);
System\Data\SQLTypes\SQLInt64.cs (1)
576m_value = XmlConvert.ToInt64(reader.ReadElementString());
System.Private.DataContractSerialization (1)
System\Xml\XmlConverter.cs (1)
98return XmlConvert.ToInt64(value);
System.Private.Xml (15)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1686return XmlConvert.ToInt64(string.Empty);
System\Xml\Core\XmlReader.cs (2)
296return XmlConvert.ToInt64(InternalReadContentAsString()); 497return XmlConvert.ToInt64(string.Empty);
System\Xml\Schema\Inference\Infer.cs (1)
1554XmlConvert.ToInt64(s);
System\Xml\Schema\XmlValueConverter.cs (7)
950return XmlConvert.ToInt64((string)value); 2161return XmlConvert.ToInt64((string)value); 2169if (sourceType == StringType) return XmlConvert.ToInt64((string)value); 2343if (destinationType == Int64Type) return XmlConvert.ToInt64((string)value); 2348if (destinationType == UInt32Type) return Int64ToUInt32(XmlConvert.ToInt64((string)value)); 2405if (sourceType == StringType) return XmlConvert.ToInt64((string)value); 2425if (sourceType == StringType) return Int64ToUInt32(XmlConvert.ToInt64((string)value));
System\Xml\Serialization\PrimitiveXmlSerializers.cs (1)
358o = System.Xml.XmlConvert.ToInt64(Reader.ReadElementString());
System\Xml\Serialization\ReflectionXmlSerializationReader.cs (1)
1197"Int64" => XmlConvert.ToInt64(value),
System\Xml\Serialization\XmlSerializationReader.cs (2)
564value = XmlConvert.ToInt64(ReadStringValue()); 636value = XmlConvert.ToInt64(ReadStringValue());
System.Private.Xml.Linq (4)
System\Xml\Linq\XAttribute.cs (2)
369return XmlConvert.ToInt64(attribute.value); 386return XmlConvert.ToInt64(attribute.value);
System\Xml\Linq\XElement.cs (2)
1496return XmlConvert.ToInt64(element.Value); 1516return XmlConvert.ToInt64(element.Value);