6 references to HasAnyAttribute
Roslyn.Diagnostics.Analyzers (6)
DefaultableTypeShouldHaveDefaultableFieldsAnalyzer.cs (2)
129isNonDefaultable = namedType.HasAnyAttribute(nonDefaultableAttribute); 136isNonDefaultable = type.HasAnyAttribute(nonDefaultableAttribute);
src\RoslynAnalyzers\Utilities\Compiler\DoNotCatchGeneralUnlessRethrown.cs (1)
65if (RequiresAttributeOnMethod && !method.HasAnyAttribute(requiredAttributeType))
src\RoslynAnalyzers\Utilities\Compiler\Extensions\IEnumerableOfIMethodSymbolExtensions.cs (1)
28return methods.Where(m => !m.HasAnyAttribute(attributeType));
src\RoslynAnalyzers\Utilities\Compiler\Extensions\ISymbolExtensions.cs (2)
744if (symbol.HasAnyAttribute(attribute)) 783if (symbol.HasAnyAttribute(attribute))