Files
linux-packaging-mono/external/aspnetwebstack/src/Microsoft.Web.Http.Data/DeleteAttribute.cs

17 lines
544 B
C#
Raw Normal View History

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