Class ListFoldersResult
Result for ListFoldersAsync(ListFoldersArgs) or ListMountableFoldersAsync(ListFoldersArgs), depending on which endpoint was requested. Unmounted shared folders can be identified by the absence of Dropbox.Api.Sharing.SharedFolderMetadata.PathLower.
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListFoldersResult
Constructors
View SourceListFoldersResult(IEnumerable<SharedFolderMetadata>, string)
Initializes a new instance of the ListFoldersResult class.
Declaration
public ListFoldersResult(IEnumerable<SharedFolderMetadata> entries, string cursor = null)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<SharedFolderMetadata> | entries | List of all shared folders the authenticated user has access to. |
| string | cursor | Present if there are additional shared folders that have not been returned yet. Pass the cursor into the corresponding continue endpoint (either ListFoldersContinueAsync(ListFoldersContinueArg) or ListMountableFoldersContinueAsync(ListFoldersContinueArg)) to list additional folders. |
Properties
View SourceCursor
Present if there are additional shared folders that have not been returned yet. Pass the cursor into the corresponding continue endpoint (either ListFoldersContinueAsync(ListFoldersContinueArg) or ListMountableFoldersContinueAsync(ListFoldersContinueArg)) to list additional folders.
Declaration
public string Cursor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Entries
List of all shared folders the authenticated user has access to.
Declaration
public IList<SharedFolderMetadata> Entries { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<SharedFolderMetadata> |