Show / Hide Table of Contents

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 Source

Functions

The exported functions of a WebAssembly module.

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

Globals

The exported globals of a WebAssembly module.

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

Memories

The exported memories of a WebAssembly module.

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

Tables

The exported tables of a WebAssembly module.

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