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 SourceIsMutable
Determines whether or not the global variable is mutable.
Declaration
public bool IsMutable { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Kind
The kind of value for the global variable.
Declaration
public ValueKind Kind { get; }
Property Value
Type | Description |
---|---|
ValueKind |
Name
The name of the WebAssembly global.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Value
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |