Dropbox .NET SDK
Show / Hide Table of Contents

Class SharedLinkFileInfo

The shared link file info object

Inheritance
object
SharedLinkFileInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SharedLinkFileInfo

Constructors

View Source

SharedLinkFileInfo(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 Source

Password

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
View Source

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
View Source

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
  • View Source
In this article
Back to top Dropbox .NET SDK