Org.Apache.Http.Entity Namespace
Remarks
Representations for HTTP message entities.
An IHttpEntity is the optional content of a
IHttpMessage.
You'll find a basic selection of entity implementations here.
If you need to send an entity, you can provide it for example as a
ByteArrayEntity,
StringEntity,
FileEntity, or through an arbitrary
InputStreamEntity.
If you receive a message with an entity, you typically get that as a
BasicHttpEntity entity.
Entity implementations can be
HttpEntityWrapper,
for example to
BufferedHttpEntity
the content in memory.
Classes
| Type | Reason |
|---|---|
| AbstractHttpEntity | Abstract base class for entities. |
| BasicHttpEntity | A generic streamed entity being received on a connection. |
| BufferedHttpEntity | A wrapping entity that buffers it content if necessary. |
| ByteArrayEntity | An entity whose content is retrieved from a byte array. |
| ContentLengthStrategy | Represents a strategy to determine the content length based on the properties of an HTTP message. |
| ContentLengthStrategyConsts | |
| EntityTemplate | Entity that delegates the process of content generation to an abstract content producer. |
| FileEntity | An entity whose content is retrieved from a file. |
| HttpEntityWrapper | Base class for wrapping entities. |
| IContentLengthStrategy | Represents a strategy to determine the content length based on the properties of an HTTP message. |
| IContentProducer | An abstract entity content producer. |
| InputStreamEntity | A streamed entity obtaining content from an InputStream. |
| SerializableEntity | [Android Documentation] |
| StringEntity | An entity whose content is retrieved from a string. |

