Discuss this help topic in SecureBlackbox Forum

Clouds: Get Box.com account information

To get information about the user account, use TElBoxDataStorage.GetAccountInfo() method. The method returns an instance of TElBoxUser, which contains all data. Your code should free/dispose of the obtained TElBoxUser instance.

C#:


TElBoxUser info = storage.GetAccountInfo();
Console.WriteLine("User name: {0}", info.Name);
Console.WriteLine("Available: {0}", info.SpaceAmount);
Console.WriteLine("Used: {0}\n", info.SpaceUsed);
info.Dispose();

How To articles about Box.com cloud

Discuss this help topic in SecureBlackbox Forum