New to Telerik UI for BlazorStart a free 30-day trial

Definition

Namespace:Telerik.Blazor.Components.Common.AIPrompt

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class AIPromptCommandExecuteEventArgsBase

Inheritance: objectAIPromptCommandExecuteEventArgsBase

Derived Classes: AIPromptCommandExecuteEventArgsInlineAIPromptCommandExecuteEventArgs

Constructors

C#
public AIPromptCommandExecuteEventArgsBase()

Properties

The command to be executed.

C#
public AIPromptCommandDescriptorBase Command { get; set; }

Can cancel the request event.

C#
public bool IsCancelled { get; set; }

Output should be populated by the user of the component.

C#
public string Output { get; set; }

If the request is being retried, this property will hold the previous outputed item.

C#
public AIPromptOutputItemDescriptorBase OutputItem { get; set; }