Dropbox .NET SDK
Show / Hide Table of Contents

Class GetSharedLinkMetadataArg

The get shared link metadata arg object

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

Constructors

View Source

GetSharedLinkMetadataArg(string, string, string)

Initializes a new instance of the GetSharedLinkMetadataArg class.

Declaration
public GetSharedLinkMetadataArg(string url, string path = null, string linkPassword = null)
Parameters
Type Name Description
string url

URL of the shared link.

string path

If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific file or sub-folder in this folder. A relative path should be used.

string linkPassword

If the shared link has a password, this parameter can be used.

Properties

View Source

LinkPassword

If the shared link has a password, this parameter can be used.

Declaration
public string LinkPassword { get; protected set; }
Property Value
Type Description
string
View Source

Path

If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific file or sub-folder in this folder. A relative path should be used.

Declaration
public string Path { get; protected set; }
Property Value
Type Description
string
View Source

Url

URL of the shared link.

Declaration
public string Url { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK