When I use the code satable for the unity 2021 in the unity 2019.
The console shows that
'UnityWebRequest' does not contain a definition for 'result' and no accessible extension method 'result' accepting a first argument of type 'UnityWebRequest' could be found (are you missing a using directive or an assembly reference?)
Bugs/problem:
if (req.result == UnityWebRequest.Result.ConnectionError || req.result == UnityWebRequest.Result.ProtocolError)
I expect I can use those code on unity 2019 with other codes and works.
Simply consult the API!
result
was added in version 2020.3.Prior to that version simply follow the examples from the according version API e.g. 2019.4 API
You can e.g. simply check if there is any content in
error
or if you want to further differentiate
isNetworkError
(includes errors like no internet connection, host not reachable, DNS resolve error etc) andisHttpError
(basically same asresponseCode >= 400
)If your question is about downwards compatibility but support both versions either stick to the pre-2020.3 way or use Conditional Compilation and do e.g.