Gets a value that indicates whether this Response was the result of a
redirected request.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.8.37 (1.0.0.0)
Syntax
Field Value
true if the request was redirected; otherwise, false.Remarks
Examples
Request request1 = WebBrowser.CreateRequest(HttpMethod.GET, url1, 1); Response response1 = request1.Send(); if (response1.WasRedirected) { Response redirectedResponse = response1.RedirectedFrom; ... }
See Also