Show / Hide Table of Contents

Class MemberAccessLevelResult

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

Inheritance
System.Object
MemberAccessLevelResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class MemberAccessLevelResult

Constructors

| Improve this Doc 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.

System.String warning

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

System.Collections.Generic.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

| Improve this Doc 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
System.Collections.Generic.IList<ParentFolderAccessInfo>
| Improve this Doc 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
| Improve this Doc 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
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • MemberAccessLevelResult(AccessLevel, String, IEnumerable<ParentFolderAccessInfo>)
  • Properties
    • AccessDetails
    • AccessLevel
    • Warning
Back to top Generated by DocFX