AgentMulder.ReSharper.Domain.Patterns.MultipleMatchBasedOnPatternBase.GetBasedOnRegistrations C# (CSharp) Метод

GetBasedOnRegistrations() публичный Метод

public GetBasedOnRegistrations ( ITreeNode registrationRootElement ) : IEnumerable
registrationRootElement ITreeNode
Результат IEnumerable
        public override IEnumerable<FilteredRegistrationBase> GetBasedOnRegistrations(ITreeNode registrationRootElement)
        {
            return MatchMany(registrationRootElement).Where(match => match.Matched)
                .SelectMany(match => DoCreateRegistrations(registrationRootElement, match));
        }