inmation-api-client 0.9.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package inmation-api-client --version 0.9.2
NuGet\Install-Package inmation-api-client -Version 0.9.2
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="inmation-api-client" Version="0.9.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add inmation-api-client --version 0.9.2
#r "nuget: inmation-api-client, 0.9.2"
#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 inmation-api-client as a Cake Addin
#addin nuget:?package=inmation-api-client&version=0.9.2

// Install inmation-api-client as a Cake Tool
#tool nuget:?package=inmation-api-client&version=0.9.2

inmation .Net API Client

The client can be downloaded from NuGet.

Example Console application

  • Create a Console application.
  • Add the 'inmation-api-client' NuGet package to the project.
  • Replace the content of the Program.cs class with the one of the following examples:

Code snippet:

using inmation.api;

Client apiClient = new Client();

string WebSocketUrl = "ws://localhost:8000/ws";

RpcOptions options = new RpcOptions();
options.Username = "USERNAME";
options.Password = "PASSWORD";

// Connect and authenticate. By providing credentials to the connectWs method, the credentials will be stored in the session.
ConnectionResponse connectionresponse = apiClient.ConnectWs(WebSocketUrl, options).Result;
if (connectionresponse.Error != null)
{
    Console.WriteLine(string.Format("Connect failed: {0}", connectionresponse.Error?.First().Message));
}
Product Compatible and additional computed target framework versions.
.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 was computed.  net472 was computed.  net48 was computed.  net481 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
1.4.0 3,441 10/28/2021
1.3.2 5,760 2/6/2020
1.3.1 521 1/22/2020
1.2.2 2,105 1/25/2019
1.2.1 832 1/18/2019
1.2.0 839 1/16/2019
1.1.1 895 10/24/2018
1.1.0 785 10/23/2018
1.0.0 1,086 8/20/2018
0.9.4 1,411 4/6/2018
0.9.3 982 3/26/2018
0.9.2 1,226 2/13/2018
0.9.1 1,154 2/7/2018
0.9.0 1,122 2/1/2018
0.3.3 1,273 12/11/2017
0.3.2 1,007 12/11/2017
0.3.1 1,000 12/5/2017
0.2.0 1,308 8/31/2017

- Resolved issue in 'Intervals' property in model class 'HistoricalDataItemData'.
- Added 'ItemValue' property to model class 'HistoricalDataIntervalData'.
- Renamed VqtIterator() to ItemValueIterator() in model classes 'HistoricalDataIntervalData' and 'HistoricalDataItemData'.