Kimono.KRun.Run C# (CSharp) Method

Run() public static method

Open a list of URLs with a certain service (application). name="service" the service to run name="urls" the list of URLs, can be empty (app launched without argument) name="window" The top-level widget of the app that invoked this object. name="tempFiles" if true and urls are local files, they will be deleted when the application exits. name="suggestedFileName" see setSuggestedFileName name="asn" Application startup notification id, if any (otherwise "").
public static Run ( Kimono.KService service, List urls, QWidget window, bool tempFiles, string suggestedFileName, Qyoto.QByteArray asn ) : bool
service Kimono.KService
urls List
window Qyoto.QWidget
tempFiles bool
suggestedFileName string
asn Qyoto.QByteArray
return bool
        public static bool Run(KService service, List<KUrl> urls, QWidget window, bool tempFiles, string suggestedFileName, QByteArray asn)
        {
            return (bool) staticInterceptor.Invoke("run#?#$$#", "run(const KService&, const KUrl::List&, QWidget*, bool, const QString&, const QByteArray&)", typeof(bool), typeof(KService), service, typeof(List<KUrl>), urls, typeof(QWidget), window, typeof(bool), tempFiles, typeof(string), suggestedFileName, typeof(QByteArray), asn);
        }

Same methods

KRun::Run ( Kimono.KService service, List urls, QWidget window ) : bool
KRun::Run ( Kimono.KService service, List urls, QWidget window, bool tempFiles ) : bool
KRun::Run ( Kimono.KService service, List urls, QWidget window, bool tempFiles, string suggestedFileName ) : bool
KRun::Run ( string exec, List urls, QWidget window ) : bool
KRun::Run ( string exec, List urls, QWidget window, string name ) : bool
KRun::Run ( string exec, List urls, QWidget window, string name, string icon ) : bool
KRun::Run ( string exec, List urls, QWidget window, string name, string icon, Qyoto.QByteArray asn ) : bool