H.Ipc.Core
0.9.11
To single package
See the version list below for details.
dotnet add package H.Ipc.Core --version 0.9.11
NuGet\Install-Package H.Ipc.Core -Version 0.9.11
<PackageReference Include="H.Ipc.Core" Version="0.9.11" />
paket add H.Ipc.Core --version 0.9.11
#r "nuget: H.Ipc.Core, 0.9.11"
// Install H.Ipc.Core as a Cake Addin #addin nuget:?package=H.Ipc.Core&version=0.9.11 // Install H.Ipc.Core as a Cake Tool #tool nuget:?package=H.Ipc.Core&version=0.9.11
H.Ipc
This generator allows you to generate boilerplate code for H.Pipes based on the interface you specify. Generation example: https://github.com/HavenDV/H.ProxyFactory/issues/7#issuecomment-1072287342
Nuget
Install-Package H.Ipc.Generator
Install-Package H.Ipc.Core
Install-Package H.Pipes
Usage
// Common interface
public interface IActionService
{
void ShowTrayIcon();
void HideTrayIcon();
void SendText(string text);
}
// Server side implementation
[H.IpcGenerators.IpcServer]
public partial class ActionService : IActionService
{
public void ShowTrayIcon()
{
MessageBox.Show(nameof(ShowTrayIcon));
}
public void HideTrayIcon()
{
MessageBox.Show(nameof(HideTrayIcon));
}
public void SendText(string text)
{
MessageBox.Show(text);
}
}
// Client side implementation
[H.IpcGenerators.IpcClient]
public partial class ActionServiceClient : IActionService
{
}
// Server initialization
await using var server = new PipeServer<string>(ServerName);
var service = new ActionService();
service.Initialize(server);
await server.StartAsync();
// Client initialization
await using var client = new PipeClient<string>(ServerName);
var service = new ActionServiceClient();
service.Initialize(client);
await client.ConnectAsync();
// Client usage
client.ShowTrayIcon();
Contacts
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 | 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 was computed. |
.NET Framework | net451 is compatible. 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. |
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. |
-
.NETFramework 4.5.1
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
⭐ Last 10 features:
- feat: Moved extensions to H.Generators.Extensions. 2022-05-21
- feat: To H.Generators.Extensions. 2022-05-19
- feat: Added ExceptionOccurred event to generated code. 2022-03-16
- feat: Replaced usings to `global::` prefixes. 2022-03-16
- feat: Changed implementation to use IPipeConnection. 2022-03-16
- feat: Added request.Type server check. 2022-03-12
- feat: Added base RpcRequest type. 2022-03-12
- feat: Added method parameters support. 2022-03-12
- feat: Added RpcMethod based communication. 2022-03-12
- feat: Moved attributes to H.Ipc.Core library. 2022-03-12
🐞 Last 10 bug fixes:
- fix: Fixed tests. 2022-05-19
- feat: Replaced usings to `global::` prefixes. 2022-03-16
- fix: Fixed request code generation for separate client/server libs. 2022-03-15
- fix: Fixed some formatting bugs. 2022-03-12
- fix: Removed net5/net6 targets from H.Ipc.Core. 2022-03-12
- fix: Fixed CI. 2022-03-10