// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNetCore.Mvc.Filters; namespace Microsoft.AspNetCore.Mvc { /// /// Adds an that indicates to the framework that the current action conforms to well-known API behavior. /// [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public class ProblemDetailsAttribute : Attribute, IFilterMetadata { } }