AuthorityPage class

Represents an authoritative page for SharePoint Server search.

Inheritance hierarchy

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

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

Syntax

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

Remarks

Anauthoritative page is a Web page designated by the search administrator as more relevant than other Web pages. This expert pagelinks to the most relevant information. The authority level assigned to the page determines how much the page impacts the query-independent ranking for content located on the same site, or that is closely linked (within a certain click-distance) to the authoritative page.

The lower the authority level, the more important the authoritative page is with respect to relevance. The lowest value you can configure for the authority level of an authoritative page is zero (0).

Use the AuthorityPages() property of the Ranking class to get the collection of authoritative pages for Search service application.

Use an indexer to return a single authoritative page from the AuthorityPageCollection object. For example, assuming the collection is assigned to a variable named authorityPages, use authorityPages[index] in Microsoft Visual C# or authorityPages(index) in Microsoft Visual Basic, where index is the index number of the authoritative page in the collection or a System.Uri object representing the authoritative page's URL.

To designate a page as an authoritative page, use the Create method of the AuthorityPageCollection class.

To remove an authoritative page, use the Delete method of the AuthorityPageclass.

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

AuthorityPage members

Microsoft.Office.Server.Search.Administration namespace