nsISupports
Last changed in Gecko 1.9 (Firefox 3)nsIPluginStreamListener
and nsIHTTPHeaderListener
. This instance is passed in through {GetURL,PostURL}()'s streamListener parameter. The browser will then QI this streamListener to see if it implements nsIHTTPHeaderListener
.
void newResponseHeader(in string headerName, in string headerValue); |
void statusLine(in string line); |
Called for each HTTP Response header.
void newResponseHeader( in string headerName, in string headerValue );
headerName
headerValue
Called once for the HTTP Response status line. Value does not include a terminating newline.
void statusLine( in string line );
line