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 SourceFunctions
The imported functions required by a WebAssembly module.
Declaration
public IReadOnlyList<FunctionImport> Functions { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<FunctionImport> |
Globals
The imported globals required by a WebAssembly module.
Declaration
public IReadOnlyList<GlobalImport> Globals { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<GlobalImport> |
Memories
The imported memories required by a WebAssembly module.
Declaration
public IReadOnlyList<MemoryImport> Memories { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<MemoryImport> |
Tables
The imported tables required by a WebAssembly module.
Declaration
public IReadOnlyList<TableImport> Tables { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<TableImport> |