Class PromptRequestedEventArgs
Provides data for the prompt request event in the SfInlineAIAssist component.
Inherited Members
Namespace: Syncfusion.Blazor.InteractiveChat
Assembly: Syncfusion.Blazor.InteractiveChat.dll
Syntax
public class PromptRequestedEventArgs
Constructors
PromptRequestedEventArgs()
Declaration
public PromptRequestedEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the prompt request should be cancelled.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | A boolean value indicating whether the prompt request should be cancelled. The default is |
Remarks
This property can be used to cancel the prompt request in the SfInlineAIAssist component.
Prompt
Gets or sets the text of the prompt request.
Declaration
public string Prompt { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The text of the prompt request. The default is |
Remarks
This property specifies the text for the prompt request in the SfInlineAIAssist component.
Response
Gets or sets the response of the prompt request.
Declaration
public string Response { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The response of the prompt request. The default is |
Remarks
This property holds the response of the prompt request in the SfInlineAIAssist component.