33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Generic;
|
|
using Microsoft.Framework.Internal;
|
|
|
|
namespace Microsoft.AspNet.Mvc
|
|
{
|
|
/// <summary>
|
|
/// Identifies an action that only supports the HTTP PATCH method.
|
|
/// </summary>
|
|
public class HttpPatchAttribute : HttpMethodAttribute
|
|
{
|
|
private static readonly IEnumerable<string> _supportedMethods = new string[] { "PATCH" };
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="HttpPatchAttribute"/>.
|
|
/// </summary>
|
|
public HttpPatchAttribute()
|
|
: base(_supportedMethods)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="HttpPatchAttribute"/> with the given route template.
|
|
/// </summary>
|
|
/// <param name="template">The route template. May not be null.</param>
|
|
public HttpPatchAttribute([NotNull] string template)
|
|
: base(_supportedMethods, template)
|
|
{
|
|
}
|
|
}
|
|
} |