mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-08-10 18:19:36 +00:00
implement Demo App sections: Dialogs, Menu, Tray, Shell, CrashHang, Notification, Shortcuts etc. Fix some API bugs and implement GlobalShortcut-, Shell- and WebContents-API.
This commit is contained in:
20
ElectronNET.API/Entities/ShortcutLinkOperation.cs
Normal file
20
ElectronNET.API/Entities/ShortcutLinkOperation.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace ElectronNET.API
|
||||
{
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user