AgentMulder.ReSharper.Domain.Registrations.CompositeRegistration.IsSatisfiedBy C# (CSharp) Method

IsSatisfiedBy() public method

public IsSatisfiedBy ( ITypeElement typeElement ) : bool
typeElement ITypeElement
return bool
        public override bool IsSatisfiedBy(ITypeElement typeElement)
        {
            return componentRegistrations.All(registration => registration.IsSatisfiedBy(typeElement));
        }