Class ListFileMembersArg
Arguments for ListFileMembersAsync(ListFileMembersArg).
Inheritance
System.Object
ListFileMembersArg
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListFileMembersArg
Constructors
| Improve this Doc View SourceListFileMembersArg(String, IEnumerable<MemberAction>, Boolean, UInt32)
Initializes a new instance of the ListFileMembersArg class.
Declaration
public ListFileMembersArg(string file, IEnumerable<MemberAction> actions = null, bool includeInherited = true, uint limit = 100U)
Parameters
Type | Name | Description |
---|---|---|
System.String | file | The file for which you want to see members. |
System.Collections.Generic.IEnumerable<MemberAction> | actions | The actions for which to return permissions on a member. |
System.Boolean | includeInherited | Whether to include members who only have access from a parent shared folder. |
System.UInt32 | limit | Number of members to return max per query. Defaults to 100 if no limit is specified. |
Properties
| Improve this Doc View SourceActions
The actions for which to return permissions on a member.
Declaration
public IList<MemberAction> Actions { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<MemberAction> |
File
The file for which you want to see members.
Declaration
public string File { get; protected set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Boolean |
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 |
---|---|
System.UInt32 |