WebBrowser ClassC# API
The WebBrowser class is the starting point for sending web requests. It can be used to create Request objects to send to a web server (using the CreateRequest(HttpMethod, Url) method).
Inheritance Hierarchy

System Object
  Facilita.Web WebBrowser

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

public class WebBrowser : IDisposable
Remarks

The WebBrowser class manages HTTP caching and cookies. It also provides many options for controlling how the various HTTP requests are handled.

Each Web Virtual User has a separate WebBrowser object associated with it, which can be accessed by calling WebBrowser.

Examples

The following example demonstrates creating a Request object using the Browser property.
Request request1 = WebBrowser.CreateRequest(HttpMethod.GET, new Url("http://www.testplant.co.uk/"), 1); 
Response response1 = request1.Send();
See Also