/// <summary> /// Create a new CfrStreamWriter object for a custom handler. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_stream_capi.h">cef/include/capi/cef_stream_capi.h</see>. /// </remarks> public static CfrStreamWriter CreateForHandler(CfrWriteHandler handler) { var call = new CfxStreamWriterCreateForHandlerRemoteCall(); call.handler = CfrObject.Unwrap(handler).ptr; call.RequestExecution(); return(CfrStreamWriter.Wrap(new RemotePtr(call.__retval))); }
/// <summary> /// Create a new CfrStreamWriter object for a custom handler. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_stream_capi.h">cef/include/capi/cef_stream_capi.h</see>. /// </remarks> public static CfrStreamWriter CreateForHandler(CfrWriteHandler handler) { var connection = CfxRemoteCallContext.CurrentContext.connection; var call = new CfxStreamWriterCreateForHandlerRemoteCall(); if (!CfrObject.CheckConnection(handler, connection)) { throw new ArgumentException("Render process connection mismatch.", "handler"); } call.handler = CfrObject.Unwrap(handler).ptr; call.RequestExecution(connection); return(CfrStreamWriter.Wrap(new RemotePtr(connection, call.__retval))); }