Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

GridItemsProvider<TGridItem> Delegate

Definition

Namespace:
Microsoft.AspNetCore.Components.QuickGrid
Assembly:
Microsoft.AspNetCore.Components.QuickGrid.dll
Package:
Microsoft.AspNetCore.Components.QuickGrid v10.0.0
Package:
Microsoft.AspNetCore.Components.QuickGrid v11.0.0-preview.4.26230.115
Package:
Microsoft.AspNetCore.Components.QuickGrid v8.0.19
Package:
Microsoft.AspNetCore.Components.QuickGrid v9.0.8
Source:
GridItemsProvider.cs
Source:
GridItemsProvider.cs
Source:
GridItemsProvider.cs
Source:
GridItemsProvider.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

A callback that provides data for a QuickGrid<TGridItem>.

public delegate System.Threading.Tasks.ValueTask<Microsoft.AspNetCore.Components.QuickGrid.GridItemsProviderResult<TGridItem>> GridItemsProvider<TGridItem>(GridItemsProviderRequest<TGridItem> request);
type GridItemsProvider<'GridItem> = delegate of GridItemsProviderRequest<'GridItem> -> ValueTask<GridItemsProviderResult<'GridItem>>
Public Delegate Function GridItemsProvider(Of TGridItem)(request As GridItemsProviderRequest(Of TGridItem)) As ValueTask(Of GridItemsProviderResult(Of TGridItem)) 

Type Parameters

TGridItem

The type of data represented by each row in the grid.

Parameters

request
GridItemsProviderRequest<TGridItem>

Parameters describing the data being requested.

Return Value

A ValueTask<TResult> that gives the data to be displayed.

Applies to


Feedback

Was this page helpful?