# data

> Returns the raw bytes downloaded from the remote server, or null. (Read Only)

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine.Networking](/engine/6000.7/script-reference/unityengine/networking.md)
* **Assembly:** UnityEngine.UnityWebRequestModule

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

### Remarks

This property returns the raw bytes downloaded from the remote server. If no data has yet been received, this property returns `null`.

Note: Note: The precise memory allocation behavior of this property changes depending on subclass. See subclass documentation of [DownloadHandler.GetData()](/engine/6000.7/script-reference/unityengine/networking/downloadhandler/getdata.md) for further information on exactly how the data property handles memory allocation.
