WasmTableInfo
Namespace: Dotsider.Core.Analysis.Models
Assembly: Dotsider.Core.dll
One WebAssembly table declaration.
public sealed record WasmTableInfo : IEquatable<WasmTableInfo>Inheritance
Section titled “Inheritance”Object → WasmTableInfo
Implements
Section titled “Implements”Constructors
Section titled “Constructors”WasmTableInfo(int, string, ulong, ulong?)
Section titled “WasmTableInfo(int, string, ulong, ulong?)”One WebAssembly table declaration.
Parameters:
Index(Int32): The zero-based table index.RefType(String): The table reference type.Minimum(UInt64): The minimum element count.Maximum(Nullable<UInt64>): The maximum element count when one is declared.
public WasmTableInfo(int Index, string RefType, ulong Minimum, ulong? Maximum)Properties
Section titled “Properties”The zero-based table index.
Returns: Int32
public int Index { get; init; }Maximum
Section titled “Maximum”The maximum element count when one is declared.
Returns: Nullable<UInt64>
public ulong? Maximum { get; init; }Minimum
Section titled “Minimum”The minimum element count.
Returns: UInt64
public ulong Minimum { get; init; }RefType
Section titled “RefType”The table reference type.
Returns: String
public string RefType { get; init; }