Update properties to getters which is inline with the actual implementation.

This commit is contained in:
ewillonermsft
2025-09-25 10:37:56 -07:00
committed by GitHub
parent b49b84e072
commit b267bd11e0

View File

@@ -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;
} }