nsICacheMetaDataVisitor

This interface is used for visiting the meta data elements for a specified cache entry.
Inherits from: nsISupports Last changed in Gecko 1.7

Method overview

boolean visitMetaDataElement(in string key, in string value);

Methods

visitMetaDataElement()

This method is called for each key/value pair in the meta data for a cache entry.

boolean visitMetaDataElement(
  in string key,
  in string value
);
Parameters
key
The key for visiting the meta data for a cache entry.
value
The value for visiting the meta data for a cache entry.
Return value

Returns true if the provided key/value finds a cache entry, otherwise returns false.

See also