标签: authentication asp.net-core-2.0
我可以通过以下方式添加身份验证:
public void ConfigureServices(IServiceCollection services) { ... services.AddAuthentication(); ... }
添加后,我希望能够动态更改它。如何在某些控制器中获得此身份验证以向其中添加一些属性?像GetCurrentAthentication()这样的动作吗?
GetCurrentAthentication()