Class
MultiSelectReadEventArgs

Event arguments for the MultiSelect OnRead event, providing data request information for custom data loading operations. Contains DataSource request details including filtering, paging, sorting, and grouping parameters. Use to implement server-side data operations, custom filtering logic, or integration with external data services. Inherits all functionality from ReadEventArgs with MultiSelect-specific context.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class MultiSelectReadEventArgs : ReadEventArgs

Inheritance: objectEventArgsReadEventArgsMultiSelectReadEventArgs

Inherited Members ReadEventArgs.RequestReadEventArgs.DataReadEventArgs.TotalEventArgs.Empty

Constructors

MultiSelectReadEventArgs()

Initializes a new instance of MultiSelectReadEventArgs with empty data source request. Use when creating event args for scenarios where request details will be set separately.

Declaration

cs-api-definition
public MultiSelectReadEventArgs()

MultiSelectReadEventArgs(DataSourceRequest)

Initializes a new instance of MultiSelectReadEventArgs with the specified data source request. Request contains filtering, paging, sorting, and grouping information from the component state. Use this constructor when the component automatically provides request details for data operations.

Declaration

cs-api-definition
public MultiSelectReadEventArgs(DataSourceRequest request)

Parameters

request

DataSourceRequest

The data source request containing operation parameters for data loading.