SkyBridge.InstantRemoting.NetCore
1.0.21.631
See the version list below for details.
dotnet add package SkyBridge.InstantRemoting.NetCore --version 1.0.21.631
NuGet\Install-Package SkyBridge.InstantRemoting.NetCore -Version 1.0.21.631
<PackageReference Include="SkyBridge.InstantRemoting.NetCore" Version="1.0.21.631" />
paket add SkyBridge.InstantRemoting.NetCore --version 1.0.21.631
#r "nuget: SkyBridge.InstantRemoting.NetCore, 1.0.21.631"
// Install SkyBridge.InstantRemoting.NetCore as a Cake Addin #addin nuget:?package=SkyBridge.InstantRemoting.NetCore&version=1.0.21.631 // Install SkyBridge.InstantRemoting.NetCore as a Cake Tool #tool nuget:?package=SkyBridge.InstantRemoting.NetCore&version=1.0.21.631
SkyBridge ® InstantRemoting is the world's simplest and yet most powerful remoting technology.
It is the most powerful because it works purely on OSI model layer 4 - transporation layer. It allows any two computers in the world to instantly exchange arbitrary byte arrays. There can be infinite types of aplications.
It is the simplest because only two to three lines of code are needed on each computer.
See https://skybridge.net.au/ for details.
When two computers communicate, the one who initiates the communication is a client, and the one who responds is a service.
On the computer that acts as a service:
using System; using System.Text; using FrontEdge.SkyBridge.InstantRemoting;
class Program { static void ServiceInvoked(object sender, ServiceInvokedEventArgs args) { Console.WriteLine(Encoding.UTF8.GetString(args.InvocationData)); args.ResponseData = Encoding.UTF8.GetBytes("What's up?"); }
static void Main(string[] args)
{
// Creates a service known as "My frist service" in a free and anonymous condition.
// No account registration is needed, but the server will intentionally delay five
// seconds on the following line.
var api = new InstantRemotingService("My frist service", ServiceInvoked);
Console.ReadKey();
api.Terminate();
}
} On the computer that acts like a client:
using System; using System.Text; using FrontEdge.SkyBridge.InstantRemoting;
class Program
{
static void Main(string[] args)
{
// Creates a client to invoke other services in a free and anonymous condition.
// No account registration is needed, but the server will intentionally delay five
// seconds on the following line.
var api = new InstantRemotingClient();
var response = api.InvokeServiceByName("My frist service", Encoding.UTF8.GetBytes("Hello!"));
Console.WriteLine(Encoding.UTF8.GetString(response));
api.Terminate();
Console.ReadKey();
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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. |
-
net5.0
- BouncyCastle.NetCore (>= 1.8.10)
- BouncyCastle.NetCoreSdk (>= 1.9.3.1)
- Crc32.NET (>= 1.2.0)
- System.Configuration.ConfigurationManager (>= 6.0.0)
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 | |
---|---|---|---|
4.2.0.1046 | 138 | 2/13/2024 | |
4.1.0.1045 | 128 | 2/11/2024 | |
4.0.0.1030 | 125 | 2/2/2024 | |
3.2.1.1002 | 112 | 1/21/2024 | |
3.2.0.996 | 128 | 1/15/2024 | |
3.1.10.995 | 115 | 1/14/2024 | |
3.1.0.996 | 113 | 1/15/2024 | |
3.0.9.988 | 144 | 1/8/2024 | |
3.0.7.980 | 158 | 1/7/2024 | |
3.0.6.980 | 135 | 1/7/2024 | |
3.0.5.980 | 141 | 1/7/2024 | |
3.0.4.980 | 135 | 1/7/2024 | |
3.0.3.967 | 159 | 12/28/2023 | |
3.0.2.967 | 105 | 12/28/2023 | |
3.0.1.967 | 141 | 12/27/2023 | |
3.0.0.965 | 145 | 12/25/2023 | |
2.0.0.958 | 186 | 11/6/2023 | |
1.2.0.948 | 155 | 10/17/2023 | |
1.1.3.802 | 222 | 7/22/2023 | |
1.1.2.740 | 252 | 3/20/2023 | |
1.1.1.722 | 264 | 3/4/2023 | |
1.1.0.699 | 281 | 2/23/2023 | |
1.0.28.692 | 304 | 2/7/2023 | |
1.0.27.692 | 259 | 2/7/2023 | |
1.0.26.689 | 297 | 2/5/2023 | |
1.0.26.683 | 298 | 2/3/2023 | |
1.0.25.638 | 352 | 1/14/2023 | |
1.0.24.638 | 341 | 1/14/2023 | |
1.0.23.631 | 330 | 1/13/2023 | |
1.0.22.631 | 322 | 1/13/2023 | |
1.0.21.631 | 323 | 1/13/2023 | |
1.0.20.607 | 341 | 1/8/2023 | |
1.0.19.587 | 361 | 12/8/2022 | |
1.0.18.587 | 364 | 12/1/2022 | |
1.0.17.484 | 356 | 5/21/2022 |
Initial release.