class in UnityEngine.Networking
/
Inherits from:Networking.DownloadHandler
Switch to ManualMovieTexture has been deprecated. Refer to the new movie playback solution VideoPlayer.
A specialized DownloadHandler for creating MovieTexture out of downloaded bytes. This class is only available on platforms that support MovieTexture.
data | 返回从远程服务器下载的原始字节,或 null。(只读) |
isDone | 如果此 DownloadHandler 的父 UnityWebRequest 已通知它已接收所有数据,且此 DownloadHandler 已完成所有必要的下载后处理操作,则返回 true。(只读) |
text | 便捷属性。返回解释为 UTF8 字符串的 data 中的字节。(只读) |
Dispose | Signals that this DownloadHandler is no longer being used, and should clean up any resources it is using. |
CompleteContent | 在从远程服务器接收所有数据后调用的回调。 |
GetData | 访问 data 属性时调用的回调。 |
GetProgress | 访问 UnityWebRequest.downloadProgress 时调用的回调。 |
GetText | 访问 text 属性时调用的回调。 |
ReceiveContentLength | 在收到 Content-Length 标头调用的回调。 |
ReceiveData | 从远程服务器收到数据时调用的回调。 |