| DataFormOnFileProcessingEventHandler Delegate | 
            Represents the method that will handle the file processing event.
            
 
Namespace: CMS.FormControlsAssembly: CMS.FormControls (in CMS.FormControls.dll) Version: 8.2.23
Syntaxpublic 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