Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the list of Best Bets for the specified keyword.
Namespace: Microsoft.Office.Server.Search.Administration
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Syntax
'Declaration
Public Function GetBestBetsInfoForSpecialTerm ( _
st As Keyword, _
ByRef bestBetIds As ArrayList _
) As Dictionary(Of Uri, BestBet)
'Usage
Dim instance As SearchServiceApplicationProxy
Dim st As Keyword
Dim bestBetIds As ArrayList
Dim returnValue As Dictionary(Of Uri, BestBet)
returnValue = instance.GetBestBetsInfoForSpecialTerm(st, _
bestBetIds)
public Dictionary<Uri, BestBet> GetBestBetsInfoForSpecialTerm(
Keyword st,
ref ArrayList bestBetIds
)
Parameters
st
Type: Microsoft.Office.Server.Search.Administration.KeywordThe keyword.
bestBetIds
Type: System.Collections.ArrayListThe IDs of the BestBet objects, passed by reference.
Return Value
Type: System.Collections.Generic.Dictionary<Uri, BestBet>
The list of URL/Best Bet pairs.
Implements
ISearchSiteAdministrationServiceApplication.GetBestBetsInfoForSpecialTerm(Keyword, ArrayList)
Exceptions
| Exception | Condition |
|---|---|
| TimeoutException | The time-out for an operation has expired. |
| EndpointNotFoundException | The remote endpoint could not be found or reached. |
| Exception | An error, such as a SearchServiceApplicationFault, occurred during application execution. |
Remarks
The value of the st parameter must not be null .
See Also
Reference
SearchServiceApplicationProxy Class