Dropbox .NET SDK
Show / Hide Table of Contents

Class ParentFolderAccessInfo

Contains information about a parent folder that a member has access to.

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

Constructors

View Source

ParentFolderAccessInfo(string, string, IEnumerable<MemberPermission>, string)

Initializes a new instance of the ParentFolderAccessInfo class.

Declaration
public ParentFolderAccessInfo(string folderName, string sharedFolderId, IEnumerable<MemberPermission> permissions, string path)
Parameters
Type Name Description
string folderName

Display name for the folder.

string sharedFolderId

The identifier of the parent shared folder.

IEnumerable<MemberPermission> permissions

The user's permissions for the parent shared folder.

string path

The full path to the parent shared folder relative to the acting user's root.

Properties

View Source

FolderName

Display name for the folder.

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

Path

The full path to the parent shared folder relative to the acting user's root.

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

Permissions

The user's permissions for the parent shared folder.

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

SharedFolderId

The identifier of the parent shared folder.

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