Show / Hide Table of Contents

Class Imports

Represents imported functions, globals, tables, and memories to a WebAssembly module.

Inheritance
System.Object
Imports
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.Imports
Assembly: Wasmtime.Dotnet.dll
Syntax
public class Imports

Properties

| Improve this Doc View Source

Functions

The imported functions required by a WebAssembly module.

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

Globals

The imported globals required by a WebAssembly module.

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

Memories

The imported memories required by a WebAssembly module.

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

Tables

The imported tables required by a WebAssembly module.

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