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 SourceFunctions
The extern functions from an instantiated WebAssembly module.
Declaration
public IReadOnlyList<ExternFunction> Functions { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<ExternFunction> |
Globals
The extern globals from an instantiated WebAssembly module.
Declaration
public IReadOnlyList<ExternGlobal> Globals { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<ExternGlobal> |
Memories
The extern memories from an instantiated WebAssembly module.
Declaration
public IReadOnlyList<ExternMemory> Memories { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<ExternMemory> |