Kimono.KRun.ProcessDesktopExec C# (CSharp) Method

ProcessDesktopExec() public static method

Processes a Exec= line as found in .desktop files. name="_service" the service to extract information from. name="_urls" The urls the service should open. name="tempFiles" if true and urls are local files, they will be deleted when the application exits. name="suggestedFileName" see setSuggestedFileName
public static ProcessDesktopExec ( Kimono.KService _service, List _urls, bool tempFiles, string suggestedFileName ) : List
_service Kimono.KService
_urls List
tempFiles bool
suggestedFileName string
return List
        public static List<string> ProcessDesktopExec(KService _service, List<KUrl> _urls, bool tempFiles, string suggestedFileName)
        {
            return (List<string>) staticInterceptor.Invoke("processDesktopExec#?$$", "processDesktopExec(const KService&, const KUrl::List&, bool, const QString&)", typeof(List<string>), typeof(KService), _service, typeof(List<KUrl>), _urls, typeof(bool), tempFiles, typeof(string), suggestedFileName);
        }

Same methods

KRun::ProcessDesktopExec ( Kimono.KService _service, List _urls ) : List
KRun::ProcessDesktopExec ( Kimono.KService _service, List _urls, bool tempFiles ) : List