Class PromptRequestEventArgs
Event arguments for the PromptRequest event.
Inheritance
System.Object
PromptRequestEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.AIAssistView
Assembly: Syncfusion.SfAIAssistView.WinForms.dll
Syntax
public class PromptRequestEventArgs
Constructors
PromptRequestEventArgs(TextMessage)
Initializes a new instance of the PromptRequestEventArgs class.
Declaration
public PromptRequestEventArgs(TextMessage message)
Parameters
| Type | Name | Description |
|---|---|---|
| TextMessage | message | Instance of IMessage |
Properties
Handled
Gets or sets a value indicating whether the input message in the Messages collection has been handled by the event.
When true, the message is considered processed and will not require further handling.
When false, the message remains unhandled and may need additional processing.
Declaration
public bool Handled { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
Message
Gets the input message value of the assistview control.
Declaration
public TextMessage Message { get; }
Property Value
| Type |
|---|
| TextMessage |