Version: 2019.1
public int redirectLimit ;

Description

Indicates the number of redirects which this UnityWebRequest will follow before halting with a “Redirect Limit Exceeded” system error.

If you wish to disable redirects altogether, set this property to zero - this UnityWebRequest will then refuse to follow redirects. If a redirect is encountered while redirects are disabled, the request will halt with a “Redirect Limit Exceeded” system error.

If you do not wish to limit the number of redirects, you may set this property to any negative number. This is not recommended. If the redirect limit is disabled and the UnityWebRequest encounters a redirect loop, the UnityWebRequest will consume processor time until Abort is called.

Default value: 32.