Click or drag to resize
DataFormOnFileProcessingEventHandler Delegate
Represents the method that will handle the file processing event.

Namespace: CMS.FormControls
Assembly: CMS.FormControls (in CMS.FormControls.dll) Version: 9.0.0
Syntax
C#
public delegate void OnFileProcessingEventHandler(
	Object sender,
	Object editedObject,
	List<string> uploadedFiles,
	List<string> deletedFiles
)

Parameters

sender
Type: SystemObject
Sender object
editedObject
Type: SystemObject
Depends on edited object - could be AbstractInfo or IDataClass type
uploadedFiles
Type: System.Collections.GenericListString
Array with IDs of uploaders where a file was uploaded
deletedFiles
Type: System.Collections.GenericListString
Array with IDs of uploaders where a file was deleted
See Also