Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx" rel="noreferrer">HttpRequest</a> is present on the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.page.aspx" rel="noreferrer">Page</a> and <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.usercontrol.aspx" rel="noreferrer">UserControl</a> classes as a GET-only property. Similarly, most of its own properties are also GET-only (see <a href="http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx" rel="noreferrer">1</a>). This class is used by ASP.NET pages to get information about the incoming http request, e.g. read the client IP, cookies, the query string, whatnot. Importantly, it is part of the "Old" System.Web assembly, which has been around since .NET 1.1 </p> <p><a href="http://msdn.microsoft.com/en-us/library/system.net.http.httprequestmessage.aspx" rel="noreferrer">HttpRequestMessage</a>, on the other hand, is new in .NET 4.5. It is part of <a href="http://msdn.microsoft.com/en-us/library/system.net.aspx" rel="noreferrer">System.Net</a>. It can be used both by clients and services to create, send and receive requests and responses over HTTP. It replaces <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx" rel="noreferrer">HttpWebRequest</a>, which is obsolete in .NET 4.5</p> <p>On HttpRequestBase and HttpRequestWrapper, best I can do is to just quote the <a href="http://msdn.microsoft.com/en-us/library/system.web.httprequestwrapper.aspx" rel="noreferrer">docs</a></p> <blockquote> <p>The HttpRequestWrapper class derives from the HttpRequestBase class and serves as a wrapper for the HttpRequest class. This class exposes the functionality of the HttpRequest class and exposes the HttpRequestBase type. The HttpRequestBase class enables you to replace the original implementation of the HttpRequest class in your application with a custom implementation, such as when you perform unit testing outside the ASP.NET pipeline.</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload