Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFolderMembersCursorArg

The list folder members cursor arg object

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

Constructors

View Source

ListFolderMembersCursorArg(IEnumerable<MemberAction>, uint)

Initializes a new instance of the ListFolderMembersCursorArg class.

Declaration
public ListFolderMembersCursorArg(IEnumerable<MemberAction> actions = null, uint limit = 1000)
Parameters
Type Name Description
IEnumerable<MemberAction> actions

This is a list indicating whether each returned member will include a boolean value Allow that describes whether the current user can perform the MemberAction on the member.

uint limit

The maximum number of results that include members, groups and invitees to return per request.

Properties

View Source

Actions

This is a list indicating whether each returned member will include a boolean value Allow that describes whether the current user can perform the MemberAction on the member.

Declaration
public IList<MemberAction> Actions { get; protected set; }
Property Value
Type Description
IList<MemberAction>
View Source

Limit

The maximum number of results that include members, groups and invitees to return per request.

Declaration
public uint Limit { get; protected set; }
Property Value
Type Description
uint

See Also

ListFolderMembersArgs
  • View Source
In this article
Back to top Dropbox .NET SDK