Cloud Storage Integrator 2016 Linux Edition
Cloud Storage Integrator 2016 Linux Edition
Questions / Feedback?

GetSharedResourceInfo Method

Gets information about a shared resource.

Syntax

 int GetSharedResourceInfo(char* lpszSharedLink, char* lpszPassword);

Remarks

This method gets information about the shared resource specified by the SharedLink parameter.

This method must be called before downloading a shared resource.

SharedLink specifies the link that was provided by the user that shared the resource. This is required.

Password specifies the password required to access the link. If no password is required pass empty string for this parameter.

After calling this information details about the resource will be provided in the Resource* properties. In addition SharedResource* properties will also be populated with information about the shared link itself.

Resource Sharing Example:

box.ResourceId = "myResourceId";
box.SharedResourceInfo.Password = "password"; //optional
string sharedLink = box.ShareResource();

//The sharedLink may now be shared with other users.

//If a sharedLink is received from another user, obtain information about the resource.
//This must be called before attempting to download the resource
box.GetSharedResourceInfo(url, "password"); //pass empty string if no password is required.

//Download the file as normal once the resource info has been obtained.
box.LocalFile = "..\\myFile.txt";
box.DownloadFile();

//To stop sharing a resource call UnshareResource
box.ResourceId = "myResourceId";
box.UnshareResource();

 
 
Copyright (c) 2019 /n software inc. - All rights reserved.
Cloud Storage Integrator 2016 Linux Edition - Version 16.0 [Build 7239]