Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFoldersArgs

The list folders args object

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

Constructors

View Source

ListFoldersArgs(uint, IEnumerable<FolderAction>)

Initializes a new instance of the ListFoldersArgs class.

Declaration
public ListFoldersArgs(uint limit = 1000, IEnumerable<FolderAction> actions = null)
Parameters
Type Name Description
uint limit

The maximum number of results to return per request.

IEnumerable<FolderAction> actions

A list of FolderActions corresponding to FolderPermissions that should appear in the response's Permissions field describing the actions the authenticated user can perform on the folder.

Properties

View Source

Actions

A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's Permissions field describing the actions the authenticated user can perform on the folder.

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

Limit

The maximum number of results to return per request.

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