Dropbox .NET SDK
Show / Hide Table of Contents

Class MemberAccessLevelResult

Contains information about a member's access level to content after an operation.

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

Constructors

View Source

MemberAccessLevelResult(AccessLevel, string, IEnumerable<ParentFolderAccessInfo>)

Initializes a new instance of the MemberAccessLevelResult class.

Declaration
public MemberAccessLevelResult(AccessLevel accessLevel = null, string warning = null, IEnumerable<ParentFolderAccessInfo> accessDetails = null)
Parameters
Type Name Description
AccessLevel accessLevel

The member still has this level of access to the content through a parent folder.

string warning

A localized string with additional information about why the user has this access level to the content.

IEnumerable<ParentFolderAccessInfo> accessDetails

The parent folders that a member has access to. The field is present if the user has access to the first parent folder where the member gains access.

Properties

View Source

AccessDetails

The parent folders that a member has access to. The field is present if the user has access to the first parent folder where the member gains access.

Declaration
public IList<ParentFolderAccessInfo> AccessDetails { get; protected set; }
Property Value
Type Description
IList<ParentFolderAccessInfo>
View Source

AccessLevel

The member still has this level of access to the content through a parent folder.

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

Warning

A localized string with additional information about why the user has this access level to the content.

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