mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +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 string RawUrl { get; set; }
|
||||||
public HttpCookieCollection Cookies => null;
|
public HttpCookieCollection Cookies => null;
|
||||||
public bool IsAuthenticated { get; set; }
|
public bool IsAuthenticated { get; set; }
|
||||||
public NameValueCollection Form => null;
|
public NameValueCollection Form { get; }
|
||||||
public NameValueCollection Headers => null;
|
public NameValueCollection Headers { get; }
|
||||||
public NameValueCollection Params => null;
|
public NameValueCollection Params { get; }
|
||||||
public string UserAgent(string s) => null;
|
public string UserAgent { get; }
|
||||||
public string UrlReferrer(string s) => null;
|
public Uri UrlReferrer { get; }
|
||||||
public NameValueCollection ServerVariables => null;
|
public NameValueCollection ServerVariables { get; }
|
||||||
public String this[String key] => null;
|
public String this[String key] => null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user