Show / Hide Table of Contents

Class ListFilesResult

Success results for ListReceivedFilesAsync(ListFilesArg).

Inheritance
System.Object
ListFilesResult
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 ListFilesResult

Constructors

| Improve this Doc View Source

ListFilesResult(IEnumerable<SharedFileMetadata>, String)

Initializes a new instance of the ListFilesResult class.

Declaration
public ListFilesResult(IEnumerable<SharedFileMetadata> entries, string cursor = null)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<SharedFileMetadata> entries

Information about the files shared with current user.

System.String cursor

Cursor used to obtain additional shared files.

Properties

| Improve this Doc View Source

Cursor

Cursor used to obtain additional shared files.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Entries

Information about the files shared with current user.

Declaration
public IList<SharedFileMetadata> Entries { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<SharedFileMetadata>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFilesResult(IEnumerable<SharedFileMetadata>, String)
  • Properties
    • Cursor
    • Entries
Back to top Generated by DocFX