Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
The following example demonstrates getting the Url of a Response.
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Field Value
The Url used in the corresponding Request.Examples
Request request1 = WebBrowser.CreateRequest(HttpMethod.GET, url1, 1); Response response1 = request1.Send(); Url url2 = response1.Url; // url2 == url1
See Also