RankingParameter class

Represents a ranking parameter used for rank computation in SharePoint Server search.

Inheritance hierarchy

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

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

Syntax

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

Remarks

Use the RankingParameters() property of the Ranking class to get the collection of ranking parameters for a Search service application.

Use an indexer to return a single ranking parameter from the RankParamCollection object. For example, assuming the collection is assigned to a variable named rankingParams, use rankingParams[index] in Microsoft Visual C# or rankingParams(index) in Microsoft Visual Basic, where index is the index number of the ranking parameter in the collection, or a string containing the name of the ranking parameter.

Note

You cannot add new ranking parameters, or remove or change the names of existing parameters; you can modify only the ranking parameter's value.

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

RankingParameter members

Microsoft.Office.Server.Search.Administration namespace