Backendless.NET
6.7.2
dotnet add package Backendless.NET --version 6.7.2
NuGet\Install-Package Backendless.NET -Version 6.7.2
<PackageReference Include="Backendless.NET" Version="6.7.2" />
paket add Backendless.NET --version 6.7.2
#r "nuget: Backendless.NET, 6.7.2"
// Install Backendless.NET as a Cake Addin #addin nuget:?package=Backendless.NET&version=6.7.2 // Install Backendless.NET as a Cake Tool #tool nuget:?package=Backendless.NET&version=6.7.2
Backendless SDK for .NET/Xamarin
version 6.7.2
What's new
- Added support for 2FA in Login methods(in this case will be returned Dictionary).
About Backendless
Backendless is a cloud-based serverless platform which significantly simplifies the process of development of web and mobile applications.
This SDK provides the client-side APIs which you can use in your app to take advantage of the Backendless platform functionality.
Backendless has a ton of awesome functionality including:
- Real-time Database (except for the .netstandard2.0 build)
- Real-time Publish/Subscribe Messaging (except for the .netstandard2.0 build)
- User Management (user registration, login, logout, password recovery)
- Push Notification
- File operations (upload, download, copy, move, delete)
- Geo location
- Custom business logic
All APIs can be secured with roles-based security. Also, you can create your own API services and deploy them into Backendless.
Be sure to check out API documentation available at: https://backendless.com/docs/dotnet/
Getting Started
To get started you need to create a Backendless developer account at:
https://develop.backendless.com
Once logged in, you will be prompted to create a backend application. You will be able to select between different "hosting zones". A hosting zone determines where the backend of your app runs. There are two hosting zones at this time: North America and Europe.
If you decide to use the European hosting zone, add the following line of code in your application. Make sure it is done in the application initialization logic. For the applications running in the North American data center, you do not need to set the URL - the SDK comes pre-configured with the North American API endpoint URL.
using BackendlessAPI;
Backendless.URL = "https://eu-api.backendless.com";
Every application has a unique application ID, you will see it right
on the main dashboard. Additionally, there is also API Key which must
be used in your client application. The API key is also available
from the main dashboard of the Backendless backend app. Make sure to use
the .NET API Key
.
When you obtain both application ID and API key, make sure to use them in the following API call to initialize your .NET/Xamarin app:
using BackendlessAPI;
Backendless.InitApp( "YOUR-APP-ID", "YOUR-API-KEY" );
If you run into any problems or have any questions, you can contact us at:
HAPPY CODING!!!!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7
- SocketIoClient (>= 3.0.7)
-
.NETFramework 4.7.1
- SocketIoClient (>= 3.0.7)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.3)
- SocketIoClient (>= 3.0.7)
- System.Collections.Immutable (>= 1.5.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Backendless.NET:
Package | Downloads |
---|---|
Rosemite.TMBackend
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.7.2 | 91 | 12/20/2024 |
6.7.1 | 584 | 1/30/2024 |
6.7.0 | 526 | 8/16/2023 |
6.2.0 | 1,546 | 1/26/2021 |
6.0.2 | 3,016 | 9/25/2020 |
6.0.1 | 840 | 8/24/2020 |
6.0.0 | 949 | 6/24/2020 |
5.5.1 | 2,551 | 4/7/2020 |
5.5.0 | 856 | 4/6/2020 |
5.4.0 | 841 | 3/24/2020 |
5.3.0 | 887 | 2/18/2020 |
5.2.0 | 1,134 | 7/15/2019 |
5.1.6 | 1,000 | 3/17/2019 |
5.1.5 | 1,085 | 11/2/2018 |
5.1.3 | 1,198 | 8/17/2018 |
5.1.1 | 1,277 | 8/11/2018 |
5.1.0 | 1,078 | 8/4/2018 |
5.0.0 | 1,146 | 7/27/2018 |
Added support for the JSON data type.
Added support for the deep-save API.
Added CreateEmailConfirmationURL API.
Added support for the OAuth login API.
Added the PushWithTemplate API.
For full release history see: https://backendless.com/products/release-history/