Query Class
Provides the base class for executing search queries using the Search query object model. This class defines properties and methods that are shared by the FullTextSqlQuery and KeywordQuery classes.
Inheritance Hierarchy
System.Object
Microsoft.SharePoint.Search.Query.Query
Microsoft.SharePoint.Search.Query.FullTextSqlQuery
Microsoft.SharePoint.Search.Query.KeywordQuery
Namespace: Microsoft.SharePoint.Search.Query
Assembly: Microsoft.SharePoint.Search (in Microsoft.SharePoint.Search.dll)
Syntax
'Declaration
<SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel := True)> _
<SharePointPermissionAttribute(SecurityAction.InheritanceDemand, ObjectModel := True)> _
Public MustInherit Class Query _
Implements IDisposable
'Usage
Dim instance As Query
[SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel = true)]
[SharePointPermissionAttribute(SecurityAction.InheritanceDemand, ObjectModel = true)]
public abstract class Query : IDisposable
Remarks
The Query class is not intended to be used directly from your code, but is designed to be the base implementation for the Search query object model classes.
Instead, you should use the FullTextSqlQuery class for executing SQL syntax search queries, or the KeywordQuery class for executing Keyword syntax search queries.
For more information about the query object model for Search, see Query Object Model.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.