markus / MarkusAutoUpdate / src / NetSparkle / Enums / NextUpdateAction.cs @ d8f5045e
이력 | 보기 | 이력해설 | 다운로드 (648 Bytes)
1 | d8f5045e | taeseongkim | namespace NetSparkleUpdater.Enums |
---|---|---|---|
2 | { |
||
3 | /// <summary> |
||
4 | /// Everytime when NetSparkleUpdater detects an update, the |
||
5 | /// consumer can decide what should happen next with the help |
||
6 | /// of the <see cref="UpdateDetected"/> event |
||
7 | /// </summary> |
||
8 | public enum NextUpdateAction |
||
9 | { |
||
10 | /// <summary> |
||
11 | /// Show the user interface |
||
12 | /// </summary> |
||
13 | ShowStandardUserInterface = 1, |
||
14 | /// <summary> |
||
15 | /// Perform an unattended install |
||
16 | /// </summary> |
||
17 | PerformUpdateUnattended = 2, |
||
18 | /// <summary> |
||
19 | /// Prohibit the update |
||
20 | /// </summary> |
||
21 | ProhibitUpdate = 3 |
||
22 | } |
||
23 | } |