Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFileRequestsV2Result

Result for ListV2Async(ListFileRequestsArg) and ListContinueAsync(ListFileRequestsContinueArg).

Inheritance
object
ListFileRequestsV2Result
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.FileRequests
Assembly: Dropbox.Api.dll
Syntax
public class ListFileRequestsV2Result

Constructors

View Source

ListFileRequestsV2Result(IEnumerable<FileRequest>, string, bool)

Initializes a new instance of the ListFileRequestsV2Result class.

Declaration
public ListFileRequestsV2Result(IEnumerable<FileRequest> fileRequests, string cursor, bool hasMore)
Parameters
Type Name Description
IEnumerable<FileRequest> fileRequests

The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder.

string cursor

Pass the cursor into ListContinueAsync(ListFileRequestsContinueArg) to obtain additional file requests.

bool hasMore

Is true if there are additional file requests that have not been returned yet. An additional call to :route:list/continue` can retrieve them.

Properties

View Source

Cursor

Pass the cursor into ListContinueAsync(ListFileRequestsContinueArg) to obtain additional file requests.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
string
View Source

FileRequests

The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder.

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

HasMore

Is true if there are additional file requests that have not been returned yet. An additional call to :route:list/continue` can retrieve them.

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