Class AttachmentUploadReadyEventArgs
Provides data for the attachment-upload-ready event in the SfAIAssistView component.
Inherited Members
Namespace: Syncfusion.Blazor.InteractiveChat
Assembly: Syncfusion.Blazor.dll
Syntax
public class AttachmentUploadReadyEventArgs : BeforeUploadEventArgs
Remarks
Raised when an attachment finishes uploading. Gives access to the file’s metadata and stream so you can validate, transform, or store the file before it is added to the conversation.
Constructors
AttachmentUploadReadyEventArgs(BeforeUploadEventArgs)
Initializes a new instance of the AttachmentUploadReadyEventArgs class based on the specified BeforeUploadEventArgs.
Declaration
public AttachmentUploadReadyEventArgs(BeforeUploadEventArgs src)
Parameters
| Type | Name | Description |
|---|---|---|
| BeforeUploadEventArgs | src | The source BeforeUploadEventArgs object to copy data from. May be null. |
Remarks
This constructor is used internally to wrap a BeforeUploadEventArgs instance with additional context specific to the attachment-upload-ready event.