public void NewWindow3(ref object ppDisp, ref bool cancel, UInt32 dwFlags, string bstrUrlContext, string bstrUrl) { var e = new WebBrowserNewWindow3EventArgs(ref ppDisp, bstrUrlContext, bstrUrl); parent.OnNewWindow3(e); ppDisp = e.ppDisp; cancel = e.Cancel; }
protected virtual void OnNewWindow3(WebBrowserNewWindow3EventArgs e) { NewWindow3(this, e); }