Ends this request - this method should be called when either SendTopLevel or SendSubRequests(Response)
has been called. It tells eggPlant Performance that no more HTTP requests will be made as part of this Request object.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Remarks
Note |
---|
It is not necessary to call this method if you have called Send rather than SendTopLevel or SendSubRequests(Response). |
Examples
Url url1 = new Url(protocol1, localhost, "/"); Request request1 = Browser.CreateRequest(HttpMethod.GET, url1, 1); // Send the top-level request only Response response1 = request1.SendTopLevel(); // Now send the sub-requests request1.SendSubRequests(response1); // We must call end() when we have finished with this request request1.End();
See Also