Initializes a new AggregateRecordsResult instance.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public AggregateRecordsResult(
	long totalRecordCount,
	long totalAggregateRecordCount,
	int aggregateRecordsPerPage,
	long aggregateRecordOffset,
	IList<AggregateRecord> aggregateRecords
)
Visual Basic (Declaration)
Public Sub New ( _
	totalRecordCount As Long, _
	totalAggregateRecordCount As Long, _
	aggregateRecordsPerPage As Integer, _
	aggregateRecordOffset As Long, _
	aggregateRecords As IList(Of AggregateRecord) _
)
Visual C++
public:
AggregateRecordsResult(
	long long totalRecordCount, 
	long long totalAggregateRecordCount, 
	int aggregateRecordsPerPage, 
	long long aggregateRecordOffset, 
	IList<AggregateRecord^>^ aggregateRecords
)

Parameters

totalRecordCount
Type: System..::.Int64
totalAggregateRecordCount
Type: System..::.Int64
aggregateRecordsPerPage
Type: System..::.Int32
aggregateRecordOffset
Type: System..::.Int64
aggregateRecords
Type: System.Collections.Generic..::.IList<(Of <(AggregateRecord>)>)

See Also