Exemplo n.º 1
0
 /// <summary>
 /// Uploads the specified local file to specified parent folder in cloud with specified custom  file name
 /// </summary>
 /// <param name="parent">Folder in Quatrix cloud</param>
 /// <param name="path">Path to local file</param>
 /// <param name="specifiedName">Custom file name.</param>
 /// <returns>Instance of <see cref="Metadata"/> class which contains information about uploaded file</returns>
 public Metadata Upload( Metadata parent, string path, string specifiedName )
 {
     return parent.Upload( path, specifiedName );
 }
Exemplo n.º 2
0
 /// <summary>
 /// Uploads the specified local file to specified parent folder in cloud
 /// </summary>
 /// <param name="parent">Folder in Quatrix cloud.</param>
 /// <param name="path">Path to local file</param>
 /// <returns>Instance of <see cref="Metadata"/> class which contains information about uploaded file </returns>
 public Metadata Upload( Metadata parent, string path )
 {
     return parent.Upload( path );
 }