Enum WasmType
Wasm data types.
[SuppressMessage("Microsoft.Naming", "CA1720:IdentifiersShouldNotContainTypeNames", Justification = "Wasm-specific type names are required.")]
public enum WasmType
Fields
Bytes = 8Byte array. Maps to
byte[]in .NET and a pointer/length pair in WebAssembly.Float32 = 432-bit floating point number. Maps to float in .NET and
f32in WebAssembly.Float64 = 564-bit floating point number. Maps to double in .NET and
f64in WebAssembly.Int16 = 116-bit integer. Maps to short in .NET and
i32in WebAssembly.Int32 = 232-bit integer. Maps to int in .NET and
i32in WebAssembly.Int64 = 364-bit integer. Maps to long in .NET and
i64in WebAssembly.Int8 = 08-bit integer. Maps to sbyte in .NET and
i32in WebAssembly.String = 7String. Maps to string in .NET and a pointer/length pair in WebAssembly (UTF8-encoded).
Timestamp = 6Timestamp. Maps to Instant in .NET and
i64(milliseconds since epoch) in WebAssembly.