ioctalk-codegen-binary-json-tcp
2.3.44
See the version list below for details.
dotnet add package ioctalk-codegen-binary-json-tcp --version 2.3.44
NuGet\Install-Package ioctalk-codegen-binary-json-tcp -Version 2.3.44
<PackageReference Include="ioctalk-codegen-binary-json-tcp" Version="2.3.44" />
paket add ioctalk-codegen-binary-json-tcp --version 2.3.44
#r "nuget: ioctalk-codegen-binary-json-tcp, 2.3.44"
// Install ioctalk-codegen-binary-json-tcp as a Cake Addin #addin nuget:?package=ioctalk-codegen-binary-json-tcp&version=2.3.44 // Install ioctalk-codegen-binary-json-tcp as a Cake Tool #tool nuget:?package=ioctalk-codegen-binary-json-tcp&version=2.3.44
New slightly changed registration API. Uses .net code generator for communication proxy auto creation and dependency mapping (ioctalk codegen nuget package additional required). This is a performance improvement by eliminate runtime code generation and no assembly type scanning anymore. The new binary wire format and binary message serializer reduces the transfer size.
var localShare = new LocalShareContext();
var tcpMyService = new TcpCommunicationController(new ShortWireFraming(), new BinaryMessageSerializer());
var compositionHost = new TalkCompositionHost(localShare, "MyService");
compositionHost.RegisterAutoGeneratedProxyInterfaceMappings();
compositionHost.RegisterLocalSessionService<IMyService, MyServiceImplementation>();
compositionHost.RegisterRemoteService<IMyClientService>();
If you need to connect to ioctalk legacy wire format and json serialization services use:
new TcpCommunicationController(new LegacyWireFraming(), new JsonMessageSerializer())
Product | Versions 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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- System.IO.Pipelines (>= 7.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on ioctalk-codegen-binary-json-tcp:
Package | Downloads |
---|---|
ioctalk-interception-callmonitoring-insight
IOC-Talk interception source generator for monitoring service calls featuring the IOCTalk.Insight web frontend. |
|
ioctalk-insight-webhost
IOC-Talk insight web host main library. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.4.14 | 130 | 12/18/2024 |
2.4.10 | 89 | 11/26/2024 |
2.4.9 | 211 | 9/13/2024 |
2.4.8 | 118 | 9/12/2024 |
2.4.5 | 313 | 3/25/2024 |
2.4.4 | 133 | 2/28/2024 |
2.4.3 | 157 | 2/21/2024 |
2.4.2 | 132 | 2/15/2024 |
2.4.0 | 195 | 1/19/2024 |
2.3.64 | 157 | 1/8/2024 |
2.3.63 | 148 | 1/8/2024 |
2.3.62 | 144 | 1/8/2024 |
2.3.61 | 160 | 1/3/2024 |
2.3.60 | 149 | 1/2/2024 |
2.3.59 | 136 | 12/22/2023 |
2.3.56 | 182 | 11/21/2023 |
2.3.54 | 162 | 11/9/2023 |
2.3.51 | 267 | 8/11/2023 |
2.3.50 | 187 | 8/7/2023 |
2.3.47 | 211 | 7/7/2023 |
2.3.44 | 198 | 6/22/2023 |
2.3.30 | 185 | 6/7/2023 |
.NET Standard 2.1 version using improved tcp lib, binary and json serialization and proxy code generation at build time.