Dropbox .NET SDK
Show / Hide Table of Contents

Class SpaceUsage

Information about a user's space usage and quota.

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

Constructors

View Source

SpaceUsage(ulong, SpaceAllocation)

Initializes a new instance of the SpaceUsage class.

Declaration
public SpaceUsage(ulong used, SpaceAllocation allocation)
Parameters
Type Name Description
ulong used

The user's total space usage (bytes).

SpaceAllocation allocation

The user's space allocation.

Properties

View Source

Allocation

The user's space allocation.

Declaration
public SpaceAllocation Allocation { get; protected set; }
Property Value
Type Description
SpaceAllocation
View Source

Used

The user's total space usage (bytes).

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