45 references to ToInt32
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\XmlPropertyBag.cs (1)
188return XmlConvert.ToInt32(value);
System.Data (4)
fx\src\data\System\Data\Common\Int32Storage.cs (1)
223return XmlConvert.ToInt32(s);
fx\src\data\System\Data\Common\SQLConvert.cs (2)
644return new SqlInt32(XmlConvert.ToInt32((string)value)); 673return XmlConvert.ToInt32((string) value);
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
597m_value = XmlConvert.ToInt32(reader.ReadElementString());
System.Data.Services (2)
System\Data\Services\Parsing\WebConvert.cs (2)
419targetValue = XmlConvert.ToInt32(text); 552targetValue = XmlConvert.ToInt32(text);
System.Data.Services.Client (1)
System\Data\Services\Client\ClientConvert.cs (1)
164return XmlConvert.ToInt32(propertyValue);
System.IdentityModel (5)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (3)
539length = XmlConvert.ToInt32(value); 558length = XmlConvert.ToInt32(value); 4803proxyRestriction.Count = XmlConvert.ToInt32(value);
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (2)
1765int majorVersion = XmlConvert.ToInt32(attributeValue); 1773int minorVersion = XmlConvert.ToInt32(attributeValue);
System.Runtime.Serialization (1)
System\Xml\XmlConverter.cs (1)
98return XmlConvert.ToInt32(value);
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\QueryStringConverter.cs (1)
91return parameter == null ? default(Int32) : XmlConvert.ToInt32(parameter);
System.Web.Extensions (4)
Compilation\XmlSerializer\DataSvcMapFileSerializer.cs (2)
553o.@SourceId = System.Xml.XmlConvert.ToInt32(Reader.Value); 625o.@SourceId = System.Xml.XmlConvert.ToInt32(Reader.Value);
Compilation\XmlSerializer\SvcMapFileSerializer.cs (2)
660o.@SourceId = System.Xml.XmlConvert.ToInt32(Reader.Value); 732o.@SourceId = System.Xml.XmlConvert.ToInt32(Reader.Value);
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
5459o.@Group = System.Xml.XmlConvert.ToInt32(Reader.Value); 5463o.@Capture = System.Xml.XmlConvert.ToInt32(Reader.Value);
System.Xml (20)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
1413return XmlConvert.ToInt32(String.Empty);
System\Xml\Core\XmlReader.cs (2)
300return XmlConvert.ToInt32(InternalReadContentAsString()); 465return XmlConvert.ToInt32(string.Empty);
System\Xml\Schema\Inference\Infer.cs (1)
1516XmlConvert.ToInt32(s);
System\Xml\Schema\XmlValueConverter.cs (13)
963return XmlConvert.ToInt32((string) value); 2286return XmlConvert.ToInt32((string) value); 2293if (sourceType == StringType) return XmlConvert.ToInt32((string) value); 2484if (destinationType == ByteType) return Int32ToByte(XmlConvert.ToInt32((string) value)); 2490if (destinationType == Int16Type) return Int32ToInt16(XmlConvert.ToInt32((string) value)); 2491if (destinationType == Int32Type) return XmlConvert.ToInt32((string) value); 2493if (destinationType == SByteType) return Int32ToSByte(XmlConvert.ToInt32((string) value)); 2496if (destinationType == UInt16Type) return Int32ToUInt16(XmlConvert.ToInt32((string) value)); 2519if (sourceType == StringType) return Int32ToByte(XmlConvert.ToInt32((string) value)); 2537if (sourceType == StringType) return Int32ToInt16(XmlConvert.ToInt32((string) value)); 2540if (sourceType == StringType) return XmlConvert.ToInt32((string) value); 2546if (sourceType == StringType) return Int32ToSByte(XmlConvert.ToInt32((string) value)); 2555if (sourceType == StringType) return Int32ToUInt16(XmlConvert.ToInt32((string) value));
System\Xml\Serialization\PrimitiveXmlSerializers.cs (1)
222o = System.Xml.XmlConvert.ToInt32(Reader.ReadElementString());
System\Xml\Serialization\XmlSerializationReader.cs (2)
556value = XmlConvert.ToInt32(ReadStringValue()); 627value = XmlConvert.ToInt32(ReadStringValue());
System.Xml.Linq (4)
System\Xml\Linq\XLinq.cs (4)
4509return XmlConvert.ToInt32(element.Value); 4528return XmlConvert.ToInt32(element.Value); 6780return XmlConvert.ToInt32(attribute.value); 6795return XmlConvert.ToInt32(attribute.value);