Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFolderMembersArgs

The list folder members args object

Inheritance
object
ListFolderMembersCursorArg
ListFolderMembersArgs
Inherited Members
ListFolderMembersCursorArg.Actions
ListFolderMembersCursorArg.Limit
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 ListFolderMembersArgs : ListFolderMembersCursorArg

Constructors

View Source

ListFolderMembersArgs(string, IEnumerable<MemberAction>, uint, string)

Initializes a new instance of the ListFolderMembersArgs class.

Declaration
public ListFolderMembersArgs(string sharedFolderId, IEnumerable<MemberAction> actions = null, uint limit = 1000, string path = null)
Parameters
Type Name Description
string sharedFolderId

The ID for the shared folder. When path is provided, the folder ID will be extracted from the path instead.

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.

string path

Optional path to get inherited members. When omitted, uses shared_folder_id to return direct members. When provided, extracts folder ID from this path and returns users who have access through parent shared folder.

Properties

View Source

Path

Optional path to get inherited members. When omitted, uses shared_folder_id to return direct members. When provided, extracts folder ID from this path and returns users who have access through parent shared folder.

Declaration
public string Path { get; protected set; }
Property Value
Type Description
string
View Source

SharedFolderId

The ID for the shared folder. When path is provided, the folder ID will be extracted from the path instead.

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