Discuss this help topic in SecureBlackbox Forum

TElOneDriveDataStorage.GetQuota

TElOneDriveDataStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Returns a user's storage quota.

Declaration

[C#]
    void GetQuota(out long Total, out long Free);

[VB.NET]
    Sub GetQuota(Out Total As Long, Out Free As Long)

[Pascal]
    procedure GetQuota(out Total, Free: Int64);

[C++]
    void GetQuota(int64_t &Total, int64_t &Free);

[PHP]
    void GetQuota(integer &$Total, integer &$Free)

[Java]
    void getQuota(long[] Total, long[] Free);

Parameters

  • Total - total quota in bytes.
  • Free - available storage quota in bytes.

Description

    Use this method to check the total and remaining storage quota.

See also:     GetUserInfo    

Discuss this help topic in SecureBlackbox Forum