SkyBridge.InstantRemoting.NetFramework 1.0.18.587

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

// Install SkyBridge.InstantRemoting.NetFramework as a Cake Tool
#tool nuget:?package=SkyBridge.InstantRemoting.NetFramework&version=1.0.18.587                

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 Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  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
4.2.0.1046 132 2/13/2024
4.1.0.1045 126 2/11/2024 4.1.0.1045 is deprecated because it is no longer maintained.
4.0.0.1030 134 2/2/2024 4.0.0.1030 is deprecated because it is no longer maintained.
3.2.1.1002 128 1/21/2024 3.2.1.1002 is deprecated because it is no longer maintained.
3.2.0.996 145 1/15/2024 3.2.0.996 is deprecated because it is no longer maintained.
3.1.10.995 139 1/14/2024 3.1.10.995 is deprecated because it is no longer maintained.
3.1.0.996 121 1/15/2024 3.1.0.996 is deprecated because it is no longer maintained.
3.0.9.986 137 1/8/2024 3.0.9.986 is deprecated because it is no longer maintained.
3.0.8.980 127 1/8/2024 3.0.8.980 is deprecated because it is no longer maintained.
3.0.7.980 141 1/7/2024 3.0.7.980 is deprecated because it is no longer maintained.
3.0.5.980 149 1/7/2024 3.0.5.980 is deprecated because it is no longer maintained.
3.0.4.980 128 1/7/2024 3.0.4.980 is deprecated because it is no longer maintained.
3.0.3.967 166 12/28/2023 3.0.3.967 is deprecated because it is no longer maintained.
3.0.2.967 138 12/28/2023 3.0.2.967 is deprecated because it is no longer maintained.
3.0.1.967 131 12/27/2023 3.0.1.967 is deprecated because it is no longer maintained.
3.0.0.965 130 12/25/2023 3.0.0.965 is deprecated because it is no longer maintained.
2.0.0.958 201 11/6/2023 2.0.0.958 is deprecated because it is no longer maintained.
1.2.0.948 172 10/17/2023 1.2.0.948 is deprecated because it is no longer maintained.
1.1.3.802 228 7/22/2023 1.1.3.802 is deprecated because it is no longer maintained and has critical bugs.
1.1.2.740 267 3/20/2023 1.1.2.740 is deprecated because it is no longer maintained.
1.1.1.722 276 3/4/2023 1.1.1.722 is deprecated because it is no longer maintained.
1.1.0.699 283 2/23/2023 1.1.0.699 is deprecated because it is no longer maintained.
1.0.28.692 297 2/7/2023 1.0.28.692 is deprecated because it is no longer maintained.
1.0.26.689 303 2/5/2023 1.0.26.689 is deprecated because it is no longer maintained.
1.0.24.683 269 2/3/2023 1.0.24.683 is deprecated because it is no longer maintained.
1.0.23.631 380 1/13/2023 1.0.23.631 is deprecated because it is no longer maintained.
1.0.20.607 341 1/8/2023 1.0.20.607 is deprecated because it is no longer maintained.
1.0.19.587 313 12/8/2022
1.0.18.587 357 12/1/2022 1.0.18.587 is deprecated because it is no longer maintained.
1.0.17.484 362 5/21/2022