CrawlRule class
Represents a crawl rule.
Inheritance hierarchy
System.Object
Microsoft.Office.Server.Search.Administration.CrawlRule
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 CrawlRule
'Usage
Dim instance As CrawlRule
[SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel = true)]
public sealed class CrawlRule
Remarks
Use the CrawlRules property of the Content class to get the collection of crawl rules for a Search service application.
To add a new crawl rule to the collection, use the Create() method of the CrawlRuleCollection class.
To delete a crawl rule, use the Delete method of the CrawlRule class.
Use an indexer to return a CrawlRule object from the CrawlRuleCollection class. For example, assuming the collection is assigned to a variable named crawlRules, use crawlRules[index] in Microsoft Visual C# or crawlRules(index) in Microsoft Visual Basic, where index is an integer representing the crawl rule priority, or a string containing the crawl rule path.
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.