Sets the record number to start at for the query results. By default, the record number starts at zero (to start at the beginning).

Namespace: ININ.IceLib.Configuration
Assembly: ININ.IceLib.Configuration (in ININ.IceLib.Configuration.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public QuerySettings<TConfigurationObject, TPropertyEnum> SetStartAtRecordNumber(
	int startAtRecordNumber
)
Visual Basic
Public Function SetStartAtRecordNumber ( _
	startAtRecordNumber As Integer _
) As QuerySettings(Of TConfigurationObject, TPropertyEnum)

Parameters

startAtRecordNumber
Type: System..::..Int32
The record number to start the result at.

Return Value

This QuerySettings<(Of <(<'TConfigurationObject, TPropertyEnum>)>)>.

Remarks

This value is 0-based. If a value is specified that is greater than the number of records, then no results will be returned.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionThe specified startAtRecordNumber is less than zero.

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 SU 5 and beyond.

See Also