Kimono.KHTMLPart.HtmlError C# (CSharp) Method

HtmlError() protected method

presents a detailed error message to the user. errorCode kio error code, eg KIO.ERR_SERVER_TIMEOUT. text kio additional information text. url the url that triggered the error.
protected HtmlError ( int errorCode, string text, Kimono.KUrl reqUrl ) : void
errorCode int
text string
reqUrl Kimono.KUrl
return void
        protected void HtmlError(int errorCode, string text, KUrl reqUrl)
        {
            interceptor.Invoke("htmlError$$#", "htmlError(int, const QString&, const KUrl&)", typeof(void), typeof(int), errorCode, typeof(string), text, typeof(KUrl), reqUrl);
        }
KHTMLPart