Dropbox .NET SDK
Show / Hide Table of Contents

Class LinkSettings

Settings that apply to a link.

Inheritance
object
LinkSettings
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 LinkSettings

Constructors

View Source

LinkSettings(AccessLevel, LinkAudience, LinkExpiry, LinkPassword)

Initializes a new instance of the LinkSettings class.

Declaration
public LinkSettings(AccessLevel accessLevel = null, LinkAudience audience = null, LinkExpiry expiry = null, LinkPassword password = null)
Parameters
Type Name Description
AccessLevel accessLevel

The access level on the link for this file. Currently, it only accepts 'viewer' and 'viewer_no_comment'.

LinkAudience audience

The type of audience on the link for this file.

LinkExpiry expiry

An expiry timestamp to set on a link.

LinkPassword password

The password for the link.

Properties

View Source

AccessLevel

The access level on the link for this file. Currently, it only accepts 'viewer' and 'viewer_no_comment'.

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

Audience

The type of audience on the link for this file.

Declaration
public LinkAudience Audience { get; protected set; }
Property Value
Type Description
LinkAudience
View Source

Expiry

An expiry timestamp to set on a link.

Declaration
public LinkExpiry Expiry { get; protected set; }
Property Value
Type Description
LinkExpiry
View Source

Password

The password for the link.

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