2020-05-27 00:51:48 +02:00
|
|
|
|
using System.ComponentModel;
|
2025-11-22 02:16:10 +01:00
|
|
|
|
using System.Runtime.Versioning;
|
2020-05-27 00:51:48 +02:00
|
|
|
|
|
|
|
|
|
|
namespace ElectronNET.API.Entities
|
2017-10-21 04:37:01 +02:00
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2020-05-27 01:04:28 +02:00
|
|
|
|
/// Defines the ShortcutLinkOperation enumeration.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2025-11-22 02:16:10 +01:00
|
|
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
|
|
|
|
|
[SupportedOSPlatform("Windows")]
|
2017-10-21 04:37:01 +02:00
|
|
|
|
public enum ShortcutLinkOperation
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Creates a new shortcut, overwriting if necessary.
|
|
|
|
|
|
/// </summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
Create,
|
2017-10-21 04:37:01 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Updates specified properties only on an existing shortcut.
|
|
|
|
|
|
/// </summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
Update,
|
2017-10-21 04:37:01 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
/// Overwrites an existing shortcut, fails if the shortcut doesn't exist.
|
2017-10-21 04:37:01 +02:00
|
|
|
|
/// </summary>
|
2020-05-27 00:51:48 +02:00
|
|
|
|
Replace
|
2017-10-21 04:37:01 +02:00
|
|
|
|
}
|
2025-11-15 08:05:31 +01:00
|
|
|
|
}
|