Dropbox .NET SDK
Show / Hide Table of Contents

Class StorageBucket

Describes the number of users in a specific storage bucket.

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

Constructors

View Source

StorageBucket(string, ulong)

Initializes a new instance of the StorageBucket class.

Declaration
public StorageBucket(string bucket, ulong users)
Parameters
Type Name Description
string bucket

The name of the storage bucket. For example, '1G' is a bucket of users with storage size up to 1 Giga.

ulong users

The number of people whose storage is in the range of this storage bucket.

Properties

View Source

Bucket

The name of the storage bucket. For example, '1G' is a bucket of users with storage size up to 1 Giga.

Declaration
public string Bucket { get; protected set; }
Property Value
Type Description
string
View Source

Users

The number of people whose storage is in the range of this storage bucket.

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