Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFolderLongpollResult

The list folder longpoll result object

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

Constructors

View Source

ListFolderLongpollResult(bool, ulong?)

Initializes a new instance of the ListFolderLongpollResult class.

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

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

ulong? backoff

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

Properties

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
ulong?
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
bool
  • View Source
In this article
Back to top Dropbox .NET SDK