Dropbox .NET SDK
Show / Hide Table of Contents

Class MembersListArg

The members list arg object

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

Constructors

View Source

MembersListArg(uint, bool)

Initializes a new instance of the MembersListArg class.

Declaration
public MembersListArg(uint limit = 1000, bool includeRemoved = false)
Parameters
Type Name Description
uint limit

Number of results to return per call.

bool includeRemoved

Whether to return removed members.

Properties

View Source

IncludeRemoved

Whether to return removed members.

Declaration
public bool IncludeRemoved { get; protected set; }
Property Value
Type Description
bool
View Source

Limit

Number of results to return per call.

Declaration
public uint Limit { get; protected set; }
Property Value
Type Description
uint
  • View Source
In this article
Back to top Dropbox .NET SDK