Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFileMembersArg

Arguments for ListFileMembersAsync(ListFileMembersArg).

Inheritance
object
ListFileMembersArg
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 ListFileMembersArg

Constructors

View Source

ListFileMembersArg(string, IEnumerable<MemberAction>, bool, uint)

Initializes a new instance of the ListFileMembersArg class.

Declaration
public ListFileMembersArg(string file, IEnumerable<MemberAction> actions = null, bool includeInherited = true, uint limit = 100)
Parameters
Type Name Description
string file

The file for which you want to see members.

IEnumerable<MemberAction> actions

The actions for which to return permissions on a member.

bool includeInherited

Whether to include members who only have access from a parent shared folder.

uint limit

Number of members to return max per query. Defaults to 100 if no limit is specified.

Properties

View Source

Actions

The actions for which to return permissions on a member.

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

File

The file for which you want to see members.

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

IncludeInherited

Whether to include members who only have access from a parent shared folder.

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

Limit

Number of members to return max per query. Defaults to 100 if no limit is specified.

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