2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Mvc / System.Web.Mvc / ActionNameAttribute.cs
blob46ef66a39cd0e327507231e4ece77eb03a96d048
1 /* ****************************************************************************
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * This software is subject to the Microsoft Public License (Ms-PL).
6 * A copy of the license can be found in the license.htm file included
7 * in this distribution.
9 * You must not remove this notice, or any other, from this software.
11 * ***************************************************************************/
13 namespace System.Web.Mvc {
14 using System;
15 using System.Reflection;
16 using System.Web.Mvc.Resources;
18 [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
19 public sealed class ActionNameAttribute : ActionNameSelectorAttribute {
21 public ActionNameAttribute(string name) {
22 if (String.IsNullOrEmpty(name)) {
23 throw new ArgumentException(MvcResources.Common_NullOrEmpty, "name");
26 Name = name;
29 public string Name {
30 get;
31 private set;
34 public override bool IsValidName(ControllerContext controllerContext, string actionName, MethodInfo methodInfo) {
35 return String.Equals(actionName, Name, StringComparison.OrdinalIgnoreCase);