Class Exports
Represents the exports of a WebAssembly module.
Inheritance
System.Object
Exports
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.Exports
Assembly: Wasmtime.Dotnet.dll
Syntax
public class Exports
Properties
| Improve this Doc View SourceFunctions
The exported functions of a WebAssembly module.
Declaration
public IReadOnlyList<FunctionExport> Functions { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<FunctionExport> |
Globals
The exported globals of a WebAssembly module.
Declaration
public IReadOnlyList<GlobalExport> Globals { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<GlobalExport> |
Memories
The exported memories of a WebAssembly module.
Declaration
public IReadOnlyList<MemoryExport> Memories { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<MemoryExport> |
Tables
The exported tables of a WebAssembly module.
Declaration
public IReadOnlyList<TableExport> Tables { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<TableExport> |