# bytes

> Returns the contents of the fetched web page as a byte array (Read Only).

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.5/script-reference/unityengine.md)
* **Assembly:** UnityEngine.UnityWebRequestWWWModule

> **Warning:**
>
> **Deprecated.** Use UnityWebRequest, a fully featured replacement which is more efficient and has additional features

```csharp
public byte[] bytes { get; }
```

### Remarks

If the object has not finished downloading the data, it will return an empty byte array. Use [WWW.isDone](/engine/6000.5/script-reference/unityengine/www/isdone.md) or `yield` to see if the data is available.
