Backendless.NET
6.7.0
See the version list below for details.
dotnet add package Backendless.NET --version 6.7.0
NuGet\Install-Package Backendless.NET -Version 6.7.0
<PackageReference Include="Backendless.NET" Version="6.7.0" />
paket add Backendless.NET --version 6.7.0
#r "nuget: Backendless.NET, 6.7.0"
// Install Backendless.NET as a Cake Addin #addin nuget:?package=Backendless.NET&version=6.7.0 // Install Backendless.NET as a Cake Tool #tool nuget:?package=Backendless.NET&version=6.7.0
Backendless SDK for .NET/Xamarin
version 6.7.0
What's new
- Added Backendless.Xamarin project
- Removed support of deprecated versions of .NET.Frameworks: 3.5, 4.0, 4.5, 4.5.2
- Fixed problems with RT
- Added method ReloadCurrentUserData
- Added method GetAuthorizationUrlLink
- Added FindByRole method.
- Added Upsert support
- Support Upsert and BulkUpsert for transactions
- Refactoring of wrong signatures for methods OAuth1 and OAuth2
- Added attachments parameter to SendEmailFromTemplate method.
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. |
.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 is compatible. net471 is compatible. 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.1 | 495 | 1/30/2024 |
6.7.0 | 516 | 8/16/2023 |
6.2.0 | 1,536 | 1/26/2021 |
6.0.2 | 3,005 | 9/25/2020 |
6.0.1 | 832 | 8/24/2020 |
6.0.0 | 941 | 6/24/2020 |
5.5.1 | 2,543 | 4/7/2020 |
5.5.0 | 848 | 4/6/2020 |
5.4.0 | 831 | 3/24/2020 |
5.3.0 | 879 | 2/18/2020 |
5.2.0 | 1,125 | 7/15/2019 |
5.1.6 | 991 | 3/17/2019 |
5.1.5 | 1,074 | 11/2/2018 |
5.1.3 | 1,183 | 8/17/2018 |
5.1.1 | 1,265 | 8/11/2018 |
5.1.0 | 1,067 | 8/4/2018 |
5.0.0 | 1,135 | 7/27/2018 |
Added Backendless.Xamarin project
Removed support of deprecated versions of .NET.Frameworks: 3.5, 4.0, 4.5, 4.5.2
Fixed problems with RT
Added method ReloadCurrentUserData
Added method GetAuthorizationUrlLink
Added FindByRole method.
Added Upsert support
Support Upsert and BulkUpsert for transactions
Refactoring of wrong signatures for methods OAuth1 and OAuth2
Added attachments parameter to SendEmailFromTemplate method.
For full release history see: https://backendless.com/products/release-history/