PopBit() public méthode

Pop the top bit from the stack and return it.
public PopBit ( ) : bool
Résultat bool
        public override void WriteEndElement()
        {
            EndCDataSection();

            _wrapped.WriteEndElement();

            if (_lookupCDataElems != null)
            {
                _bitsCData.PopBit();
            }
        }
Exemple #2
0
        internal override void WriteEndElement(string prefix, string localName, string ns)
        {
            EndCDataSection();

            _wrapped.WriteEndElement(prefix, localName, ns);

            if (_checkWellFormedDoc)
            {
                _depth--;
            }

            if (_lookupCDataElems != null)
            {
                _bitsCData.PopBit();
            }
        }