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; otherwisefalse
.