SetAttribute() public méthode

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