MultipartFormFileSectionConstructor

切换到手册
public MultipartFormFileSection (string name, byte[] data, string fileName, string contentType);

参数

name此表单分区的名称。
data要上传的文件的原始内容。
fileName此表单分区上传的文件的名称。
contentType此节的 Content-Type 标头的值。

描述

包含一个已命名文件分区,该分区基于 data 中的原始字节且具有自定义 Content-Type 和文件名。

完全控制选项。手动指定分区名称、原始数据、文件名和 Content-Type。如果 fileName 为 null 或空,则名称默认为 file.dat。如果 contentType 为 null 或空,则类型默认为 application/octet-stream


public MultipartFormFileSection (byte[] data);

参数

data要上传的文件的原始内容。

描述

包含一个基于 data 中的原始字节的匿名文件分区,并指定默认的 Content-Type 和文件名。

基于来自 data 参数的原始字节创建文件分区。针对内容类型指定 application/octet-stream,并针对文件名指定 file.dat。


public MultipartFormFileSection (string fileName, byte[] data);

参数

data要上传的文件的原始内容。
fileName此表单分区上传的文件的名称。

描述

包含一个匿名文件分区,该分区基于 data 中的原始字节且具有特定文件名。指定默认的 Content-Type

针对 Content-Type 指定 application/octet-stream


public MultipartFormFileSection (string name, string data, Encoding dataEncoding, string fileName);

参数

name此表单分区的名称。
data要上传的文件的内容。
dataEncoding字符串编码。
fileName此表单分区上传的文件的名称。

描述

包含一个已命名文件分区,其中包含从 data 提取的数据,并由 dataEncoding 进行编组。指定 fileName 中的特定文件名,以及默认的 Content-Type

Content-Type 假定为 text/plain,具有从 dataEncoding 提取的 encoding。如果 dataEncoding 为 null,则默认为 UTF8。


public MultipartFormFileSection (string data, Encoding dataEncoding, string fileName);

参数

data要上传的文件的内容。
dataEncoding字符串编码。
fileName此表单分区上传的文件的名称。

描述

一个匿名文件分区,其中包含从 data 提取的数据,并由 dataEncoding 进行编组。指定 fileName 中的特定文件名,以及默认的 Content-Type

如上所述,但未命名。


public MultipartFormFileSection (string data, string fileName);

参数

data要上传的文件的内容。
fileName此表单分区上传的文件的名称。

描述

一个匿名文件分区,包含从 UTF8 字符串 data 提取的数据。指定 fileName 中的特定文件名,以及默认的 Content-Type

便捷方法。通过 data 字符串指定文件内容,并通过 fileName 指定文件名。假设字符串以 UTF8 编码。针对 Content-Type 指定 text/plain; encoding=utf8。如果 fileName 为 null 或空,则指定文件名为 file.dat