# GetContent(UnityWebRequest)

> Returns the downloaded AssetBundle, or null.

## Definition

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

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

### Parameters

**** (\[UnityWebRequest]\(/engine/6000.5/script-reference/unityengine/networking/unitywebrequest)): A finished UnityWebRequest object with [DownloadHandlerAssetBundle](/engine/6000.5/script-reference/unityengine/networking/downloadhandlerassetbundle.md) attached.

### Returns

| Type                                                                      | Description                                                                                                                                            |
| ------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [AssetBundle](/engine/6000.5/script-reference/unityengine/assetbundle.md) | The same as [DownloadHandlerAssetBundle.assetBundle](/engine/6000.5/script-reference/unityengine/networking/downloadhandlerassetbundle/assetbundle.md) |

### Remarks

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