mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Improve xml documents
This commit is contained in:
parent
1fabe8d849
commit
def02b34a1
1 changed files with 7 additions and 7 deletions
|
|
@ -588,11 +588,11 @@ namespace Flow.Launcher.Plugin
|
|||
/// <remarks>
|
||||
/// It can help to start a de-elevated process and show user account control dialog when Flow is running as administrator.
|
||||
/// </remarks>
|
||||
/// <param name="filePath">Absolute file path. It can be an executable file or a script file</param>
|
||||
/// <param name="filePath">File path</param>
|
||||
/// <param name="workingDirectory">Working directory. If not specified, the current directory will be used</param>
|
||||
/// <param name="arguments">Optional arguments to pass to the process. If not specified, no arguments will be passed</param>
|
||||
/// <param name="useShellExecute">Whether to use shell to execute the process.</param>
|
||||
/// <param name="verb">The verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.</param>
|
||||
/// <param name="useShellExecute">Whether to use shell to execute the process</param>
|
||||
/// <param name="verb">Verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.</param>
|
||||
/// <returns>Whether process is started successfully</returns>
|
||||
public bool StartProcess(string filePath, string workingDirectory = "", string arguments = "", bool useShellExecute = true, string verb = "");
|
||||
|
||||
|
|
@ -602,11 +602,11 @@ namespace Flow.Launcher.Plugin
|
|||
/// <remarks>
|
||||
/// It can help to start a de-elevated process and show user account control dialog when Flow is running as administrator.
|
||||
/// </remarks>
|
||||
/// <param name="filePath">Absolute file path. It can be an executable file or a script file</param>
|
||||
/// <param name="filePath">File path</param>
|
||||
/// <param name="workingDirectory">Working directory. If not specified, the current directory will be used</param>
|
||||
/// <param name="argumentList">Optional arguments to pass to the process. If not specified, no arguments will be passed</param>
|
||||
/// <param name="useShellExecute">Whether to use shell to execute the process.</param>
|
||||
/// <param name="verb">The verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.</param>
|
||||
/// <param name="argumentList">Optional argument list to pass to the process. If not specified, no arguments will be passed</param>
|
||||
/// <param name="useShellExecute">Whether to use shell to execute the process</param>
|
||||
/// <param name="verb">Verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.</param>
|
||||
/// <returns>Whether process is started successfully</returns>
|
||||
public bool StartProcess(string filePath, string workingDirectory = "", Collection<string> argumentList = null, bool useShellExecute = true, string verb = "");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue