Microsoft.Protocols.TestSuites.Common.ActiveSyncXmlWriter.WriteString C# (CSharp) Method

WriteString() public method

Writes the given text content.
public WriteString ( string text ) : void
text string Text to write.
return void
        public override void WriteString(string text)
        {
            if (!this.isSkip)
            {
                if (this.IsCDATAValue())
                {
                    this.WriteCData(text);
                }
                else
                {
                    base.WriteString(text);
                }
            }
        }