Microsoft.Protocols.TestSuites.Common.ActiveSyncXmlWriter.WriteString C# (CSharp) 메소드

WriteString() 공개 메소드

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