mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
update OpenUrl method summary
This commit is contained in:
parent
f4d6ef371a
commit
eb7a89292b
1 changed files with 4 additions and 2 deletions
|
|
@ -319,13 +319,15 @@ namespace Flow.Launcher.Plugin
|
|||
public void OpenWebUrl(string url, bool? inPrivate = null);
|
||||
|
||||
/// <summary>
|
||||
/// Opens the URL with the given Uri object.
|
||||
/// Opens the URL with the given Uri object in browser if scheme is Http or Https.
|
||||
/// If the URL is a local file, it will instead be opened with the default application for that file type.
|
||||
/// The browser and mode used is based on what's configured in Flow's default browser settings.
|
||||
/// </summary>
|
||||
public void OpenUrl(Uri url, bool? inPrivate = null);
|
||||
|
||||
/// <summary>
|
||||
/// Opens the URL with the given string.
|
||||
/// Opens the URL with the given string in browser if scheme is Http or Https.
|
||||
/// If the URL is a local file, it will instead be opened with the default application for that file type.
|
||||
/// The browser and mode used is based on what's configured in Flow's default browser settings.
|
||||
/// Non-C# plugins should use this method.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Reference in a new issue