BestBet class

Represents a best bet in the SharePoint Server search keyword and best bet management system.

Inheritance hierarchy

System.Object
  Microsoft.Office.Server.Search.Administration.BestBet

Namespace:  Microsoft.Office.Server.Search.Administration
Assembly:  Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)

Syntax

'Declaration
<DataContractAttribute> _
<SharePointPermissionAttribute(SecurityAction.InheritanceDemand, ObjectModel := True)> _
<SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel := True)> _
Public NotInheritable Class BestBet
'Usage
Dim instance As BestBet
[DataContractAttribute]
[SharePointPermissionAttribute(SecurityAction.InheritanceDemand, ObjectModel = true)]
[SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel = true)]
public sealed class BestBet

Remarks

Use the GetAllBestBets method of the Keywords class to get the collection of all best bets for a site.

Use the BestBets property of the Keyword class to get the collection of best bets associated with a specific keyword.

To add a new best bet to the collection, use the Create() method of the BestBetCollection class.

To remove the association between a best bet and a keyword without deleting the best bet, use the Remove() method of the BestBetCollection class.

To delete a best bet, use the Delete() method of the BestBet class.

Use an indexer to return a single best bet from the BestBetCollection class. For example, assuming the collection is assigned to a variable named bestBets, use bestBets[index] in Microsoft Visual C# or bestBets(index) in Microsoft Visual Basic, where index is a System.Uri object representing the best bet's URL.

For more information about keywords and best bets in SharePoint Server search, see Managing Keywords.

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

BestBet members

Microsoft.Office.Server.Search.Administration namespace