linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/ActionMethodSelectorAttribute.cs

10 lines
351 B
C#
Raw Normal View History

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);
}
}