5 references to HasAttribute
Microsoft.AspNetCore.Mvc.Analyzers (1)
src\Shared\Roslyn\MvcFacts.cs (1)
67if (method.HasAttribute(nonActionAttribute, inherit: true))
Mvc.Analyzers.Test (4)
CodeAnalysisExtensionsTest.cs (4)
480var methodHasAttribute = CodeAnalysisExtensions.HasAttribute(testMethod, attribute, inherit: false); 595var hasAttribute = CodeAnalysisExtensions.HasAttribute(method, attribute, inherit: false); 629var hasAttributeWithoutInherit = CodeAnalysisExtensions.HasAttribute(method, attribute, inherit: false); 630var hasAttributeWithInherit = CodeAnalysisExtensions.HasAttribute(method, attribute, inherit: true);