# GetContent(UnityWebRequest)

> Returns a copy of the native-memory buffer interpreted as a UTF8 string.

## Definition

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

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

### Parameters

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

### Returns

| Type                                                           | Description      |
| -------------------------------------------------------------- | ---------------- |
| [string](https://learn.microsoft.com/dotnet/api/system.string) | The same as text |

### Remarks

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