Class FunctionBinding
Represents a host function binding.
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.Bindings
Assembly: Wasmtime.Dotnet.dll
Syntax
public class FunctionBinding : Binding
Constructors
| Improve this Doc View SourceFunctionBinding(FunctionImport, MethodInfo)
Constructs a new function binding.
Declaration
public FunctionBinding(FunctionImport import, MethodInfo method)
Parameters
Type | Name | Description |
---|---|---|
FunctionImport | import | The function import of the binding. |
System.Reflection.MethodInfo | method | The method the import is bound to. |
Properties
| Improve this Doc View SourceImport
The function import of the binding.
Declaration
public FunctionImport Import { get; }
Property Value
Type | Description |
---|---|
FunctionImport |
Method
The method the import is bound to.
Declaration
public MethodInfo Method { get; }
Property Value
Type | Description |
---|---|
System.Reflection.MethodInfo |