//Fired to indicate when a resource has been fully downloaded and ready to be read by MSHTML
 void WebBrower_ProtocolHandlerDataFullyAvailable(object sender, ProtocolHandlerDataFullyAvailableEventArgs e)
 {
     //Debug.Print(">>>>>>ProtocolHandlerDataFullyAvailable=> " + e.URL);
 }
예제 #2
0
 void m_csexwbCOMLib_ManagedAppDataFullyAvailable(string sURL)
 {
     if (ProtocolHandlerDataFullyAvailable != null)
     {
         ProtocolHandlerDataFullyAvailableEventArgs args =
             new ProtocolHandlerDataFullyAvailableEventArgs(sURL);
         ProtocolHandlerDataFullyAvailable(this, args);
     }
 }