Show / Hide Table of Contents

Class TableExport

Represents a table exported from a WebAssembly module.

Inheritance
System.Object
Export
TableExport
Inherited Members
Export.Name
Export.ToString()
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)
Namespace: Wasmtime.Exports
Assembly: Wasmtime.Dotnet.dll
Syntax
public class TableExport : Export

Properties

| Improve this Doc View Source

Kind

The value kind of the table.

Declaration
public ValueKind Kind { get; }
Property Value
Type Description
ValueKind
| Improve this Doc View Source

Maximum

The maximum number of elements in the table.

Declaration
public uint Maximum { get; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

Minimum

The minimum number of elements in the table.

Declaration
public uint Minimum { get; }
Property Value
Type Description
System.UInt32
  • Improve this Doc
  • View Source
Back to top Generated by DocFX