Class SharedLinkFileInfo
The shared link file info object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SharedLinkFileInfo
Constructors
| Improve this Doc View SourceSharedLinkFileInfo(String, String, String)
Initializes a new instance of the SharedLinkFileInfo class.
Declaration
public SharedLinkFileInfo(string url, string path = null, string password = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | url | The shared link corresponding to either a file or shared link to a folder. If it is for a folder shared link, we use the path param to determine for which file in the folder the view is for. |
System.String | path | The path corresponding to a file in a shared link to a folder. Required for shared links to folders. |
System.String | password | Password for the shared link. Required for password-protected shared links to files unless it can be read from a cookie. |
Properties
| Improve this Doc View SourcePassword
Password for the shared link. Required for password-protected shared links to files unless it can be read from a cookie.
Declaration
public string Password { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Path
The path corresponding to a file in a shared link to a folder. Required for shared links to folders.
Declaration
public string Path { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Url
The shared link corresponding to either a file or shared link to a folder. If it is for a folder shared link, we use the path param to determine for which file in the folder the view is for.
Declaration
public string Url { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |