Show / Hide Table of Contents

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 Source

ListFileMembersArg(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 Source

Actions

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>
| Improve this Doc View Source

File

The file for which you want to see members.

Declaration
public string File { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc 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
System.Boolean
| Improve this Doc 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
System.UInt32
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFileMembersArg(String, IEnumerable<MemberAction>, Boolean, UInt32)
  • Properties
    • Actions
    • File
    • IncludeInherited
    • Limit
Back to top Generated by DocFX