Class AIPromptCommandExecuteEventArgs
The class that describes the event arguments of the OnCommandExecute event of the AIPrompt component.
Inheritance
System.Object
AIPromptCommandExecuteEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class AIPromptCommandExecuteEventArgs : Object
Constructors
AIPromptCommandExecuteEventArgs()
Declaration
public AIPromptCommandExecuteEventArgs()
Properties
Command
The command to be executed.
Declaration
public AIPromptCommandDescriptor Command { get; set; }
Property Value
AIPromptCommandDescriptor
|
IsCancelled
Can cancel the request event.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|
Output
Output should be populated by the user of the component.
Declaration
public string Output { get; set; }
Property Value
System.String
|
OutputItem
If the request is being retried, this property will hold the previous outputed item.
Declaration
public AIPromptOutputItemDescriptor OutputItem { get; set; }
Property Value
AIPromptOutputItemDescriptor
|