Dedoose.Apis.FlashRemoting 1.1.0-dev.51

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

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

Dedoose.Apis.FlashRemoting

Language Requirements Requirements Requirements Build Status

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 info = await GetWriteKeyAsync();
var encryptedPassword = PasswordEncryptor.Encrypt(info.Modulus, info.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 net45 is compatible.  net451 was computed.  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: Added RemoteMethod.CanFail property. 2021-07-24
- feat: Added RemoteVoidMethod. 2021-07-22
- feat: Removed GetAccountProjectInfo method. 2021-07-21
- feat: Added fixed version for Dedoose.Apis.Helpers package. 2021-07-14
- feat: Added WaitResponseAsync delay parameter. 2021-07-14
- feat: Added Client.CallAsync tuple overloads. Refactored and optimized calls. 2021-07-13
- feat: Added new "Jobs" utility methods. 2021-07-10
- feat: Added UploadToFileStorageAsync method. 2021-07-10
- feat: Revert last commit. 2021-07-04
- feat: Marked ExportService.StartExcerptsExport as PostMethod. 2021-07-04
🐞 Last 10 bug fixes:
- fix: Fixed xml doc for methods. 2021-07-15
- feat: Added fixed version for Dedoose.Apis.Helpers package. 2021-07-14
- fix: Fixed Deserialize to support variable FailedAMFBodies. 2021-07-14
- fix: Fixed NETSTANDARD21 warning. 2021-07-13
- fix: Fixed Import Tags methods. 2021-07-10
- fix: Fixed null result bug. 2021-07-03
- fix: Changed export methods symKey to nullable string. 2021-07-03
- fix: Fixed service methods to support export jobs. 2021-07-03