This is the .NET SDK for CloudBoost written in C#. It is available both on NuGet. If you want to have a look into documentation, you can check them out here : https://tutorials.cloudboost.io and API reference is available here : https://docs.cloudboost.io This SDK works with :
- ASP.NET
- Windows Phone
- Windows 10 apps.
- Universal Apps
- WPF / Silverlight
Install-Package cloudboost
using CB;
// AppID and AppKey are your App ID and key of the application created in CloudBoost Dashboard.
//Init your Application
CB.CloudApp.init('YourAppId','YourAppKey');
//Data Storage : Create a CloudObject of type 'Custom' (Note: You need to create a table 'Custom' on CloudBoost Dashboard)
CB.CloudObject obj = new CB.CloudObject('Custom');
//Set the property 'name' (Note: Create a column 'name' of type text on CloudBoost Dashboard)
obj.set('name','CloudBoost');
//Save the object
obj = await obj.SaveAsync();
Visit Getting Started for tutorial and quickstart guide.
Visit CloudBoost Docs for API Reference.