Get username in ASP .net controller

Hi I have a controller with a method. The user has to be authenticated to call this method. In the method I want to get the username or email. In fact any unique identifier for the user will do. How can I do this?

[Route(“api/[controller]/info”)]
[HttpGet]
[Authorize]
public string GetInfo()