Kimono.KRun.RunUrl C# (CSharp) Method

RunUrl() public static method

Open the given URL. This function is used after the mime type is found out. It will search for all services which can handle the mime type and call run() afterwards. name="url" the URL to open name="mimetype" the mime type of the resource name="window" The top-level widget of the app that invoked this object. name="tempFile" if true and url is a local file, it will be deleted when the launched application exits. name="runExecutables" if false then local .desktop files, executables and shell scripts will not be run. See also isExecutable(). name="suggestedFileName" see setSuggestedFileName name="asn" Application startup notification id, if any (otherwise "").
public static RunUrl ( Kimono.KUrl url, string mimetype, QWidget window, bool tempFile, bool runExecutables, string suggestedFileName, Qyoto.QByteArray asn ) : bool
url Kimono.KUrl
mimetype string
window Qyoto.QWidget
tempFile bool
runExecutables bool
suggestedFileName string
asn Qyoto.QByteArray
return bool
        public static bool RunUrl(KUrl url, string mimetype, QWidget window, bool tempFile, bool runExecutables, string suggestedFileName, QByteArray asn)
        {
            return (bool) staticInterceptor.Invoke("runUrl#$#$$$#", "runUrl(const KUrl&, const QString&, QWidget*, bool, bool, const QString&, const QByteArray&)", typeof(bool), typeof(KUrl), url, typeof(string), mimetype, typeof(QWidget), window, typeof(bool), tempFile, typeof(bool), runExecutables, typeof(string), suggestedFileName, typeof(QByteArray), asn);
        }

Same methods

KRun::RunUrl ( Kimono.KUrl url, string mimetype, QWidget window ) : bool
KRun::RunUrl ( Kimono.KUrl url, string mimetype, QWidget window, bool tempFile ) : bool
KRun::RunUrl ( Kimono.KUrl url, string mimetype, QWidget window, bool tempFile, bool runExecutables ) : bool
KRun::RunUrl ( Kimono.KUrl url, string mimetype, QWidget window, bool tempFile, bool runExecutables, string suggestedFileName ) : bool