Show / Hide Table of Contents

Class ListFolderLongpollArg

The list folder longpoll arg object

Inheritance
System.Object
ListFolderLongpollArg
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.Files
Assembly: Dropbox.Api.dll
Syntax
public class ListFolderLongpollArg

Constructors

| Improve this Doc View Source

ListFolderLongpollArg(String, UInt64)

Initializes a new instance of the ListFolderLongpollArg class.

Declaration
public ListFolderLongpollArg(string cursor, ulong timeout = 30UL)
Parameters
Type Name Description
System.String cursor

A cursor as returned by ListFolderAsync(ListFolderArg) ListFolderAsync(ListFolderArg) or ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg). Cursors retrieved by setting IncludeMediaInfo to true are not supported.

System.UInt64 timeout

A timeout in seconds. The request will block for at most this length of time, plus up to 90 seconds of random jitter added to avoid the thundering herd problem. Care should be taken when using this parameter, as some network infrastructure does not support long timeouts.

Properties

| Improve this Doc View Source

Cursor

A cursor as returned by ListFolderAsync(ListFolderArg) ListFolderAsync(ListFolderArg) or ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg). Cursors retrieved by setting IncludeMediaInfo to true are not supported.

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

Timeout

A timeout in seconds. The request will block for at most this length of time, plus up to 90 seconds of random jitter added to avoid the thundering herd problem. Care should be taken when using this parameter, as some network infrastructure does not support long timeouts.

Declaration
public ulong Timeout { get; protected set; }
Property Value
Type Description
System.UInt64
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFolderLongpollArg(String, UInt64)
  • Properties
    • Cursor
    • Timeout
Back to top Generated by DocFX