1 write to StartIndex
Microsoft.AspNetCore.Components.Web (1)
Virtualization\ItemsProviderRequest.cs (1)
37StartIndex = startIndex;
6 references to StartIndex
Aspire.Dashboard (1)
Components\Controls\LogViewer.razor.cs (1)
96return ValueTask.FromResult(new ItemsProviderResult<LogEntry>(entries.Skip(r.StartIndex).Take(r.Count), entries.Count));
Microsoft.AspNetCore.Components.QuickGrid (3)
QuickGrid.razor.cs (3)
368var startIndex = request.StartIndex; 373count = Math.Min(request.Count, Pagination.ItemsPerPage - request.StartIndex); 395items: providerResult.Items.Select((x, i) => ValueTuple.Create(i + request.StartIndex + 2, x)),
Microsoft.AspNetCore.Components.Web (2)
Virtualization\Virtualize.cs (2)
426_loadedItemsStartIndex = request.StartIndex; 455Items!.Skip(request.StartIndex).Take(request.Count),