WapcGuest 0.1.1

dotnet add package WapcGuest --version 0.1.1
NuGet\Install-Package WapcGuest -Version 0.1.1
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="WapcGuest" Version="0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WapcGuest --version 0.1.1
#r "nuget: WapcGuest, 0.1.1"
#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 WapcGuest as a Cake Addin
#addin nuget:?package=WapcGuest&version=0.1.1

// Install WapcGuest as a Cake Tool
#tool nuget:?package=WapcGuest&version=0.1.1

This library provides a C# implementation of the waPC standard for WebAssembly guest modules. It allows any waPC-compliant WebAssembly host to invoke to procedures inside a C# compiled guest and similarly for the guest to invoke procedures exposed by the host.

Requirements

The code requires .NET 7, which is currently (as of July 2022) in preview mode. Executing dotnet --version should return 7.0.100-preview.4 or later.

Usage

Create a Console application:

dotnet new console -o MyFirstWapcModule
cd MyFirstWapcModule
dotnet add package Wasi.Sdk --prerelease
dotnet add package WapcGuest

Edit the Program.cs file and replace its contents to match the following ones:

using WapcGuest;
using System.Text;

static byte[] callHost(byte[] payload)
{
  var binding = "binding_value";
  var wapcNamespace = "wapc_namespace_value";
  var operation = "operation_value";
  var payloadGuest = "This is the payload coming from the waPC guest";
  var payloadGuestBytes = Encoding.UTF8.GetBytes(payloadGuest);

  var hostResponseBytes = Wapc.HostCall(binding, wapcNamespace, operation, payloadGuestBytes);
  var hostResponse = Encoding.UTF8.GetString(hostResponseBytes);

  string response = $"the host responded with {hostResponse}";
  var responseBytes = Encoding.UTF8.GetBytes(response);

  return responseBytes;
}

static byte[] echo(byte[] payload)
{
  return payload;
}

var wapc = new Wapc();
wapc.RegisterFunction("echo", echo);
wapc.RegisterFunction("callHost", callHost);

Finally, build the WebAssembly module in this way:

dotnet build

You can now invoke both the echo and the callHost functions from any waPC host.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
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
0.1.1 480 6/30/2022
0.1.0 199 6/30/2022