1 override of ToInt32
System.Private.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
361public override int ToInt32(object value) { return (int)ChangeType((object)value, Int32Type, null); }
6 references to ToInt32
System.Private.Xml (6)
System\Xml\Core\XsdValidatingReader.cs (4)
639return xmlType.ValueConverter.ToInt32(typedValue); 643return XmlUntypedConverter.Untyped.ToInt32(typedValue); 972return xmlType.ValueConverter.ToInt32(typedValue!); 976return XmlUntypedConverter.Untyped.ToInt32(typedValue!);
System\Xml\Schema\XmlAtomicValue.cs (1)
327return valueConverter.ToInt32(_objVal);
System\Xml\XPath\XPathNavigator.cs (1)
301return schemaType.ValueConverter.ToInt32(datatype.ParseValue(Value, NameTable, this));