Click or drag to resize

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; }

Property Value

Type: FileContent
Remarks
Want to sets this property then must be parameter object type of FileContent. See example
Examples
Puts this property
//* upload file information puts in properties Download... *
SOWIData.Helper.Models.FileContent lFileContent = new
    SOWIData.Helper.Models.FileContent(
        this.GetFileName,
        this.GetFileToByte,
        this.GetFileType);
SOWIWeb.Helper.Session.UploadFile = lFileContent;
See Also