我能够通过遵循https://github.com/JohnMasen/ChakraCore.NET中提供的示例来访问对象方法,但是找不到在对象中绑定变量的方法。有没有办法绑定属性和变量?而且,有没有比绑定每个方法更好的方法来显示整个对象?
context.ServiceNode.GetService<IJSValueConverterService>().RegisterProxyConverter<DebugEcho>( //register the object converter
(binding, instance, serviceNode) =>
{
binding.SetMethod<string>("echo", instance.Echo); //js: [object].echo=function(s){[native code]}
});