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

IsCDATAValue() private method

Verifies whether the current element is a CDATA value or not.
private IsCDATAValue ( ) : bool
return bool
        private bool IsCDATAValue()
        {
            return this.currentElement.ToLower(CultureInfo.CurrentCulture) == "mime" ||
                this.currentElement.ToLower(CultureInfo.CurrentCulture) == "conversationid" ||
                this.currentElement.ToLower(CultureInfo.CurrentCulture) == "conversationindex";
        }
    }