blob: d994dc952d8e3b296237e8e8b84e4bd6c7d4f1f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="UpdateCheckInformation.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Provides information about an update check.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Model
{
using System;
/// <summary>
/// Provides information about an update check.
/// </summary>
public struct UpdateCheckInformation
{
/// <summary>
/// Gets or sets a value indicating whether a New Version is Available.
/// </summary>
public bool NewVersionAvailable { get; set; }
/// <summary>
/// Gets a value indicating whether an Error Occurred.
/// </summary>
public bool ErrorOccured
{
get { return this.Error != null; }
}
/// <summary>
/// Gets or sets Information about an update to HandBrake
/// </summary>
public Uri DescriptionUrl { get; set; }
/// <summary>
/// Gets or sets HandBrake's version from the appcast.xml file.
/// </summary>
public string Version { get; set; }
/// <summary>
/// Gets or sets HandBrake's Build from the appcast.xml file.
/// </summary>
public string Build { get; set; }
/// <summary>
/// Gets or sets the URL for update file.
/// </summary>
public string DownloadFile { get; set; }
/// <summary>
/// Gets or sets the error that occurred, if any. This will be null if no error occurred.
/// </summary>
public Exception Error { get; set; }
/// <summary>
/// Gets or sets the expected DSA SHA256 Signature
/// </summary>
public string Signature { get; set; }
}
}
|