public static CefV8Value Invoke(this CefV8Value @this, string functionname, IWebView iCefV8Context, params CefV8Value[] args) { return(@this.InvokeAsync(functionname, iCefV8Context, args).Result); }
public async Task <IJavascriptObject> InvokeAsync(string iFunctionName, IWebView iContext, params IJavascriptObject[] iparam) { return(Convert(await _CefV8Value.InvokeAsync(iFunctionName, iContext, Convert(iparam)))); }