10 lines
351 B
C#
10 lines
351 B
C#
|
namespace System.Web.Mvc {
|
|||
|
using System;
|
|||
|
using System.Reflection;
|
|||
|
|
|||
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|||
|
public abstract class ActionMethodSelectorAttribute : Attribute {
|
|||
|
public abstract bool IsValidForRequest(ControllerContext controllerContext, MethodInfo methodInfo);
|
|||
|
}
|
|||
|
}
|