mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 05:34:34 +00:00
23 lines
530 B
C#
23 lines
530 B
C#
namespace ElectronNET.API
|
||
{
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public enum ShortcutLinkOperation
|
||
{
|
||
/// <summary>
|
||
/// Creates a new shortcut, overwriting if necessary.
|
||
/// </summary>
|
||
create,
|
||
|
||
/// <summary>
|
||
/// Updates specified properties only on an existing shortcut.
|
||
/// </summary>
|
||
update,
|
||
|
||
/// <summary>
|
||
/// Overwrites an existing shortcut, fails if the shortcut doesn’t exist.
|
||
/// </summary>
|
||
replace
|
||
}
|
||
} |