AspUnitRunner.Core.Html.HtmlElement.SetAttribute C# (CSharp) Method

SetAttribute() public method

public SetAttribute ( string name, string value ) : void
name string
value string
return void
        public void SetAttribute(string name, string value)
        {
            var lowerCaseName = name.ToLowerInvariant();
            _attributes[lowerCaseName] = value;
        }

Usage Example

 private static void SetAttributes(HtmlElement element, MatchCollection matches)
 {
     foreach (Match match in matches)
         element.SetAttribute(match.Groups["name"].Value, match.Groups["value"].Value);
 }