Show / Hide Table of Contents

Class MemoryExport

Represents a memory exported from a WebAssembly module or instance.

Inheritance
System.Object
Export
MemoryExport
Inherited Members
Export.Name
Export.ToString()
Namespace: Wasmtime
Assembly: Wasmtime.Dotnet.dll
Syntax
public class MemoryExport : Export

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