/.net-sdk

.NET SDK for CloudBoost

Primary LanguageC#

CloudBoost .NET SDK

Slack Status NuGet version 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

NuGet Installation

Install-Package cloudboost

Getting Started


using CB;

Sample Code


// 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();

Getting Started and Tutorials

Visit Getting Started for tutorial and quickstart guide.

API Reference

Visit CloudBoost Docs for API Reference.