// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System.Collections.Generic; namespace System.Web.Http.Query { /// /// Represents an . /// internal class ServiceQuery { /// /// Gets or sets a list of query parts. /// public List QueryParts { get; set; } public static bool IsSupportedQueryOperator(string queryOperator) { return queryOperator == "filter" || queryOperator == "orderby" || queryOperator == "skip" || queryOperator == "top"; } } }