16 lines
590 B
C#
16 lines
590 B
C#
|
namespace System.Web.Mvc {
|
|||
|
using System;
|
|||
|
using System.Reflection;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|||
|
public sealed class HttpPostAttribute : ActionMethodSelectorAttribute {
|
|||
|
|
|||
|
private static readonly AcceptVerbsAttribute _innerAttribute = new AcceptVerbsAttribute(HttpVerbs.Post);
|
|||
|
|
|||
|
public override bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo) {
|
|||
|
return _innerAttribute.IsValidForRequest(controllerContext, methodInfo);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|