Dropbox .NET SDK
Show / Hide Table of Contents

Class RequestedVisibility

The access permission that can be requested by the caller for the shared link. Note that the final resolved visibility of the shared link takes into account other aspects, such as team and shared folder settings. Check the ResolvedVisibility for more info on the possible resolved visibility values of shared links.

Inheritance
object
RequestedVisibility
RequestedVisibility.Password
RequestedVisibility.Public
RequestedVisibility.TeamOnly
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 RequestedVisibility

Constructors

View Source

RequestedVisibility()

Initializes a new instance of the RequestedVisibility class.

Declaration
public RequestedVisibility()

Properties

View Source

AsPassword

Gets this instance as a Password, or null.

Declaration
public RequestedVisibility.Password AsPassword { get; }
Property Value
Type Description
RequestedVisibility.Password
View Source

AsPublic

Gets this instance as a Public, or null.

Declaration
public RequestedVisibility.Public AsPublic { get; }
Property Value
Type Description
RequestedVisibility.Public
View Source

AsTeamOnly

Gets this instance as a TeamOnly, or null.

Declaration
public RequestedVisibility.TeamOnly AsTeamOnly { get; }
Property Value
Type Description
RequestedVisibility.TeamOnly
View Source

IsPassword

Gets a value indicating whether this instance is Password

Declaration
public bool IsPassword { get; }
Property Value
Type Description
bool
View Source

IsPublic

Gets a value indicating whether this instance is Public

Declaration
public bool IsPublic { get; }
Property Value
Type Description
bool
View Source

IsTeamOnly

Gets a value indicating whether this instance is TeamOnly

Declaration
public bool IsTeamOnly { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK