asp.net-mvc – 如何在ASP.NET Web API中获取IpAddress和UserAgent获取方法

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何在ASP.NET Web API中获取IpAddress和UserAgent获取方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用ASP.NET Web Api来公开一些GET方法

但是在我返回数据之前,我需要将几个细节记录到数据库,其中很少数据如下所示:

>来电者的Ip
>来电者的用户代理
> Caller’s Used Url

现在在控制器当我以前做这个我曾经使用以下代码

var ipAddress = Request.ServerVariables["REMOTE_ADDR"];
var userAgent = Request.UserAgent;

但是在Web API中我无法使用这个。

任何人都可以帮助我。

解决方法

我想到了,
public static LogModel GetApiLogDetails()
{
    var logModel = new LogModel();
    logModel.TimeStamp   = DateTime.Now;
    logModel.CallerIp    = HttpContext.Current.Request.UserHostAddress;
    logModel.CallerAgent = HttpContext.Current.Request.UserAgent;
    logModel.CalledUrl   = HttpContext.Current.Request.Url.OriginalString;
    return logModel;
}

有一点帮助

Get Web Api consumer IP Address and HostName in ASP.net C#
&安培;

Get the IP address of the remote host

原文链接:https://www.f2er.com/aspnet/253143.html

猜你在找的asp.Net相关文章