From def02b34a14a3a0c5ab239694054806d0c89fef4 Mon Sep 17 00:00:00 2001
From: Jack251970 <1160210343@qq.com>
Date: Fri, 13 Jun 2025 17:50:51 +0800
Subject: [PATCH] Improve xml documents
---
Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
index 260a46112..a6ab4b102 100644
--- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
+++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
@@ -588,11 +588,11 @@ namespace Flow.Launcher.Plugin
///
/// It can help to start a de-elevated process and show user account control dialog when Flow is running as administrator.
///
- /// Absolute file path. It can be an executable file or a script file
+ /// File path
/// Working directory. If not specified, the current directory will be used
/// Optional arguments to pass to the process. If not specified, no arguments will be passed
- /// Whether to use shell to execute the process.
- /// The verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.
+ /// Whether to use shell to execute the process
+ /// Verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.
/// Whether process is started successfully
public bool StartProcess(string filePath, string workingDirectory = "", string arguments = "", bool useShellExecute = true, string verb = "");
@@ -602,11 +602,11 @@ namespace Flow.Launcher.Plugin
///
/// It can help to start a de-elevated process and show user account control dialog when Flow is running as administrator.
///
- /// Absolute file path. It can be an executable file or a script file
+ /// File path
/// Working directory. If not specified, the current directory will be used
- /// Optional arguments to pass to the process. If not specified, no arguments will be passed
- /// Whether to use shell to execute the process.
- /// The verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.
+ /// Optional argument list to pass to the process. If not specified, no arguments will be passed
+ /// Whether to use shell to execute the process
+ /// Verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used.
/// Whether process is started successfully
public bool StartProcess(string filePath, string workingDirectory = "", Collection argumentList = null, bool useShellExecute = true, string verb = "");
}