WebBrowser DefaultFollowRedirects Property C# API
Gets or sets a value that indicates whether redirects will automatically be followed for any subsequent Request objects created by this WebBrowser.

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

public bool DefaultFollowRedirects { get; set; }

Field Value

true if redirects will automatically be followed for Request objects created; otherwise, false.
Remarks

If the response to a request is an HTTP redirect code (e.g. 301, 302), and the Request object is set to follow redirects, then the eggPlant Performance engine will automatically follow the redirect link.

Note Note
If you only want to change automatic redirecting for a single request, then it is better to call FollowRedirects instead of this property.

See Also