Codabix.Web.SignalR 1.0.0-preview5-220215

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

// Install Codabix.Web.SignalR as a Cake Tool
#tool nuget:?package=Codabix.Web.SignalR&version=1.0.0-preview5-220215&prerelease

Real-time communication framework for .NET using SignalR and the industrial IoT Middleware Codabix as backend.
Using Codabix any IIoT Entity (PLCs, DBs, Files, Sockets, Ports, IOs ...) can be connected to each other just using Nodes.

This package provides the API required to implement custom client applications using SignalR on top of WebSocket as the transport layer to connect to the communication data bridge for things (Codabix).

Features:
• Authentication using JSON Web Token
• Create, Read, Update & Delete IIoT Entities
 • Setup new connection channels
 • Configure symbols, files, tables, ...
 • Subscribe change notifications
• Read & Write Values of IIoT Entities
 • Directly from the Web to a device, file, table, ...
 • Using custom Human Machine Interfaces (HMI)
 • Visualize processes using historical data

The whole framework is provided for free and can be used for commerical and non-commerical application development.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 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. 
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.0.0-preview9-240322 45 3/22/2024
1.0.0-preview8-240306 49 3/6/2024
1.0.0-preview7-220822 199 8/22/2022
1.0.0-preview6-220706 136 7/6/2022
1.0.0-preview5-220215 285 2/15/2022
1.0.0-preview2-211028 218 10/28/2021
1.0.0-preview1-210921 164 9/21/2021

• introduce new events:
 • `Connecting` occurs when the client is about to establish a connection to the server.
 • `Connected` occurs when the client has successfully established a connection to the server.
 • `Disconnecting` occurs when the client is about to terminate a connection to the server.
 • `Disconnected` occurs when the client has successfully terminated the connection to the server, the connection has been lost without configured automatic reconnect or the automatice reconnecting has been aborted by calling CodabixClient.DisconnectAsync().
 • `Reconnecting` occurs when the client is about to re-establish a broken connection to the server.
 • `Reconnected` occurs when the client has successfully re-established a broken connection to the server.