error
Returns an error message if there was an error during the download (Read Only).
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.UnityWebRequestWWWModule
public string error { get; }
Remarks
If there was no error, will return or an empty string (this is because some platforms don't allow nulls for string values). We recommend that you use String.IsNullOrEmpty to check for the presence of an error so that both cases are covered.
errornullIf the object has not finished downloading the data, it will block until the download has finished. Use _isDone or to see if the data is available.
yieldIn the example the URL is not valid so the error message will be "Couldn't resolve host".
Examples
using UnityEngine;using System.Collections;public class ExampleClass : MonoBehaviour{ // Make a request with an invalid url public string url = "invalid_url"; IEnumerator Start() { using (WWW www = new WWW(url)) { yield return www; if (!string.IsNullOrEmpty(www.error)) Debug.Log(www.error); } }}