Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

DownloadHandler.ReceiveContentLength

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
protected function ReceiveContentLength(contentLength: int): void;
protected void ReceiveContentLength(int contentLength);

Parámetros

contentLength The value of the received Content-Length header.

Descripción

Callback, invoked with a Content-Length header is received.

This callback is invoked on the main thread.

Note: This callback is only called if a Content-Length header is received. If the remote server does not transmit a Content-Length header, but does include body data, then it is possible for ReceiveData to be invoked without receiving a call to this method.

Note: This callback may be invoked more than once. An example scenario would be a case where a redirect is encountered, followed by a standard response. If both the redirect and standard response include Content-Length headers, this method will be invoked twice.