Class ParentFolderAccessInfo
Contains information about a parent folder that a member has access to.
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ParentFolderAccessInfo
Constructors
View SourceParentFolderAccessInfo(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 SourceFolderName
Display name for the folder.
Declaration
public string FolderName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |
Permissions
The user's permissions for the parent shared folder.
Declaration
public IList<MemberPermission> Permissions { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<MemberPermission> |
SharedFolderId
The identifier of the parent shared folder.
Declaration
public string SharedFolderId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |