Describes an HTTP request.
System Object Facilita.Web RequestNamespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
public class Request : IDisposable
public class Request : IDisposable
A Request object is created by calling
CreateRequest(HttpMethod, Url).
The request can then be sent to the web server using the
Send or
SendTopLevel methods.
The following example demonstrates creating and sending a Request.
Request request1 = WebBrowser.CreateRequest(HttpMethod.GET, new Url("http://www.testplant.com/"), 1);
Response response1 = request1.Send();
Request request1 = WebBrowser.CreateRequest(HttpMethod.GET, new Url("http://www.testplant.com/"), 1);
Response response1 = request1.Send();