Specifies the type of operation performed by the Upload component. Use to distinguish between uploading and removing files in event handlers.
Definition
Fields
Indicates a remove operation. Use to handle file deletions in event logic. Example: removing "MyFile.pdf" from the server.
C#
Remove = 1
Indicates an upload operation. Use to handle file uploads in event logic. Example: uploading "MyFile.pdf" to the server.
C#
Upload = 0