Class SharedLinkFileInfo
The shared link file info object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SharedLinkFileInfo
Constructors
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 |
|---|---|---|
| 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. |
| string | path | The path corresponding to a file in a shared link to a folder. Required for shared links to folders. |
| string | password | Password for the shared link. Required for password-protected shared links to files unless it can be read from a cookie. |
Properties
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 |
|---|---|
| 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 |
|---|---|
| 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 |
|---|---|
| string |