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.

MultipartFormDataSection.MultipartFormDataSection

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 MultipartFormDataSection(data: byte[])
public MultipartFormDataSection(byte[] data);

Parámetros

data Data payload of this section.

Descripción

Raw data section, unnamed and no Content-Type header.

Will not include either a filename or a Content-Type section header.


public MultipartFormDataSection(name: string, data: byte[])
public MultipartFormDataSection(string name, byte[] data);

Parámetros

name Section name.
data Data payload of this section.

Descripción

Raw data section with a section name, no Content-Type header.

Identical to the prior constructor, but with a section name included.


public MultipartFormDataSection(name: string, data: byte[], contentType: string)
public MultipartFormDataSection(string name, byte[] data, string contentType);

Parámetros

name Section name.
data Data payload of this section.
contentType The value for this section's Content-Type header.

Descripción

A raw data section with a section name and a Content-Type header.


public MultipartFormDataSection(name: string, data: string, encoding: Encoding, contentType: string)
public MultipartFormDataSection(string name, string data, Encoding encoding, string contentType);

Parámetros

name Section name.
data String data payload for this section.
contentType The value for this section's Content-Type header.
encoding An encoding to marshal data to or from raw bytes.

Descripción

A named raw data section whose payload is derived from a string, with a Content-Type header.

data will be encoded into raw bytes using encoding.


public MultipartFormDataSection(name: string, data: string, contentType: string)
public MultipartFormDataSection(string name, string data, string contentType);

Parámetros

name Section name.
data String data payload for this section.
contentType C.

Descripción

A named raw data section whose payload is derived from a UTF8 string, with a Content-Type header.

For UTF8 strings with custom Content-Type headers, use this constructor. data will be assumed to be in UTF8 encoding and converted to raw bytes appropriately.


public MultipartFormDataSection(name: string, data: string)
public MultipartFormDataSection(string name, string data);

Parámetros

name Section name.
data String data payload for this section.

Descripción

A names raw data section whose payload is derived from a UTF8 string, with a default Content-Type.

For UTF8 strings, use this constructor. data will be assumed to be in UTF8 encoding and converted appropriately. The section will be assigned a Content-Type of text/plain; encoding=utf8.


public MultipartFormDataSection(data: string)
public MultipartFormDataSection(string data);

Parámetros

data String data payload for this section.

Descripción

An anonymous raw data section whose payload is derived from a UTF8 string, with a default Content-Type.

Identical to the above, but without a section name.