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.

WWWForm.AddBinaryData

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
public function AddBinaryData(fieldName: string, contents: byte[], fileName: string = null, mimeType: string = null): void;
public void AddBinaryData(string fieldName, byte[] contents, string fileName = null, string mimeType = null);
public function AddBinaryData(fieldName: string, contents: byte[], fileName: string = null, mimeType: string = null): void;
public void AddBinaryData(string fieldName, byte[] contents, string fileName = null, string mimeType = null);
public function AddBinaryData(fieldName: string, contents: byte[], fileName: string = null, mimeType: string = null): void;
public void AddBinaryData(string fieldName, byte[] contents, string fileName = null, string mimeType = null);

Parámetros

Descripción

Add binary data to the form.

Use this function to upload files and images to a web server application. Note that the data is read from the contents of byte array and not from a file. The fileName parameter is for telling the server what filename to use when saving the uploaded file.

If mimeType is not given and first 8 bytes of the data match PNG format header, then the data is sent with "image/png" mimetype. Otherwise it is sent with "application/octet-stream" mimetype.