Skip to content

WasmExportInfo

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

One WebAssembly export entry.

public sealed record WasmExportInfo : IEquatable<WasmExportInfo>

ObjectWasmExportInfo

WasmExportInfo(string, WasmExternalKind, int)

Section titled “WasmExportInfo(string, WasmExternalKind, int)”

One WebAssembly export entry.

Parameters:

  • Name (String): The exported name.
  • Kind (WasmExternalKind): The exported external kind.
  • Index (Int32): The exported index in the kind’s index space.
public WasmExportInfo(string Name, WasmExternalKind Kind, int Index)

The exported index in the kind’s index space.

Returns: Int32

public int Index { get; init; }

The exported external kind.

Returns: WasmExternalKind

public WasmExternalKind Kind { get; init; }

The exported name.

Returns: String

public string Name { get; init; }