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)
2450element.SetAttribute("customAttribute", value); 2454element.SetAttribute("customAttribute", value); 2458element.SetAttribute("customAttribute", "newValue"); 2474Assert.Throws<ArgumentException>(() => element.SetAttribute(null, "value")); 2489COMException ex = Assert.Throws<COMException>(() => element.SetAttribute(string.Empty, "value"));