Dropbox .NET SDK
Show / Hide Table of Contents

Class PathLinkMetadata

Metadata for a path-based shared link.

Inheritance
object
LinkMetadata
PathLinkMetadata
Inherited Members
LinkMetadata.IsPath
LinkMetadata.AsPath
LinkMetadata.IsCollection
LinkMetadata.AsCollection
LinkMetadata.Url
LinkMetadata.Visibility
LinkMetadata.Expires
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 PathLinkMetadata : LinkMetadata

Constructors

View Source

PathLinkMetadata(string, Visibility, string, DateTime?)

Initializes a new instance of the PathLinkMetadata class.

Declaration
public PathLinkMetadata(string url, Visibility visibility, string path, DateTime? expires = null)
Parameters
Type Name Description
string url

URL of the shared link.

Visibility visibility

Who can access the link.

string path

Path in user's Dropbox.

DateTime? expires

Expiration time, if set. By default the link won't expire.

Properties

View Source

Path

Path in user's Dropbox.

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