Request End Method C# API
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.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public void End()
Remarks

Examples

The following example demonstrates calling the End() method after SendTopLevel() and SendSubRequests().
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