Method | Description | |
---|---|---|
MultipartFormFileSection ( byte data ) : System |
Contains an anonymous file section based on the raw bytes from data, assigns a default Content-Type and file name.
|
|
MultipartFormFileSection ( string data, |
An anonymous file section with data drawn from data, as marshaled by dataEncoding. Assigns a specific file name from fileName and a default Content-Type.
|
|
MultipartFormFileSection ( string fileName, byte data ) : System |
Contains an anonymous file section based on the raw bytes from data with a specific file name. Assigns a default Content-Type.
|
|
MultipartFormFileSection ( string name, byte data, string fileName, string contentType ) : System |
Contains a named file section based on the raw bytes from data, with a custom Content-Type and file name.
|
|
MultipartFormFileSection ( string data, string fileName ) : System |
An anonymous file section with data drawn from the UTF8 string data. Assigns a specific file name from fileName and a default Content-Type.
|
|
MultipartFormFileSection ( string name, string data, |
Contains a named file section with data drawn from data, as marshaled by dataEncoding. Assigns a specific file name from fileName and a default Content-Type.
|
Method | Description | |
---|---|---|
Init ( string name, byte data, string fileName, string contentType ) : void |
public MultipartFormFileSection ( byte data ) : System | ||
data | byte | Raw contents of the file to upload. |
return | System |
public MultipartFormFileSection ( string data, |
||
data | string | Contents of the file to upload. |
dataEncoding | A string encoding. | |
fileName | string | Name of the file uploaded by this form section. |
return | System |
public MultipartFormFileSection ( string fileName, byte data ) : System | ||
fileName | string | Name of the file uploaded by this form section. |
data | byte | Raw contents of the file to upload. |
return | System |
public MultipartFormFileSection ( string name, byte data, string fileName, string contentType ) : System | ||
name | string | Name of this form section. |
data | byte | Raw contents of the file to upload. |
fileName | string | Name of the file uploaded by this form section. |
contentType | string | The value for this section's Content-Type header. |
return | System |
public MultipartFormFileSection ( string data, string fileName ) : System | ||
data | string | Contents of the file to upload. |
fileName | string | Name of the file uploaded by this form section. |
return | System |
public MultipartFormFileSection ( string name, string data, |
||
name | string | Name of this form section. |
data | string | Contents of the file to upload. |
dataEncoding | A string encoding. | |
fileName | string | Name of the file uploaded by this form section. |
return | System |