Adds a Url to the list of sub-requests that will be fetched from the web server
when this Request is sent.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- url
- Type: Facilita.Web Url
The url that should be fetched.
Remarks
Examples
Url url1 = new Url(protocol1, localhost, "/"); // Create a GET request Request request1 = Browser.CreateRequest(HttpMethod.GET, url1, 1); // Add a sub-request request1.AddSubRequest(new Url(protocol1, localhost, "/Themes/TestPlant/Content/images/orange_button_bg.gif")); // Send the top-level request to the server, followed by all of the sub-requests Response response1 = request1.Send();
See Also