9 writes to AllowWebBrowserDrop
System.Windows.Forms.Tests (9)
System\Windows\Forms\WebBrowserTests.cs (9)
269AllowWebBrowserDrop = value 276control.AllowWebBrowserDrop = value; 282control.AllowWebBrowserDrop = !value; 298control.AllowWebBrowserDrop = value; 308control.AllowWebBrowserDrop = value; 316control.AllowWebBrowserDrop = !value; 334Assert.Throws<ObjectDisposedException>(() => control.AllowWebBrowserDrop = value); 347Assert.Throws<InvalidOperationException>(() => control.AllowWebBrowserDrop = value); 3608AllowWebBrowserDrop = allowWebBrowserDrop
12 references to AllowWebBrowserDrop
System.Windows.Forms (2)
System\Windows\Forms\Controls\WebBrowser\WebBrowser.cs (2)
110if (value != AllowWebBrowserDrop) 1203webBrowser2.Value->put_RegisterAsDropTarget(AllowWebBrowserDrop).ThrowOnFailure();
System.Windows.Forms.Tests (10)
System\Windows\Forms\WebBrowserTests.cs (10)
220Assert.True(control.AllowWebBrowserDrop); 234Assert.True(control.AllowWebBrowserDrop); 248Assert.Throws<ObjectDisposedException>(() => control.AllowWebBrowserDrop); 260Assert.Throws<InvalidOperationException>(() => control.AllowWebBrowserDrop); 271Assert.Equal(value, control.AllowWebBrowserDrop); 277Assert.Equal(value, control.AllowWebBrowserDrop); 283Assert.Equal(!value, control.AllowWebBrowserDrop); 299Assert.Equal(value, control.AllowWebBrowserDrop); 309Assert.Equal(value, control.AllowWebBrowserDrop); 317Assert.Equal(!value, control.AllowWebBrowserDrop);