Dedoose.Apis.FlashRemoting 1.1.0-dev.66

This is a prerelease version of Dedoose.Apis.FlashRemoting.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Dedoose.Apis.FlashRemoting --version 1.1.0-dev.66
NuGet\Install-Package Dedoose.Apis.FlashRemoting -Version 1.1.0-dev.66
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dedoose.Apis.FlashRemoting" Version="1.1.0-dev.66" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dedoose.Apis.FlashRemoting --version 1.1.0-dev.66
#r "nuget: Dedoose.Apis.FlashRemoting, 1.1.0-dev.66"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dedoose.Apis.FlashRemoting as a Cake Addin
#addin nuget:?package=Dedoose.Apis.FlashRemoting&version=1.1.0-dev.66&prerelease

// Install Dedoose.Apis.FlashRemoting as a Cake Tool
#tool nuget:?package=Dedoose.Apis.FlashRemoting&version=1.1.0-dev.66&prerelease

Dedoose.Apis.FlashRemoting

Language Requirements Requirements

Allows you to connect to the Flash Remoting API of the current Flash application using fluorinefx.Client, which has been updated to support .NET Standard.

Nuget

NuGet

Install-Package Dedoose.Apis.FlashRemoting

Usage

using Dedoose.Apis;

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

using var httpClient = new HttpClient();
var client = new DedooseClient(httpClient);

await client.LoginAsync(username, password);

var status = await client.CallAsync(UserService.GetCurrentAccountStatus.Call());

Encrypt password

using Dedoose.Apis.Helpers;

var rsa = await GetWriteKeyAsync();
var encryptedPassword = PasswordEncryptor.Encrypt(rsa.Modulus, rsa.Exponent, password);

Contacts

Product 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 is compatible. 
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

⭐ Last 10 features:
- feat: Updated fluorinefx.Client. 2021-11-29
- feat: Added ContinuousIntegrationBuild. 2021-11-29
- feat: Changed minimal requiments to .Net Framework 4.5.1. 2021-11-23
- feat: To net6 and C# 10. 2021-10-20
- feat: Added CanBeExecutedWithoutLoginAttribute. Marks some methods with this attribute. 2021-09-18
- feat: Added DedooseClient.EncryptAsync method. 2021-09-11
- feat: Added Method.CanReturnNull property and null checks based on C# 8 nullable enable attributes. 2021-08-11
- feat: Added result type check and detailed exception for ValueTuple return methods. 2021-08-10
- feat: Added auto-cast to ValueTyple for IDictionary<string, object> return values. 2021-08-10
- feat: Added RemoteMethod.CanFail property. 2021-07-24
🐞 Last 10 bug fixes:
- fix: Fixed SecuriteService group return types. 2021-11-29
- fix: Fixed DataSetService return types. 2021-11-28
- fix: Fixed TrainingService return types. 2021-11-23
- fix: Fixed ExcerptService return method types. 2021-11-12
- fix: Fixed ExcerptService method return types. 2021-11-12
- fix: Fixed ResourceService method return types. 2021-11-08
- fix: Fixed DescriptorService.AddDescriptor return type. 2021-10-20
- fix: Fixed DescriptorsService field methods return types. 2021-09-28
- fix: Fixed DescriptorsService Set methods return types. 2021-09-28
- fix: Fixed TagService return types. 2021-09-28