Kimono.KMimeType.FavIconForUrl C# (CSharp) Method

FavIconForUrl() public static method

Return the "favicon" (see http://www.favicon.com) for the given url, if available. Does NOT attempt to download the favicon, it only returns one that is already available. If unavailable, returns string(). name="url" the URL of the favicon
public static FavIconForUrl ( Kimono.KUrl url ) : string
url Kimono.KUrl
return string
        public static string FavIconForUrl(KUrl url)
        {
            return (string) staticInterceptor.Invoke("favIconForUrl#", "favIconForUrl(const KUrl&)", typeof(string), typeof(KUrl), url);
        }