1 type derived from ControllerAttribute
Microsoft.AspNetCore.Mvc.Core (1)
ApiControllerAttribute.cs (1)
21
public class ApiControllerAttribute :
ControllerAttribute
, IApiBehaviorMetadata, IDisableCookieRedirectMetadata
1 instantiation of ControllerAttribute
Microsoft.AspNetCore.Mvc.Core (1)
ControllerBase.cs (1)
24
[
Controller
]
4 references to ControllerAttribute
Microsoft.AspNetCore.Mvc.Core (4)
Controllers\ControllerFeatureProvider.cs (1)
69
!typeInfo.IsDefined(typeof(
ControllerAttribute
)))
Infrastructure\DefaultApiProblemDetailsWriter.cs (3)
37
var
controllerAttribute = context.AdditionalMetadata?.GetMetadata<
ControllerAttribute
>() ??
38
context.HttpContext.GetEndpoint()?.Metadata.GetMetadata<
ControllerAttribute
>();