text
Returns the contents of the fetched web page as a string (Read Only).
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.UnityWebRequestWWWModule
public string text { get; }
Remarks
If the object has not finished downloading the data, it will return an empty string. Use WWW.isDone or to see if the data is available.
yieldThis function expects the web page contents in UTF-8 or ASCII character set. The returned string might be not correct for other characters or binary data. Use WWW.bytes property to get raw byte array in these cases.
Additional Resources: WWW.bytes property.