ICustomHooksOnAfterUpload Method
|
This method is invoke after a File Upload got processed by Ingeniux CMS Site Instance server.
Namespace: Ingeniux.CMS.Models.HooksAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxvoid OnAfterUpload(
IUserWriteSession session,
FileInfo[] uploadedFiles,
long fileSize
)
Sub OnAfterUpload (
session As IUserWriteSession,
uploadedFiles As FileInfo(),
fileSize As Long
)
void OnAfterUpload(
IUserWriteSession^ session,
array<FileInfo^>^ uploadedFiles,
long long fileSize
)
abstract OnAfterUpload :
session : IUserWriteSession *
uploadedFiles : FileInfo[] *
fileSize : int64 -> unit Parameters
- session IUserWriteSession
- The session that was used to process the upload.
- uploadedFiles FileInfo
- The upload file information.
- fileSize Int64
- The size of uploaded file by KB.
RemarksWhen this action is invoked, the objects involved have yet to be saved to the Content Store.
Invoked by the sfwupload handler
See Also