System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.ReadContentAsBoolean C# (CSharp) 메소드

ReadContentAsBoolean() 개인적인 메소드

private ReadContentAsBoolean ( ) : bool
리턴 bool
        internal bool ReadContentAsBoolean()
        {
            if (isEndOfEmptyElement)
                ThrowConversionException(string.Empty, "Boolean");

            return reader.ReadContentAsBoolean();
        }
XmlReaderDelegator.XmlReaderDelegator