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

ReadContentAsDouble() public méthode

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