TableOperationsTGetPageOfRecordsAsync Method
Gets the specified page of records from the provided source records array.
Namespace: Gemstone.Data.ModelAssembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.150 -- Release Build+539c8e20daab1f37d91aaa1ede2f080b59c0c784
public IAsyncEnumerable<T> GetPageOfRecordsAsync(
IAsyncEnumerable<T> records,
int page,
int pageSize
)
Public Function GetPageOfRecordsAsync (
records As IAsyncEnumerable(Of T),
page As Integer,
pageSize As Integer
) As IAsyncEnumerable(Of T)
public:
IAsyncEnumerable<T>^ GetPageOfRecordsAsync(
IAsyncEnumerable<T>^ records,
int page,
int pageSize
)
function GetPageOfRecordsAsync(records, page, pageSize);
- records IAsyncEnumerableT
- Source records array.
- page Int32
- Desired page of records.
- pageSize Int32
- Desired page size.
IAsyncEnumerableTA page of records.