Dropbox .NET SDK
Show / Hide Table of Contents

Class ExcludedUsersUpdateArg

Argument of excluded users update operation. Should include a list of users to add/remove (according to endpoint), Maximum size of the list is 1000 users.

Inheritance
object
ExcludedUsersUpdateArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class ExcludedUsersUpdateArg

Constructors

View Source

ExcludedUsersUpdateArg(IEnumerable<UserSelectorArg>)

Initializes a new instance of the ExcludedUsersUpdateArg class.

Declaration
public ExcludedUsersUpdateArg(IEnumerable<UserSelectorArg> users = null)
Parameters
Type Name Description
IEnumerable<UserSelectorArg> users

List of users to be added/removed.

Properties

View Source

Users

List of users to be added/removed.

Declaration
public IList<UserSelectorArg> Users { get; protected set; }
Property Value
Type Description
IList<UserSelectorArg>
  • View Source
In this article
Back to top Dropbox .NET SDK