1 write to _control
System.Windows.Forms.Tests (1)
System\Windows\Forms\AxWebBrowserTests.cs (1)
21_control = new AxWebBrowser();
18 references to _control
System.Windows.Forms.Tests (18)
System\Windows\Forms\AxWebBrowserTests.cs (18)
22((ISupportInitialize)_control).BeginInit(); 23_form.Controls.Add(_control); 24((ISupportInitialize)_control).EndInit(); 30var properties = TypeDescriptor.GetProperties(_control); 31var events = TypeDescriptor.GetEvents(_control); 62_control.Invoking(c => c.GoHome()).Should().NotThrow(); 68_control.Invoking(c => c.GoSearch()).Should().NotThrow(); 74_control.Invoking(c => c.Navigate(_url.ToString())).Should().NotThrow(); 81_control.BeforeNavigate2 += (sender, e) => eventRaised = true; 83_control.Invoking(c => c.Navigate2(ref _url)).Should().NotThrow(); 91_control.Invoking(c => c.Stop()).Should().NotThrow(); 97_control.Invoking(c => c.GetProperty("url")).Should().NotThrow(); 103object prop = _control.GetProperty("url"); 106_control.Invoking(c => c.PutProperty("url", _url)).Should().NotThrow(); 108prop = _control.GetProperty("url"); 119_control.Invoking(c => c.QueryStatusWB(cmdId)).Should().NotThrow(); 137_control.Invoking(c => c.ExecWB(cmdId, cmdExecOpt)).Should().NotThrow(); 142_control.Dispose();