Blazor | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / IDataCollectionEx Class / LoadMoreItemsAsync<T> Method
The data collection.
Specifies the desired number of items to be loaded.
The cancellation token

In This Topic
    LoadMoreItemsAsync<T> Method (IDataCollectionEx)
    In This Topic
    Loads more items.
    Syntax
    'Declaration
     
    
    Public Shared Function LoadMoreItemsAsync(Of T As Class)( _
       ByVal dataCollection As IDataCollection(Of T), _
       Optional ByVal count As Nullable(Of Integer), _
       Optional ByVal cancellationToken As CancellationToken _
    ) As Task
    public static Task LoadMoreItemsAsync<T>( 
       IDataCollection<T> dataCollection,
       Nullable<int> count,
       CancellationToken cancellationToken
    )
    where T: class

    Parameters

    dataCollection
    The data collection.
    count
    Specifies the desired number of items to be loaded.
    cancellationToken
    The cancellation token

    Type Parameters

    T
    See Also