ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / ICollectionViewEx Class / LoadMoreItemsAsync<T> Method
The collection view.
Specifies the desired number of items to be loaded.
The cancellation token

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

    Parameters

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

    Type Parameters

    T
    See Also