SkyBridge.InstantRemoting.NetCore 1.0.21.631

There is a newer version of this package available.
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
                    
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.NetCore" Version="1.0.21.631" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SkyBridge.InstantRemoting.NetCore" Version="1.0.21.631" />
                    
Directory.Packages.props
<PackageReference Include="SkyBridge.InstantRemoting.NetCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SkyBridge.InstantRemoting.NetCore --version 1.0.21.631
                    
#r "nuget: SkyBridge.InstantRemoting.NetCore, 1.0.21.631"
                    
#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.
#:package SkyBridge.InstantRemoting.NetCore@1.0.21.631
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SkyBridge.InstantRemoting.NetCore&version=1.0.21.631
                    
Install as a Cake Addin
#tool nuget:?package=SkyBridge.InstantRemoting.NetCore&version=1.0.21.631
                    
Install as a Cake Tool

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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
4.2.0.1046 291 2/13/2024
4.1.0.1045 262 2/11/2024 4.1.0.1045 is deprecated because it is no longer maintained.
4.0.0.1030 259 2/2/2024 4.0.0.1030 is deprecated because it is no longer maintained.
3.2.1.1002 249 1/21/2024 3.2.1.1002 is deprecated because it is no longer maintained.
3.2.0.996 268 1/15/2024 3.2.0.996 is deprecated because it is no longer maintained.
3.1.10.995 260 1/14/2024 3.1.10.995 is deprecated because it is no longer maintained.
3.1.0.996 250 1/15/2024 3.1.0.996 is deprecated because it is no longer maintained.
3.0.9.988 271 1/8/2024 3.0.9.988 is deprecated because it is no longer maintained.
3.0.7.980 300 1/7/2024 3.0.7.980 is deprecated because it is no longer maintained.
3.0.6.980 248 1/7/2024 3.0.6.980 is deprecated because it is no longer maintained.
3.0.5.980 274 1/7/2024 3.0.5.980 is deprecated because it is no longer maintained.
3.0.4.980 264 1/7/2024 3.0.4.980 is deprecated because it is no longer maintained.
3.0.3.967 317 12/28/2023 3.0.3.967 is deprecated because it is no longer maintained.
3.0.2.967 250 12/28/2023 3.0.2.967 is deprecated because it is no longer maintained.
3.0.1.967 276 12/27/2023 3.0.1.967 is deprecated because it is no longer maintained.
3.0.0.965 285 12/25/2023 3.0.0.965 is deprecated because it is no longer maintained.
2.0.0.958 268 11/6/2023 2.0.0.958 is deprecated because it is no longer maintained.
1.2.0.948 246 10/17/2023 1.2.0.948 is deprecated because it is no longer maintained.
1.1.3.802 354 7/22/2023 1.1.3.802 is deprecated because it is no longer maintained and has critical bugs.
1.0.21.631 531 1/13/2023 1.0.21.631 is deprecated because it is no longer maintained.
Loading failed

Initial release.