Show / Hide Table of Contents

Class FunctionBinding

Represents a host function binding.

Inheritance
System.Object
Binding
FunctionBinding
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 Source

FunctionBinding(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 Source

Import

The function import of the binding.

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

Method

The method the import is bound to.

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