# texture

> Returns the downloaded Texture, or null. (Read Only)

## Definition

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

```csharp
public Texture2D texture { get; }
```

### Remarks

This property returns a [Texture](/engine/6000.6/script-reference/unityengine/texture.md) object. If Unity was unable to decode the downloaded data, or has not yet finished decompressing/decoding the downloaded data, this property will return `null`.

If all data has not yet been downloaded, accessing this property will throw an [InvalidOperationException](http://msdn.microsoft.com/en-us/library/system.invalidoperationexception).

*Note:* This property will return a reference to the *same* [Texture](/engine/6000.6/script-reference/unityengine/texture.md) object on every call. Accessing this property causes no additional memory allocation.
