/// <summary>
 /// Returns a copy of this object. The underlying data will also be copied.
 /// </summary>
 public CefValue Copy()
 {
     return(CefValue.FromNative(
                cef_value_t.copy(_self)
                ));
 }
 /// <summary>
 /// Creates a new object.
 /// </summary>
 public static CefValue Create()
 {
     return(CefValue.FromNative(cef_value_t.create()));
 }