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