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