WebBrowser GetCachedContentTypeDirectories Method C# API
Gets a list of all Content-Type media types for which cached content is stored.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public virtual List<string> GetCachedContentTypeDirectories()

Return Value

A list of all Content-Type media types for which cached content is stored.
Remarks

Note Note
There is a performance overhead incurred by storing resources in the cache.

By default, eggPlant Performance will only store the content of resources with certain Content-Type media types:

  • application
  • message
  • model
  • multipart
  • text

So, for example, all content with Content-Type "text/html", or "application/pdf" will be stored, but content with Content-Type "image/png" will be discarded. In most cases, there is no reason to access the contents of image data, but this method can be used to store specific types.

Note Note
Images are still cached, in that they will not be requested again from the web server once they have been downloaded; it is just the image data that is discarded.

See Also