Skybound.Gecko.GeckoWebBrowser.JSErrorHandler.OnError C# (CSharp) 메소드

OnError() 공개 메소드

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
리턴 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