|
| MultipartFormData () |
| Constructs a new MultipartFormData instance. More...
|
|
| MultipartFormData (IDictionary< string, IList< string >> keyValuePairs, IDictionary< string, IList< string >> fileList) |
| Constructs a new MultipartFormData instance with specified parameters. More...
|
|
ICollection< string > | GetFileKeys () |
| Returns all file keys from the file list of the POST request. More...
|
|
IList< string > | GetFiles (string key) |
| Returns a list of file paths from the file list associated with specified key. More...
|
|
IList< string > | SetFilePair (string key, params string[] files) |
| Sets key-value pair to the file list of the POST request. If such a key already exist, it will be replaced. More...
|
|
IList< string > | RemoveFilePair (string key) |
| Removes the file with associated key from the file list of the POST request. More...
|
|
void | RemoveAllFilePairs () |
| Removes all files from the file list of the POST request. More...
|
|
override int | GetHashCode () |
| Serves as a hash function for a particular type. More...
|
|
override bool | Equals (object obj) |
| Determines whether the specified MultipartFormData is equal to the current MultipartFormData. More...
|
|
| FormData () |
| Constructs a new FormData instance. More...
|
|
| FormData (IDictionary< string, IList< string >> keyValuePairs) |
| Constructs a new FormData instance with specified parameters. More...
|
|
ICollection< string > | GetPairKeys () |
| Returns all keys from the key-value pair collection of the POST request. More...
|
|
IList< string > | GetPairValues (string key) |
| Returns a list of values from the key-value pair collection associated with specified key. More...
|
|
IList< string > | SetPair (string key, params string[] values) |
| Sets key-value pair to the key-value pair collection of the POST request. If such a key already exist, it will be replaced. More...
|
|
IList< string > | RemovePair (string key) |
| Removes key-value pair with associated key from the key-value pair collection of the POST request. More...
|
|
void | RemoveAllPairs () |
| Removes all pairs from the key-value pair collection of the POST request. More...
|
|
override int | GetHashCode () |
| Serves as a hash function for a particular type. More...
|
|
override bool | Equals (object obj) |
| Determines whether the specified FormData is equal to the current FormData. More...
|
|
Represents POST data parameters if the Content-Type is multipart/form-data.