Пример #1
0
 /// <summary>
 /// Create a new CefV8Value object of type object with accessors.
 /// </summary>
 public static CefV8Value CreateObject(CefV8Accessor accessor)
 {
     return CefV8Value.From(NativeMethods.cef_v8value_create_object(
             accessor != null ? accessor.GetNativePointerAndAddRef() : null
         ));
 }
Пример #2
0
 /// <summary>
 /// Create a new CefV8Value object of type object with accessors.
 /// </summary>
 public static CefV8Value CreateObject(CefV8Accessor accessor)
 {
     return(CefV8Value.From(NativeMethods.cef_v8value_create_object(
                                accessor != null ? accessor.GetNativePointerAndAddRef() : null
                                )));
 }