Response UrlString Property C# API
Gets the URL that was used in the corresponding Request, as a string.

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

public string UrlString { get; }

Field Value

The URL used in the corresponding Request.
Examples

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

string urlstring = response1.UrlString; // urlstring == url1.ToString()
See Also