SPSearchResult class

This class is deprecated. For Search, use the Execute method of the Microsoft.SharePoint.Search.Query.KeywordQuery class or the FullTextSqlQuery class. Represents the item returned as a result of a search performed on a list, document library, or site.

Inheritance hierarchy

System.Object
  Microsoft.SharePoint.SPSearchResult

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Class SPSearchResult
'Usage
Dim instance As SPSearchResult
public class SPSearchResult

Remarks

To use this class and its members, you must install Microsoft SQL Server on the server and enable full-text search in SharePoint Central Administration.

Use one of the SearchListItems methods or one of the SearchDocuments methods of the SPWeb class to perform a search on a list or a document library, and return a collection of search results. Use an indexer to return a single item from a collection of search results. For example, if the collection is assigned to a variable named mySearchResults, use mySearchResults[index] in Microsoft Visual C#, or mySearchResults(index) in Microsoft Visual Basic, where index is the index number of the search result in the collection.

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.

See also

Reference

SPSearchResult members

Microsoft.SharePoint namespace