CachedResponse ClassC# API
Represents an HTTP response that has been cached by the WebBrowser.
Inheritance Hierarchy

System Object
  Facilita.Web CachedResponse

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

public class CachedResponse
Remarks

A CachedResponse can be added to the cache prior to sending a request to the web server. The HTTP headers "Expires" and "Last-Modified" must be set using SetHeader(String, String). If a request is sent to a Url which is cached (and hasn't expired), then no request will be made to the web server, and a Response object will be constructed from the stored CachedResponse object instead.

See AddResponseToCache(CachedResponse) for more details.

See Also