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
Inheritance
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListFoldersResult
Constructors
| Improve this Doc 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 |
---|---|---|
System.Collections.Generic.IEnumerable<SharedFolderMetadata> | entries | List of all shared folders the authenticated user has access to. |
System.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
| Improve this Doc 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 |
---|---|
System.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 |
---|---|
System.Collections.Generic.IList<SharedFolderMetadata> |