/// <summary> /// Returns the stack frame at the specified 0-based index. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_v8_capi.h">cef/include/capi/cef_v8_capi.h</see>. /// </remarks> public CfrV8StackFrame GetFrame(int index) { var call = new CfxV8StackTraceGetFrameRemoteCall(); call.@this = RemotePtr.ptr; call.index = index; call.RequestExecution(RemotePtr.connection); return(CfrV8StackFrame.Wrap(new RemotePtr(call.__retval))); }
/// <summary> /// Returns the stack frame at the specified 0-based index. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_v8_capi.h">cef/include/capi/cef_v8_capi.h</see>. /// </remarks> public CfrV8StackFrame GetFrame(int index) { var call = new CfxV8StackTraceGetFrameRenderProcessCall(); call.self = CfrObject.Unwrap(this); call.index = index; call.RequestExecution(this); return(CfrV8StackFrame.Wrap(call.__retval)); }