Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


downloadHandler

Holds a reference to a DownloadHandler object, which manages body data received from the remote server by this UnityWebRequest.
Read time 1 minuteLast updated 9 days ago

Definition

public DownloadHandler downloadHandler { get; set; }

Remarks

Setting this property to
null
indicates that this UnityWebRequest does not care about the response’s body data; all received body data will be ignored and discarded. See the reference on DownloadHandler objects for more information on creating and using DownloadHandlers.
This property cannot be changed after calling UnityWebRequest.Send.
Default value:
null
.