Automation.UI.Tree.Query.ToString C# (CSharp) Method

ToString() public method

Gets a string that represents this query's condition and scope.
public ToString ( ) : string
return string
        public override string ToString()
        {
            var conditionsString = ConditionHelper.ToString(Conditions);
            var rootString = AutomationElementHelper.ToString(Root);

            return conditionsString + ", Scope=" + Scope + ", Root=" + rootString;
        }