Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFileRequestsResult

Result for ListAsync().

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

Constructors

View Source

ListFileRequestsResult(IEnumerable<FileRequest>)

Initializes a new instance of the ListFileRequestsResult class.

Declaration
public ListFileRequestsResult(IEnumerable<FileRequest> fileRequests)
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.

Properties

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
In this article
Back to top Dropbox .NET SDK