// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System; namespace Microsoft.Web.Http.Data { /// /// Attribute applied to a method to indicate that it is a delete method. /// [AttributeUsage( AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Property, AllowMultiple = false, Inherited = true)] public sealed class DeleteAttribute : Attribute { } }