The UploadFileRequest class represents an instance of an upload file request to the Ecrion Omni System repository.
Members/Properties
Name |
Description |
Specifies the login details of the user which requests the upload of a file in the Ecrion Omni System repository. |
|
String which specifies the path in the Ecrion Omni System repository where the file should be uploaded. |
|
String which specifies the name of the file which is to be uploaded to the Ecrion Omni System repository. |
|
Int64 value which specifies the length of the file (in bytes) which should be uploaded to the Ecrion Omni System repository. |
|
String which specifies the comments associated with the file which will be uploaded to the Ecrion Omni System repository. |
|
Stream which contains the actual content of the file which will be uploaded to the Ecrion Omni System repository. |
Specifies the login details of the user which requests the upload of a file in the Ecrion Omni System repository. More details about the LogIn class can be found here. Setting a value to this property is mandatory.
public LogIn LogIn { get; set; }
String which specifies the path in the Ecrion Omni System repository where the file should be uploaded. Setting a value to this property is mandatory.
public LogIn Path { get; set; }
String which specifies the name of the file which is to be uploaded to the Ecrion Omni System repository. Setting a value to this property is mandatory.
public String FileName { get; set; }
Int64 value which specifies the length of the file (in bytes) which should be uploaded to the Ecrion Omni System repository. Setting a value to this property is mandatory.
public Int64 FileLength { get; set; }
String which specifies the comments associated with the file which will be uploaded to the Ecrion Omni System repository. Setting a value to this property is mandatory.
public String Comments { get; set; }
Stream which contains the actual content of the file which will be uploaded to the Ecrion Omni System repository. Setting a value to this property is mandatory.
public Stream Content { get; set; }