# GetContent(UnityWebRequest)

> Returns the downloaded Texture, or null.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.Networking](/engine/6000.6/script-reference/unityengine/networking.md)
* **Assembly:** UnityEngine.UnityWebRequestTextureModule

```csharp
public static Texture2D GetContent(UnityWebRequest www)
```

### Parameters

**** (\[UnityWebRequest]\(/engine/6000.6/script-reference/unityengine/networking/unitywebrequest)): A finished UnityWebRequest object with [DownloadHandlerTexture](/engine/6000.6/script-reference/unityengine/networking/downloadhandlertexture.md) attached.

### Returns

| Type                                                                  | Description                                                                                                                            |
| --------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| [Texture2D](/engine/6000.6/script-reference/unityengine/texture2d.md) | The same as [DownloadHandlerTexture.texture](/engine/6000.6/script-reference/unityengine/networking/downloadhandlertexture/texture.md) |

### Remarks

A static function provided for convenience; equivalent to ((DownloadHandlerTexture)[www.downloadHandler).texture](http://www.downloadHandler\).texture).
