Automation.UI.Tree.QueryParts.QueryOperatorPart.Select C# (CSharp) Метод

Select() публичный Метод

Return the constructed query.
public Select ( ) : Query
Результат Query
        public Query Select()
        {
            if (Query.Conditions == null)
                throw new QueryConstructionException("Cannot select - No conditions have been specified");

            return Query;
        }