Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFileMembersBatchArg

Arguments for ListFileMembersBatchAsync(ListFileMembersBatchArg).

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

Constructors

View Source

ListFileMembersBatchArg(IEnumerable<string>, uint)

Initializes a new instance of the ListFileMembersBatchArg class.

Declaration
public ListFileMembersBatchArg(IEnumerable<string> files, uint limit = 1000)
Parameters
Type Name Description
IEnumerable<string> files

Files for which to return members.

uint limit

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

Properties

View Source

Files

Files for which to return members.

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

Limit

Number of members to return max per query. Defaults to 1000 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