6 references to SetAttribute
System.Windows.Forms (1)
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (1)
257set => SetAttribute("Name", value);
System.Windows.Forms.Tests (5)
System\Windows\Forms\HtmlElementTests.cs (5)
2448element.SetAttribute("customAttribute", value); 2452element.SetAttribute("customAttribute", value); 2456element.SetAttribute("customAttribute", "newValue"); 2472Assert.Throws<ArgumentException>(() => element.SetAttribute(null, "value")); 2487COMException ex = Assert.Throws<COMException>(() => element.SetAttribute(string.Empty, "value"));