IDocumentWebService GetDocuments Method Ankiro Enterprise Suite Reference Documentation
Retrieves information about a set of documents associated with a specific data source.

Namespace: Ankiro.SearchServer.Web.Services
Assembly: Ankiro.SearchServer.Web (in Ankiro.SearchServer.Web.dll) Version: 1.13.770.19253 (1.13.770.19253)
Syntax

IList<IndexDocumentData> GetDocuments(
	int dataSourceId,
	int offset,
	int count,
	bool includeData
)

Parameters

dataSourceId
Type: System Int32
The id of the data source for which to return document data.
offset
Type: System Int32
Logical offset of the first document to return in comparion to the total set of documents associated with the data source. (zero-offset)
count
Type: System Int32
The maximum number of documents to return. The number of returned documents may be less, if the data source contains fewer than [offset+count] documents.
includeData
Type: System Boolean
If true, the property values of returned documents are returned as well. When specifying this option, the count property should generally be a manageable number, e.g. <= 100.

Return Value

Type: IList IndexDocumentData 
See Also