Exemple #1
0
        /// <summary>
        /// Returns true (1) if this object and |that| object have the same underlying
        /// data.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_values_capi.h">cef/include/capi/cef_values_capi.h</see>.
        /// </remarks>
        public bool IsSame(CfrBinaryValue that)
        {
            var call = new CfxBinaryValueIsSameRenderProcessCall();

            call.self = CfrObject.Unwrap(this);
            call.that = CfrObject.Unwrap(that);
            call.RequestExecution(this);
            return(call.__retval);
        }
Exemple #2
0
 /// <summary>
 /// Returns true (1) if this object and |that| object have the same underlying
 /// data.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_values_capi.h">cef/include/capi/cef_values_capi.h</see>.
 /// </remarks>
 public bool IsSame(CfrBinaryValue that)
 {
     var call = new CfxBinaryValueIsSameRenderProcessCall();
     call.self = CfrObject.Unwrap(this);
     call.that = CfrObject.Unwrap(that);
     call.RequestExecution(this);
     return call.__retval;
 }