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

ReadContentAsLong() public méthode

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