System.Xml.QueryOutputWriter.StartCDataSection C# (CSharp) Méthode

StartCDataSection() private méthode

Write CData text if element is a CData element. Return true if text should be written within a CData section.
private StartCDataSection ( ) : bool
Résultat bool
        private bool StartCDataSection() {
            Debug.Assert(!this.inCDataSection);
            if (this.lookupCDataElems != null && this.bitsCData.PeekBit()) {
                this.inCDataSection = true;
                return true;
            }
            return false;
        }