Class AIPromptPromptRequestEventArgs
The class that describes the event arguments of the OnRequest event of the AIPrompt component.
Inheritance
System.Object
AIPromptPromptRequestEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class AIPromptPromptRequestEventArgs : Object
Constructors
AIPromptPromptRequestEventArgs()
Declaration
public AIPromptPromptRequestEventArgs()
Properties
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
|
Prompt
Prompt of the request.
Declaration
public string Prompt { get; set; }
Property Value
System.String
|