System.Xml.XmlDictionaryReader.XmlWrappedReader.ReadContentAsInt C# (CSharp) Méthode

ReadContentAsInt() public méthode

public ReadContentAsInt ( ) : Int32
Résultat System.Int32
            public override Int32 ReadContentAsInt()
            {
                try
                {
                    return _reader.ReadContentAsInt();
                }
                catch (ArgumentException exception)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("Int32", exception));
                }
                catch (FormatException exception)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("Int32", exception));
                }
                catch (OverflowException exception)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("Int32", exception));
                }
            }