1 override of ToInt32
System.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
427public override int ToInt32(object value) {return (int) ChangeType((object) value, Int32Type, null); }
6 references to ToInt32
System.Xml (6)
System\Xml\Core\XsdValidatingReader.cs (4)
515return xmlType.ValueConverter.ToInt32(typedValue); 518return XmlUntypedConverter.Untyped.ToInt32(typedValue); 770return xmlType.ValueConverter.ToInt32(typedValue); 773return XmlUntypedConverter.Untyped.ToInt32(typedValue);
System\Xml\Schema\XmlAtomicValue.cs (1)
270return valueConverter.ToInt32(this.objVal);
System\Xml\XPath\XPathNavigator.cs (1)
269return schemaType.ValueConverter.ToInt32(datatype.ParseValue(Value, NameTable, this));