markus / MarkusAutoUpdate / src / NetSparkle / Events / UpdateDetectedEventArgs.cs @ d8f5045e
이력 | 보기 | 이력해설 | 다운로드 (910 Bytes)
1 |
using NetSparkleUpdater.Configurations; |
---|---|
2 |
using NetSparkleUpdater.Enums; |
3 |
using System; |
4 |
using System.Collections.Generic; |
5 |
|
6 |
namespace NetSparkleUpdater.Events |
7 |
{ |
8 |
/// <summary> |
9 |
/// Contains all information for the update detected event |
10 |
/// </summary> |
11 |
public class UpdateDetectedEventArgs : EventArgs |
12 |
{ |
13 |
/// <summary> |
14 |
/// The next action |
15 |
/// </summary> |
16 |
public NextUpdateAction NextAction { get; set; } |
17 |
/// <summary> |
18 |
/// The application configuration |
19 |
/// </summary> |
20 |
public Configuration ApplicationConfig { get; set; } |
21 |
/// <summary> |
22 |
/// The latest available version |
23 |
/// </summary> |
24 |
public AppCastItem LatestVersion { get; set; } |
25 |
|
26 |
/// <summary> |
27 |
/// All app cast items that were sent in the appcast |
28 |
/// </summary> |
29 |
public List<AppCastItem> AppCastItems { get; set; } |
30 |
} |
31 |
} |