Dedoose.Apis.FlashRemoting 1.1.0-dev.91

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.91
NuGet\Install-Package Dedoose.Apis.FlashRemoting -Version 1.1.0-dev.91
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.91" />
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.91
#r "nuget: Dedoose.Apis.FlashRemoting, 1.1.0-dev.91"
#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.91&prerelease

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

Dedoose.Apis.FlashRemoting

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 is compatible.  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 is compatible.  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: Try new CI jobs. 2023-01-08
- feat: Simplified CI. 2023-01-08
- feat: Updated fluorinefx.Client package. 2023-01-07
- feat: Updated to net 7.0. 2023-01-07
- feat: Added SkipLocalsInit. 2022-08-11
- feat: Added IsTrimmable: true to Dedoose.Apis.Helpers. 2022-08-10
- feat: Added net6.0 target. 2022-08-10
- feat: Updated NuGet packages. 2022-05-23
- feat: Added GetProjectAccessDetailsForUserAsync and tests. 2022-01-02
- feat: To CLSCompliant AssemblyAttribute. 2021-12-05
🐞 Last 10 bug fixes:
- fix: Fixed CI tests. 2023-01-08
- fix: Fixed CI tests. 2023-01-08
- fix: Fixed Build CI step. 2023-01-08
- fix: Fixed CI. 2023-01-08
- fix: Fixed CI. 2023-01-08
- fix: Fixed CI. 2023-01-07
- fix: To DotNet.ReproducibleBuilds. 2022-08-02
- fix: Renamed WaitResponse methods to WaitForResponse. 2022-05-23
- fix: Fixed AccountService GrantAdmin/RevokeAdmin return types. 2022-01-02
- fix: Fixed AccountService.SendPaymentReceipt return type. 2021-12-22