Kimono.KHTMLPart.CompleteURL C# (CSharp) Method

CompleteURL() protected method

returns a KUrl object for the given url. Use when you know what you're doing.
protected CompleteURL ( string url ) : Kimono.KUrl
url string
return Kimono.KUrl
        protected KUrl CompleteURL(string url)
        {
            return (KUrl) interceptor.Invoke("completeURL$", "completeURL(const QString&)", typeof(KUrl), typeof(string), url);
        }
KHTMLPart