We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26b53a6 + 629ebf2 commit 3f233dcCopy full SHA for 3f233dc
Src/StackifyLib/Models/WebRequestDetail.cs
@@ -47,10 +47,12 @@ public WebRequestDetail(StackifyError error)
47
[JsonProperty]
48
public string ReportingUrl { get; set; }
49
50
-
51
52
public string ReferralUrl { get; set; }
53
+ [JsonProperty]
54
+ public string UserAgent { get; set; }
55
+
56
57
public Dictionary<string, string> Headers { get; set; }
58
@@ -90,6 +92,7 @@ private void Load(HttpContext context)
90
92
{
91
93
HttpMethod = request.RequestType;
94
UserIPAddress = request.UserHostAddress;
95
+ UserAgent = request.UserAgent;
96
97
if (context.Items != null && context.Items.Contains("Stackify.ReportingUrl"))
98
0 commit comments