blob: ff59dce7267c351b210e84110fa0df36fe37a733 (
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
|
/* UpdateCheckInformation.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.Framework.Model
{
using System;
using HandBrake.Framework.Services.Interfaces;
/// <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 Occured.
/// </summary>
public bool ErrorOccured
{
get { return this.Error != null; }
}
/// <summary>
/// Gets or sets information about the new build, if any. This will be null if there is no new verison.
/// </summary>
public IAppcastReader BuildInformation { get; set; }
/// <summary>
/// Gets or sets the error that occurred, if any. This will be null if no error occured.
/// </summary>
public Exception Error { get; set; }
}
}
|