Class ListFileMembersArg
Arguments for ListFileMembersAsync(ListFileMembersArg).
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListFileMembersArg
Constructors
View SourceListFileMembersArg(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 SourceActions
The actions for which to return permissions on a member.
Declaration
public IList<MemberAction> Actions { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<MemberAction> |
File
The file for which you want to see members.
Declaration
public string File { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |
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 |