Show / Hide Table of Contents

Class ListFolderLongpollResult

The list folder longpoll result object

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

Constructors

| Improve this Doc View Source

ListFolderLongpollResult(Boolean, Nullable<UInt64>)

Initializes a new instance of the ListFolderLongpollResult class.

Declaration
public ListFolderLongpollResult(bool changes, ulong? backoff = null)
Parameters
Type Name Description
System.Boolean changes

Indicates whether new changes are available. If true, call ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg) to retrieve the changes.

System.Nullable<System.UInt64> backoff

If present, backoff for at least this many seconds before calling ListFolderLongpollAsync(ListFolderLongpollArg) again.

Properties

| Improve this Doc View Source

Backoff

If present, backoff for at least this many seconds before calling ListFolderLongpollAsync(ListFolderLongpollArg) again.

Declaration
public ulong? Backoff { get; protected set; }
Property Value
Type Description
System.Nullable<System.UInt64>
| Improve this Doc View Source

Changes

Indicates whether new changes are available. If true, call ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg) to retrieve the changes.

Declaration
public bool Changes { get; protected set; }
Property Value
Type Description
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFolderLongpollResult(Boolean, Nullable<UInt64>)
  • Properties
    • Backoff
    • Changes
Back to top Generated by DocFX