Enum HttpParts
Marker for the response
Namespace: Dapplo.HttpExtensions.Support
Assembly: Dapplo.HttpExtensions.dll
Syntax
public enum HttpParts
Fields
| Name | Description |
|---|---|
| MultipartBoundary | The property specifies the boundary of a multi-part |
| None | Default value. |
| RequestContent | Specifies the content for uploading |
| RequestContentType | Specifies the content-type for uploading |
| RequestHeaders | Specifies the request headers to send on the request, this should be of type IDictionary where key is string and value is string |
| RequestMultipartFilename | The property specifies the filename of the content in a multi-part post |
| RequestMultipartName | The property specifies the name of the content in a multi-part post |
| ResponseContent | The property will get the response content, HttpResponseMessage can also be used |
| ResponseContentType | Specifies the content-type, either for uploading or for the response |
| ResponseErrorContent | The property will get the response content, when an error occured |
| ResponseHeaders | Marks HttpResponseHeaders, |
| ResponseStatuscode | The Http-Status code, should be of type HttpStatusCode |