Class UploadFileRequest

Top Previous Topic Next Topic  Print this topic

The UploadFileRequest class represents an instance of an upload file request to the Ecrion Omni System repository.

 

Members/Properties

 

Name

Description

LogIn

Specifies the login details of the user which requests the upload of a file in the Ecrion Omni System repository.

Path

String which specifies the path in the Ecrion Omni System repository where the file should be uploaded.

FileName

String which specifies the name of the file which is to be uploaded to the Ecrion Omni System repository.

FileLength

Int64 value which specifies the length of the file (in bytes) which should be uploaded to the Ecrion Omni System repository.

Comments

String which specifies the comments associated with the file which will be uploaded to the Ecrion Omni System repository.

Content

Stream which contains the actual content of the file which will be uploaded to the Ecrion Omni System repository.

 

 

LogIn

 

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

 

 

 

 

 

 

Path

 

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

 

 

 

 

 

FileName

 

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

 

 

 

 

 

FileLength

 

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

 

 

 

 

 

Comments

 

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

 

 

 

 

 

Content

 

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