//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); }
void m_csexwbCOMLib_ManagedAppDataFullyAvailable(string sURL) { if (ProtocolHandlerDataFullyAvailable != null) { ProtocolHandlerDataFullyAvailableEventArgs args = new ProtocolHandlerDataFullyAvailableEventArgs(sURL); ProtocolHandlerDataFullyAvailable(this, args); } }