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.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
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.