Show / Hide Table of Contents

Class SharedLinkFileInfo

The shared link file info object

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

Constructors

| Improve this Doc 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
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 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
System.String
| Improve this Doc 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
System.String
| Improve this Doc 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
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • SharedLinkFileInfo(String, String, String)
  • Properties
    • Password
    • Path
    • Url
Back to top Generated by DocFX