Class MemoryExport
Represents a memory exported from a WebAssembly module or instance.
Namespace: Wasmtime
Assembly: Wasmtime.Dotnet.dll
Syntax
public class MemoryExport : Export
Properties
| Improve this Doc View SourceIs64Bit
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 |
|
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 |
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). |