mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Update properties to getters which is inline with the actual implementation.
This commit is contained in:
@@ -178,12 +178,12 @@ namespace System.Web
|
||||
public string RawUrl { get; set; }
|
||||
public HttpCookieCollection Cookies => null;
|
||||
public bool IsAuthenticated { get; set; }
|
||||
public NameValueCollection Form => null;
|
||||
public NameValueCollection Headers => null;
|
||||
public NameValueCollection Params => null;
|
||||
public string UserAgent(string s) => null;
|
||||
public string UrlReferrer(string s) => null;
|
||||
public NameValueCollection ServerVariables => null;
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user