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
Facilita.Web WebBrowser
Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Remarks
Each Web Virtual User has a separate WebBrowser object associated with it, which can be accessed by calling WebBrowser.
Examples
Request request1 = WebBrowser.CreateRequest(HttpMethod.GET, new Url("http://www.testplant.co.uk/"), 1); Response response1 = request1.Send();
See Also