SessionUploadFile Property | |
Upload file handling
Namespace:
SOWIWeb.Helper
Assembly:
SOWIWeb.Helper (in SOWIWeb.Helper.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax public static FileContent UploadFile { get; set; }
Public Shared Property UploadFile As FileContent
Get
Set
Property Value
Type:
FileContentRemarks
Want to sets this property then must be parameter object type of FileContent.
See example
Examples
Puts this property
SOWIData.Helper.Models.FileContent lFileContent = new
SOWIData.Helper.Models.FileContent(
this.GetFileName,
this.GetFileToByte,
this.GetFileType);
SOWIWeb.Helper.Session.UploadFile = lFileContent;
See Also