Skip to content

WasmTypeInfo

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

One WebAssembly function type from the type section.

public sealed record WasmTypeInfo : IEquatable<WasmTypeInfo>

ObjectWasmTypeInfo

WasmTypeInfo(int, IReadOnlyList<byte>, IReadOnlyList<byte>)

Section titled “WasmTypeInfo(int, IReadOnlyList<byte>, IReadOnlyList<byte>)”

One WebAssembly function type from the type section.

Parameters:

public WasmTypeInfo(int Index, IReadOnlyList<byte> ParamTypes, IReadOnlyList<byte> ResultTypes)

The zero-based type index.

Returns: Int32

public int Index { get; init; }

The raw WebAssembly parameter value-type bytes.

Returns: IReadOnlyList<Byte>

public IReadOnlyList<byte> ParamTypes { get; init; }

The raw WebAssembly result value-type bytes.

Returns: IReadOnlyList<Byte>

public IReadOnlyList<byte> ResultTypes { get; init; }