How do I get client IP address in ASP.NET Core?

asp.net-core, asp.net-core-mvc, c#

Solution

The API has been updated. Not sure when it changed but according to Damien Edwards in late December, you can now do this:

var remoteIpAddress = request.HttpContext.Connection.RemoteIpAddress;

Problem

Can you please let me know how to get client IP address in ASP.NET when using MVC 6. `Request.ServerVariables["REMOTE_ADDR"]` does not work.

Original source

Related problems