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

ReadContentAsBoolean() public méthode

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