Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

mozIVisitStatusCallback

This article needs a technical review. How you can help.

This interface provides callback handling functionality for mozIAsyncHistory.isURIVisited
1.0
28
Introduced
Gecko 11.0
Inherits from: nsISupports Last changed in Gecko 11.0 (Firefox 11.0 / Thunderbird 11.0 / SeaMonkey 2.8)

Method overview

void isVisited(in nsIURI aURI, in boolean aVisitedStatus);

Methods

isVisited()

Called when the mozIAsyncHistory.isURIVisited() method's check to determine whether a given URI has been visited has completed. Implement this method to determine the results of the request.

void isVisited(
  in nsIURI aURI,
  in boolean aVisitedStatus
);
Parameters
aURI
The URI that was checked to see if it's been visited.
aVisitedStatus
true if the specified URI has been visited; otherwise false.

See also

Document Tags and Contributors

 Contributors to this page: Sheppy, fscholz, kscarfone, trevorh
 Last updated by: Sheppy,