Show / Hide Table of Contents

Class MemoryImport

Represents a memory imported to a WebAssembly module.

Inheritance
System.Object
Import
MemoryImport
Inherited Members
Import.ModuleName
Import.Name
Import.ToString()
Namespace: Wasmtime
Assembly: Wasmtime.Dotnet.dll
Syntax
public class MemoryImport : Import

Properties

| Improve this Doc View Source

Is64Bit

Gets a value that indicates whether this type of memory represents a 64-bit memory.

Declaration
public bool Is64Bit { get; }
Property Value
Type Description
System.Boolean

true if this type of memory represents a 64-bit memory, false if it represents a 32-bit memory.

| Improve this Doc View Source

Maximum

Gets the maximum memory size (in WebAssembly page units).

Declaration
public long? Maximum { get; }
Property Value
Type Description
System.Nullable<System.Int64>

The maximum memory size (in WebAssembly page units), or null if no maximum is specified.

| Improve this Doc View Source

Minimum

Gets the minimum memory size (in WebAssembly page units).

Declaration
public long Minimum { get; }
Property Value
Type Description
System.Int64

The minimum memory size (in WebAssembly page units).

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX