1 override of ToInt32
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (1)
438public override int ToInt32(object value) { return (int)ChangeType((object)value, Int32Type, null); }
6 references to ToInt32
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (4)
622return xmlType.ValueConverter.ToInt32(typedValue); 626return XmlUntypedConverter.Untyped.ToInt32(typedValue); 951return xmlType.ValueConverter.ToInt32(typedValue); 955return XmlUntypedConverter.Untyped.ToInt32(typedValue);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlAtomicValue.cs (1)
317return valueConverter.ToInt32(_objVal);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
342return schemaType.ValueConverter.ToInt32(datatype.ParseValue(Value, NameTable, this));