AgentMulder.Containers.StructureMap.Patterns.Scan.WithDefaultConventions.GetBasedOnRegistrations C# (CSharp) Method

GetBasedOnRegistrations() public method

public GetBasedOnRegistrations ( ITreeNode registrationRootElement ) : IEnumerable
registrationRootElement ITreeNode
return IEnumerable
        public override IEnumerable<FilteredRegistrationBase> GetBasedOnRegistrations(ITreeNode registrationRootElement)
        {
            var match = Match(registrationRootElement);

            if (match.Matched)
            {
                yield return new DefaultInterfaceConvention(registrationRootElement);
            }
        }