Merge pull request #8672 from dotnet-maestro-bot/merge/release/2.2-to-master

[automated] Merge branch 'release/2.2' => 'master'
This commit is contained in:
Pranav K 2018-10-30 13:33:07 -07:00 committed by GitHub
commit 16b15fcb2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Routing;
namespace Microsoft.AspNetCore.Mvc namespace Microsoft.AspNetCore.Mvc
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports the HTTP DELETE method. /// Identifies an action that supports the HTTP DELETE method.
/// </summary> /// </summary>
public class HttpDeleteAttribute : HttpMethodAttribute public class HttpDeleteAttribute : HttpMethodAttribute
{ {

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Routing;
namespace Microsoft.AspNetCore.Mvc namespace Microsoft.AspNetCore.Mvc
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports the HTTP GET method. /// Identifies an action that supports the HTTP GET method.
/// </summary> /// </summary>
public class HttpGetAttribute : HttpMethodAttribute public class HttpGetAttribute : HttpMethodAttribute
{ {

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Routing;
namespace Microsoft.AspNetCore.Mvc namespace Microsoft.AspNetCore.Mvc
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports the HTTP HEAD method. /// Identifies an action that supports the HTTP HEAD method.
/// </summary> /// </summary>
public class HttpHeadAttribute : HttpMethodAttribute public class HttpHeadAttribute : HttpMethodAttribute
{ {

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Routing;
namespace Microsoft.AspNetCore.Mvc namespace Microsoft.AspNetCore.Mvc
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports the HTTP OPTIONS method. /// Identifies an action that supports the HTTP OPTIONS method.
/// </summary> /// </summary>
public class HttpOptionsAttribute : HttpMethodAttribute public class HttpOptionsAttribute : HttpMethodAttribute
{ {

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Routing;
namespace Microsoft.AspNetCore.Mvc namespace Microsoft.AspNetCore.Mvc
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports the HTTP PATCH method. /// Identifies an action that supports the HTTP PATCH method.
/// </summary> /// </summary>
public class HttpPatchAttribute : HttpMethodAttribute public class HttpPatchAttribute : HttpMethodAttribute
{ {

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Routing;
namespace Microsoft.AspNetCore.Mvc namespace Microsoft.AspNetCore.Mvc
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports the HTTP POST method. /// Identifies an action that supports the HTTP POST method.
/// </summary> /// </summary>
public class HttpPostAttribute : HttpMethodAttribute public class HttpPostAttribute : HttpMethodAttribute
{ {

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Routing;
namespace Microsoft.AspNetCore.Mvc namespace Microsoft.AspNetCore.Mvc
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports the HTTP PUT method. /// Identifies an action that supports the HTTP PUT method.
/// </summary> /// </summary>
public class HttpPutAttribute : HttpMethodAttribute public class HttpPutAttribute : HttpMethodAttribute
{ {

View File

@ -7,7 +7,7 @@ using System.Collections.Generic;
namespace Microsoft.AspNetCore.Mvc.Routing namespace Microsoft.AspNetCore.Mvc.Routing
{ {
/// <summary> /// <summary>
/// Identifies an action that only supports a given set of HTTP methods. /// Identifies an action that supports a given set of HTTP methods.
/// </summary> /// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = true)] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public abstract class HttpMethodAttribute : Attribute, IActionHttpMethodProvider, IRouteTemplateProvider public abstract class HttpMethodAttribute : Attribute, IActionHttpMethodProvider, IRouteTemplateProvider