1 override of ToInt32
System.Private.Xml (1)
System\Xml\Schema\XmlValueConverter.cs (1)
361
public 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)
639
return xmlType.ValueConverter.
ToInt32
(typedValue);
643
return XmlUntypedConverter.Untyped.
ToInt32
(typedValue);
972
return xmlType.ValueConverter.
ToInt32
(typedValue!);
976
return XmlUntypedConverter.Untyped.
ToInt32
(typedValue!);
System\Xml\Schema\XmlAtomicValue.cs (1)
327
return valueConverter.
ToInt32
(_objVal);
System\Xml\XPath\XPathNavigator.cs (1)
301
return schemaType.ValueConverter.
ToInt32
(datatype.ParseValue(Value, NameTable, this));