Dropbox .NET SDK
Show / Hide Table of Contents

Class InsufficientQuotaAmounts

The insufficient quota amounts object

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

Constructors

View Source

InsufficientQuotaAmounts(ulong, ulong, ulong)

Initializes a new instance of the InsufficientQuotaAmounts class.

Declaration
public InsufficientQuotaAmounts(ulong spaceNeeded, ulong spaceShortage, ulong spaceLeft)
Parameters
Type Name Description
ulong spaceNeeded

The amount of space needed to add the item (the size of the item).

ulong spaceShortage

The amount of extra space needed to add the item.

ulong spaceLeft

The amount of space left in the user's Dropbox, less than space_needed.

Properties

View Source

SpaceLeft

The amount of space left in the user's Dropbox, less than space_needed.

Declaration
public ulong SpaceLeft { get; protected set; }
Property Value
Type Description
ulong
View Source

SpaceNeeded

The amount of space needed to add the item (the size of the item).

Declaration
public ulong SpaceNeeded { get; protected set; }
Property Value
Type Description
ulong
View Source

SpaceShortage

The amount of extra space needed to add the item.

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