aspnetcore/src/Microsoft.AspNet.Mvc.Core/ActionConvention.cs

12 lines
267 B
C#

using System.Collections.Generic;
namespace Microsoft.AspNet.Mvc
{
public class ActionInfo
{
public string ActionName { get; set; }
public string[] HttpMethods { get; set; }
public bool RequireActionNameMatch { get; set; }
}
}