Request ClassC# API
Describes an HTTP request.
Inheritance Hierarchy

System Object
  Facilita.Web Request

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public class Request : IDisposable
Remarks

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.
Examples

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();
See Also