Dropbox .NET SDK
Show / Hide Table of Contents

Class SpaceAllocation

Space is allocated differently based on the type of account.

Inheritance
object
SpaceAllocation
SpaceAllocation.Individual
SpaceAllocation.Other
SpaceAllocation.Team
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 SpaceAllocation

Constructors

View Source

SpaceAllocation()

Initializes a new instance of the SpaceAllocation class.

Declaration
public SpaceAllocation()

Properties

View Source

AsIndividual

Gets this instance as a Individual, or null.

Declaration
public SpaceAllocation.Individual AsIndividual { get; }
Property Value
Type Description
SpaceAllocation.Individual
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public SpaceAllocation.Other AsOther { get; }
Property Value
Type Description
SpaceAllocation.Other
View Source

AsTeam

Gets this instance as a Team, or null.

Declaration
public SpaceAllocation.Team AsTeam { get; }
Property Value
Type Description
SpaceAllocation.Team
View Source

IsIndividual

Gets a value indicating whether this instance is Individual

Declaration
public bool IsIndividual { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
View Source

IsTeam

Gets a value indicating whether this instance is Team

Declaration
public bool IsTeam { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK