The count requested in a search that includes OPTIONS (COUNT_LIMIT N).

Possible values are:

  • A null value to indicate that this is the last page, the count limit is less than or equal to the page size, or counting is disabled on the server.
  • A value greater than zero to indicate an exact count; that is, all the rows were found, and the number found is less than the count limit.
  • A negative of the COUNT_LIMIT value to indicate that the minimum count was found, meaning that the count is at least N. If Top M is specified on the search, counting is not done past M , and an exact count is returned if the number of rows found is less than or equal to M when M <= N.

Namespace:  FileNet.Api.Collection
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
ReadOnly Property TotalCount As Nullable(Of Integer)
C#
Nullable<int> TotalCount { get; }
Visual C++
property Nullable<int> TotalCount {
	Nullable<int> get ();
}
JavaScript
function get_totalCount();

Return Value

An integer value for the result count.

ToggleSee Also