9 writes to AllowWebBrowserDrop
System.Windows.Forms.Tests (9)
System\Windows\Forms\WebBrowserTests.cs (9)
267AllowWebBrowserDrop = value 274control.AllowWebBrowserDrop = value; 280control.AllowWebBrowserDrop = !value; 296control.AllowWebBrowserDrop = value; 306control.AllowWebBrowserDrop = value; 314control.AllowWebBrowserDrop = !value; 332Assert.Throws<ObjectDisposedException>(() => control.AllowWebBrowserDrop = value); 345Assert.Throws<InvalidOperationException>(() => control.AllowWebBrowserDrop = value); 3606AllowWebBrowserDrop = allowWebBrowserDrop
12 references to AllowWebBrowserDrop
System.Windows.Forms (2)
System\Windows\Forms\Controls\WebBrowser\WebBrowser.cs (2)
110if (value != AllowWebBrowserDrop) 1201webBrowser2.Value->put_RegisterAsDropTarget(AllowWebBrowserDrop).ThrowOnFailure();
System.Windows.Forms.Tests (10)
System\Windows\Forms\WebBrowserTests.cs (10)
218Assert.True(control.AllowWebBrowserDrop); 232Assert.True(control.AllowWebBrowserDrop); 246Assert.Throws<ObjectDisposedException>(() => control.AllowWebBrowserDrop); 258Assert.Throws<InvalidOperationException>(() => control.AllowWebBrowserDrop); 269Assert.Equal(value, control.AllowWebBrowserDrop); 275Assert.Equal(value, control.AllowWebBrowserDrop); 281Assert.Equal(!value, control.AllowWebBrowserDrop); 297Assert.Equal(value, control.AllowWebBrowserDrop); 307Assert.Equal(value, control.AllowWebBrowserDrop); 315Assert.Equal(!value, control.AllowWebBrowserDrop);