SkyBridge.InstantRemotingAPI.NetFramework 1.0.17.481

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package SkyBridge.InstantRemotingAPI.NetFramework --version 1.0.17.481
NuGet\Install-Package SkyBridge.InstantRemotingAPI.NetFramework -Version 1.0.17.481
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.InstantRemotingAPI.NetFramework" Version="1.0.17.481" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SkyBridge.InstantRemotingAPI.NetFramework --version 1.0.17.481
#r "nuget: SkyBridge.InstantRemotingAPI.NetFramework, 1.0.17.481"
#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.InstantRemotingAPI.NetFramework as a Cake Addin
#addin nuget:?package=SkyBridge.InstantRemotingAPI.NetFramework&version=1.0.17.481

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

SkyBridge.InstantRemoting is the world's simplest and yet most flexible way for any two computers in the world to communicate with each other instantly.

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(serviceName: "My frist service", 
            serviceInvokedHandler: 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(serviceName: "My frist service", data: 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

Initial release.