Name | Description | |
---|---|---|
CompressedSize | Gets the compressed size of the content in bytes. | |
CompressionType | Gets the type of compression used by the server, e.g. "gzip" or "deflate". | |
Data | Returns a byte array containing the raw content that was downloaded from the server or read from the browser cache. If you need to access textual content use the Text property instead as it automatically converts from the original text encoding into unicode characters. | |
Encoding | Returns a value from the CONTENT_ENCODING enum that indicates how textual content was encoded by the server, e.g. UTF8 | |
ImageHeight | Gets the height of the image in pixels. | |
ImageWidth | Gets the width of the image in pixels. | |
IsCompressed | Gets a value indicating whether the content was compressed in the HTTP response message from the server. | |
IsFromCache | Returns a boolean indicating whether the content was read from the local browser cache. | |
IsImage | A boolean value indicating if the content returned from the server or read from the browser cache contains an image resource | |
MimeType | Gets the type of the content. (E.g. "text/html" or "image/gif") | |
Size | Gets the uncompressed size of the content, in bytes. | |
Text | Returns a string value containing the unicode version of textual content that was downloaded from the server or read from the browser cache. For access to non-textual content or if you require the original text before conversion to Unicode use the Data property instead.
|