Dropbox .NET SDK
Show / Hide Table of Contents

Class AccessLevel

Defines the access levels for collaborators.

Inheritance
object
AccessLevel
AccessLevel.Editor
AccessLevel.NoAccess
AccessLevel.Other
AccessLevel.Owner
AccessLevel.Traverse
AccessLevel.Viewer
AccessLevel.ViewerNoComment
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 AccessLevel

Constructors

View Source

AccessLevel()

Initializes a new instance of the AccessLevel class.

Declaration
public AccessLevel()

Properties

View Source

AsEditor

Gets this instance as a Editor, or null.

Declaration
public AccessLevel.Editor AsEditor { get; }
Property Value
Type Description
AccessLevel.Editor
View Source

AsNoAccess

Gets this instance as a NoAccess, or null.

Declaration
public AccessLevel.NoAccess AsNoAccess { get; }
Property Value
Type Description
AccessLevel.NoAccess
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public AccessLevel.Other AsOther { get; }
Property Value
Type Description
AccessLevel.Other
View Source

AsOwner

Gets this instance as a Owner, or null.

Declaration
public AccessLevel.Owner AsOwner { get; }
Property Value
Type Description
AccessLevel.Owner
View Source

AsTraverse

Gets this instance as a Traverse, or null.

Declaration
public AccessLevel.Traverse AsTraverse { get; }
Property Value
Type Description
AccessLevel.Traverse
View Source

AsViewer

Gets this instance as a Viewer, or null.

Declaration
public AccessLevel.Viewer AsViewer { get; }
Property Value
Type Description
AccessLevel.Viewer
View Source

AsViewerNoComment

Gets this instance as a ViewerNoComment, or null.

Declaration
public AccessLevel.ViewerNoComment AsViewerNoComment { get; }
Property Value
Type Description
AccessLevel.ViewerNoComment
View Source

IsEditor

Gets a value indicating whether this instance is Editor

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

IsNoAccess

Gets a value indicating whether this instance is NoAccess

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

IsOther

Gets a value indicating whether this instance is Other

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

IsOwner

Gets a value indicating whether this instance is Owner

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

IsTraverse

Gets a value indicating whether this instance is Traverse

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

IsViewer

Gets a value indicating whether this instance is Viewer

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

IsViewerNoComment

Gets a value indicating whether this instance is ViewerNoComment

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