Class
ChatLoadMoreMessagesEventArgs

Provides data for the OnLoadMoreMessages event of the Chat component. Contains the requested index range. The developer should load the requested messages into Telerik.Blazor.Data.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class ChatLoadMoreMessagesEventArgs

Inheritance: objectChatLoadMoreMessagesEventArgs

Constructors

ChatLoadMoreMessagesEventArgs()

Declaration

cs-api-definition
public ChatLoadMoreMessagesEventArgs()

Properties

EndIndex

The end index (exclusive) of the requested message range in the full dataset.

Declaration

cs-api-definition
public int EndIndex { get; set; }

Property Value

int

StartIndex

The start index (inclusive) of the requested message range in the full dataset.

Declaration

cs-api-definition
public int StartIndex { get; set; }

Property Value

int