Skybound.Gecko.GeckoWebBrowser.JSErrorHandler.OnError C# (CSharp) Méthode

OnError() public méthode

public OnError ( Skybound.Gecko.nsAUTF8String message, Skybound.Gecko.nsAUTF8String fileName, uint line, uint pos, uint flags, uint errnum, jsdIValue exc ) : bool
message Skybound.Gecko.nsAUTF8String
fileName Skybound.Gecko.nsAUTF8String
line uint
pos uint
flags uint
errnum uint
exc jsdIValue
Résultat bool
            public bool OnError(nsAUTF8String message, nsAUTF8String fileName, uint line, uint pos, uint flags, uint errnum, jsdIValue exc)
            {
                var eventArgs = new JavascriptErrorEventArgs(message.ToString(), fileName.ToString(), line, pos, flags, errnum);
                m_browser.OnJavascriptError(eventArgs);
                return true;
            }
GeckoWebBrowser.JSErrorHandler