29 references to ToInt64
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\XmlPropertyBag.cs (1)
190return XmlConvert.ToInt64(value);
System.Data (4)
fx\src\data\System\Data\Common\Int64Storage.cs (1)
218return XmlConvert.ToInt64(s);
fx\src\data\System\Data\Common\SQLConvert.cs (2)
646return new SqlInt64(XmlConvert.ToInt64((string)value)); 677return XmlConvert.ToInt64((string) value);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
651m_value = XmlConvert.ToInt64(reader.ReadElementString());
System.Data.Services (2)
System\Data\Services\Parsing\WebConvert.cs (2)
425targetValue = XmlConvert.ToInt64(text); 556targetValue = XmlConvert.ToInt64(text);
System.Data.Services.Client (2)
System\Data\Services\Client\ClientConvert.cs (1)
166return XmlConvert.ToInt64(propertyValue);
System\Data\Services\Client\DataServiceRequest.cs (1)
216r = XmlConvert.ToInt64(sr.ReadToEnd());
System.Runtime.Serialization (1)
System\Xml\XmlConverter.cs (1)
126return XmlConvert.ToInt64(value);
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\QueryStringConverter.cs (1)
95return parameter == null ? default(Int64) : XmlConvert.ToInt64(parameter);
System.Xml (14)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1499return XmlConvert.ToInt64(String.Empty);
System\Xml\Core\XmlReader.cs (2)
314return XmlConvert.ToInt64(InternalReadContentAsString()); 482return XmlConvert.ToInt64(string.Empty);
System\Xml\Schema\Inference\Infer.cs (1)
1547XmlConvert.ToInt64(s);
System\Xml\Schema\XmlValueConverter.cs (7)
997return XmlConvert.ToInt64((string) value); 2306return XmlConvert.ToInt64((string) value); 2313if (sourceType == StringType) return XmlConvert.ToInt64((string) value); 2492if (destinationType == Int64Type) return XmlConvert.ToInt64((string) value); 2497if (destinationType == UInt32Type) return Int64ToUInt32(XmlConvert.ToInt64((string) value)); 2543if (sourceType == StringType) return XmlConvert.ToInt64((string) value); 2558if (sourceType == StringType) return Int64ToUInt32(XmlConvert.ToInt64((string) value));
System\Xml\Serialization\PrimitiveXmlSerializers.cs (1)
279o = System.Xml.XmlConvert.ToInt64(Reader.ReadElementString());
System\Xml\Serialization\XmlSerializationReader.cs (2)
562value = XmlConvert.ToInt64(ReadStringValue()); 633value = XmlConvert.ToInt64(ReadStringValue());
System.Xml.Linq (4)
System\Xml\Linq\XLinq.cs (4)
4591return XmlConvert.ToInt64(element.Value); 4610return XmlConvert.ToInt64(element.Value); 6846return XmlConvert.ToInt64(attribute.value); 6861return XmlConvert.ToInt64(attribute.value);