Show / Hide Table of Contents

Class Externs

Represents external (instantiated) WebAssembly functions, globals, tables, and memories.

Inheritance
System.Object
Externs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Wasmtime.Externs
Assembly: Wasmtime.Dotnet.dll
Syntax
public class Externs

Properties

| Improve this Doc View Source

Functions

The extern functions from an instantiated WebAssembly module.

Declaration
public IReadOnlyList<ExternFunction> Functions { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<ExternFunction>
| Improve this Doc View Source

Globals

The extern globals from an instantiated WebAssembly module.

Declaration
public IReadOnlyList<ExternGlobal> Globals { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<ExternGlobal>
| Improve this Doc View Source

Memories

The extern memories from an instantiated WebAssembly module.

Declaration
public IReadOnlyList<ExternMemory> Memories { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<ExternMemory>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX