Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions csharp/ql/test/resources/stubs/System.Web.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@ public class HttpRequest
public string RawUrl { get; set; }
public HttpCookieCollection Cookies => null;
public bool IsAuthenticated { get; set; }
public NameValueCollection Form { get; }
public NameValueCollection Headers { get; }
public NameValueCollection Params { get; }
public string UserAgent { get; }
public Uri UrlReferrer { get; }
public NameValueCollection ServerVariables { get; }
public String this[String key] => null;
}

public class HttpRequestWrapper : System.Web.HttpRequestBase
Expand Down
Loading