コード例 #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())));
 }
コード例 #2
0
 public bool IsSame(ICefV8Context context)
 {
     return(Wrapped.IsSame(context.Unwrap <CefV8Context>()));
 }