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