How to get the current ASP.NET core controller met

2019-03-25 03:52发布

I want to get the current method name of my ASP.NET Core controller

I have tried getting the method name through reflection:

    [HttpGet]
    public async Task<IActionResult> CreateProcess(int catId)
    {
        string methodName = System.Reflection.MethodBase.GetCurrentMethod().Name;

but this gives me a value of MoveNext and not CreateProcess

Take note I don't want to use the ViewContext

string methodName = ActionContext.RouteData.Values["action"].ToString();

as I lowercase my urls via the startup settings.The above will get me createprocess instead of CreateProcess

I preferably want an easy one-liner and not a multiline extension method.

5条回答
放荡不羁爱自由
2楼-- · 2019-03-25 04:01

Use the StackTrace class snd its GetFrames until you find the one you want.

查看更多
在下西门庆
3楼-- · 2019-03-25 04:12

In ASP.NET Core it seems to have changed and you have to use the ActionName property

((Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor)ViewContext.ActionDescriptor).ActionName;
查看更多
女痞
4楼-- · 2019-03-25 04:15

The C# 5.0 CallerMemberName attribute may do the trick. (I haven't tested this from an async method; it works from a regular call)

private static string GetCallerMemberName([CallerMemberName]string name = "")
{
    return name;
}

Then call it from your code:

[HttpGet]
public async Task<IActionResult> CreateProcess(int catId)
{
    string methodName = GetCallerMemberName();

Note that you don't need to pass anything to the method.

查看更多
放我归山
5楼-- · 2019-03-25 04:16

You can get it by base.ControllerContext.ActionDescriptor.ActionName

This works in .NET Core 1.0.

查看更多
贼婆χ
6楼-- · 2019-03-25 04:22

You can use the fact that it is not just any method but a controller and use ActionContext.ActionDescriptor.Name property to get the action name

UPDATE: (thanks to Jim Aho)

Recent versions work with -

ControllerContext.ActionDescriptor.ActionName
查看更多
登录 后发表回答