Category.QueryCrawledProperties Method
Returns a list of crawled properties that match the filter, offset, and count parameters.
Namespace: Microsoft.SharePoint.Search.Extended.Administration.Schema
Assembly: Microsoft.SharePoint.Search.Extended.Administration (in Microsoft.SharePoint.Search.Extended.Administration.dll)
Syntax
'Declaration
Function QueryCrawledProperties ( _
filter As String, _
offset As Integer, _
count As Integer _
) As IEnumerable(Of CrawledProperty)
'Usage
Dim instance As Category
Dim filter As String
Dim offset As Integer
Dim count As Integer
Dim returnValue As IEnumerable(Of CrawledProperty)
returnValue = instance.QueryCrawledProperties(filter, _
offset, count)
IEnumerable<CrawledProperty> QueryCrawledProperties(
string filter,
int offset,
int count
)
Parameters
filter
Type: System.StringA string specifying the crawled property name filter.
offset
Type: System.Int32An integer specifying the offset of the result list.
count
Type: System.Int32An integer specifying the number of crawled properties to return.
Return Value
Type: System.Collections.Generic.IEnumerable<CrawledProperty>
A list of CrawledProperty objects.
See Also
Reference
Microsoft.SharePoint.Search.Extended.Administration.Schema Namespace