7 references to MvcFacts
Microsoft.AspNetCore.Mvc.Api.Analyzers (2)
ApiControllerFacts.cs (2)
23if (!MvcFacts.IsController(method.ContainingType, symbolCache.ControllerAttribute, symbolCache.NonControllerAttribute)) 34if (!MvcFacts.IsControllerAction(method, symbolCache.NonActionAttribute, symbolCache.IDisposableDispose))
Mvc.Api.Analyzers.Test (5)
MvcFactsTest.cs (5)
71var isController = MvcFacts.IsController(typeSymbol, controllerAttribute, nonControllerAttribute); 85var isController = MvcFacts.IsController(typeSymbol, controllerAttribute, nonControllerAttribute); 156var isControllerAction = MvcFacts.IsControllerAction(method, nonActionAttribute, disposableDispose); 188var isControllerAction = MvcFacts.IsControllerAction(method, nonActionAttribute, disposableDispose); 203var isControllerAction = MvcFacts.IsControllerAction(method, nonActionAttribute, disposableDispose);