Gets the URL that was used in the corresponding Request, as a string.
Namespace: Facilita.WebAssembly: 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(); string urlstring = response1.UrlString; // urlstring == url1.ToString()
See Also