Beispiel #1
0
 public ICefV8Value ExecuteFunctionWithContext(ICefV8Context context, ICefV8Value obj, ICefV8Value[] arguments)
 {
     return(new CefV8ValueImpl(Wrapped.ExecuteFunctionWithContext(context.Unwrap <CefV8Context>(),
                                                                  obj?.Unwrap <CefV8Value>(), arguments.Select(_ => _.Unwrap <CefV8Value>()).ToArray())));
 }