如何在ASP.NET CORE中获取客户端IP地址?
您能不能让我知道使用MVC 6时如何在ASP.NET中获取客户端IP地址Request.ServerVariables["REMOTE_ADDR"]
。
回答:
API已更新。不确定何时更改,但是根据
12月下旬的Damien
Edwards所说,您现在可以执行以下操作:
var remoteIpAddress = request.HttpContext.Connection.RemoteIpAddress;
以上是 如何在ASP.NET CORE中获取客户端IP地址? 的全部内容, 来源链接: utcz.com/qa/431016.html