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

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

private static GetAttributeMatches ( Match elementMatch ) : MatchCollection
elementMatch System.Text.RegularExpressions.Match
Результат System.Text.RegularExpressions.MatchCollection
        private static MatchCollection GetAttributeMatches(Match elementMatch)
        {
            var regex = new Regex(HtmlAttributeRegex);
            return regex.Matches(elementMatch.Groups["attributes"].Value);
        }