AspUnitRunner.Core.Html.HtmlElementParser.SetAttributes C# (CSharp) Метод

SetAttributes() приватный статический Метод

private static SetAttributes ( HtmlElement element, MatchCollection matches ) : void
element HtmlElement
matches System.Text.RegularExpressions.MatchCollection
Результат void
        private static void SetAttributes(HtmlElement element, MatchCollection matches)
        {
            foreach (Match match in matches)
                element.SetAttribute(match.Groups["name"].Value, match.Groups["value"].Value);
        }