'Declaration Function InsertRangeAsync( _ ByVal startingIndex As Integer, _ ByVal items As IEnumerable(Of T), _ Optional ByVal cancellationToken As CancellationToken _ ) As Task(Of Integer)
Task<int> InsertRangeAsync( int startingIndex, IEnumerable<T> items, CancellationToken cancellationToken )
Parameters
- startingIndex
- The index where the item will be inserted.
- items
- The items to be inserted.
- cancellationToken
- The cancellation token.