ISchemaOperations.GetAllCrawledProperties method
Return "all" crawled properties. Can be limited by category and a filter string matching the crawled property name.
Namespace: Microsoft.Office.Server.Search.Administration
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Syntax
'Declaration
<FaultContractAttribute(GetType(SearchServiceApplicationFault))> _
<OperationContractAttribute> _
Function GetAllCrawledProperties ( _
filterValue As String, _
categoryName As String, _
numManagedPropertyMapping As Integer, _
owner As SearchObjectOwner _
) As List(Of CrawledPropertyInfo)
'Usage
Dim instance As ISchemaOperations
Dim filterValue As String
Dim categoryName As String
Dim numManagedPropertyMapping As Integer
Dim owner As SearchObjectOwner
Dim returnValue As List(Of CrawledPropertyInfo)
returnValue = instance.GetAllCrawledProperties(filterValue, _
categoryName, numManagedPropertyMapping, _
owner)
[FaultContractAttribute(typeof(SearchServiceApplicationFault))]
[OperationContractAttribute]
List<CrawledPropertyInfo> GetAllCrawledProperties(
string filterValue,
string categoryName,
int numManagedPropertyMapping,
SearchObjectOwner owner
)
Parameters
filterValue
Type: System.StringFilter the returned crawled properties by name. Case is ignored. Use [null] for no restrictions.
categoryName
Type: System.StringFilter the returned crawled by a certain category. Use [null] for no restrictions.
numManagedPropertyMapping
Type: System.Int32Number of managed property mappings to include for each crawled property. 0 = All, -1 None.
owner
Type: Microsoft.Office.Server.Search.Administration.SearchObjectOwnerRepresents the Sharepoint hierarchy in which the crawled properties are contained.
Return value
Type: System.Collections.Generic.List<CrawledPropertyInfo>
A list of matching crawled properties.