1 implementation of IApiBehaviorMetadata
Microsoft.AspNetCore.Mvc.Core (1)
ApiControllerAttribute.cs (1)
20public class ApiControllerAttribute : ControllerAttribute, IApiBehaviorMetadata
5 references to IApiBehaviorMetadata
Microsoft.AspNetCore.Mvc.Core (5)
ApplicationModels\ApiBehaviorApplicationModelProvider.cs (2)
119if (controller.Attributes.OfType<IApiBehaviorMetadata>().Any()) 126return assemblyAttributes.OfType<IApiBehaviorMetadata>().Any();
Infrastructure\DefaultApiProblemDetailsWriter.cs (3)
45var apiControllerAttribute = context.AdditionalMetadata?.GetMetadata<IApiBehaviorMetadata>() ?? 46context.HttpContext.GetEndpoint()?.Metadata.GetMetadata<IApiBehaviorMetadata>();