//Fired to indicate when a resource has been fully read by the MSHTML
 void WebBrower_ProtocolHandlerDataFullyRead(object sender, ProtocolHandlerDataFullyReadEventArgs e)
 {
     //Debug.Print(">>>>>>ProtocolHandlerDataFullyRead=> " + e.URL);
 }
Exemple #2
0
 void m_csexwbCOMLib_ManagedAppDataFullyRead(string sURL)
 {
     if (ProtocolHandlerDataFullyRead != null)
     {
         ProtocolHandlerDataFullyReadEventArgs args =
             new ProtocolHandlerDataFullyReadEventArgs(sURL);
         ProtocolHandlerDataFullyRead(this, args);
     }
 }