Response Url Property C# API
Gets the Url that was used in the corresponding Request.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public Url Url { get; }

Field Value

The Url used in the corresponding Request.
Examples

The following example demonstrates getting the Url of a Response.
Request request1 = WebBrowser.CreateRequest(HttpMethod.GET, url1, 1);
Response response1 = request1.Send();

Url url2 = response1.Url; // url2 == url1
See Also