FormUrlEncodedContent Class
FormUrlEncodedContent class
A container for name/value tuples encoded using application/x-www-form-urlencoded MIME type.
public class FormUrlEncodedContent : ByteArrayContent
Constructors
Name | Description |
---|
FormUrlEncodedContent(IEnumerable<KeyValuePair<string, string>>) | Initializes a new instance of the FormUrlEncodedContent class. |
Properties
Name | Description |
---|
Headers { get; } | Gets the HTTP content headers. |
Methods
Name | Description |
---|
Dispose() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
ReadAsByteArray() | Serialize the HTTP content and return a byte array that represents the content. |
ReadAsStream() | Serialize the HTTP content and return a stream that represents the content. |
ReadAsString() | Serialize the HTTP content and return a string that represents the content. |
See Also