Show / Hide Table of Contents

Class ExternGlobal

Represents an external (instantiated) WebAssembly global.

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

Properties

| Improve this Doc View Source

IsMutable

Determines whether or not the global variable is mutable.

Declaration
public bool IsMutable { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Kind

The kind of value for the global variable.

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

Name

The name of the WebAssembly global.

Declaration
public string Name { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Value

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