Show / Hide Table of Contents

Class ListFilesArg

Arguments for ListReceivedFilesAsync(ListFilesArg).

Inheritance
System.Object
ListFilesArg
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListFilesArg

Constructors

| Improve this Doc View Source

ListFilesArg(UInt32, IEnumerable<FileAction>)

Initializes a new instance of the ListFilesArg class.

Declaration
public ListFilesArg(uint limit = 100U, IEnumerable<FileAction> actions = null)
Parameters
Type Name Description
System.UInt32 limit

Number of files to return max per query. Defaults to 100 if no limit is specified.

System.Collections.Generic.IEnumerable<FileAction> actions

A list of FileActions corresponding to FilePermissions that should appear in the response's Permissions field describing the actions the authenticated user can perform on the file.

Properties

| Improve this Doc View Source

Actions

A list of FileActions corresponding to FilePermissions that should appear in the response's Permissions field describing the actions the authenticated user can perform on the file.

Declaration
public IList<FileAction> Actions { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<FileAction>
| Improve this Doc View Source

Limit

Number of files to return max per query. Defaults to 100 if no limit is specified.

Declaration
public uint Limit { get; protected set; }
Property Value
Type Description
System.UInt32
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFilesArg(UInt32, IEnumerable<FileAction>)
  • Properties
    • Actions
    • Limit
Back to top Generated by DocFX