blob: 2f7c7e874a85609dba2ac9465b033b3ebb2a9e50 (
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
63
64
65
66
67
68
69
70
71
|
/* UpdateCheckResult.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.ApplicationServices.Model.General
{
using System;
using System.Threading;
/// <summary>
/// Used in EndUpdateCheck() for update checking and the IAsyncResult design pattern.
/// </summary>
public class UpdateCheckResult : IAsyncResult
{
/// <summary>
/// Initializes a new instance of the <see cref="UpdateCheckResult"/> class.
/// </summary>
/// <param name="asyncState">
/// The async state.
/// </param>
/// <param name="info">
/// The info.
/// </param>
public UpdateCheckResult(object asyncState, ApplicationServices.Model.General.UpdateCheckInformation info)
{
this.AsyncState = asyncState;
this.Result = info;
}
/// <summary>
/// Gets whether the check was executed in debug mode.
/// </summary>
public object AsyncState { get; private set; }
/// <summary>
/// Gets the result of the update check.
/// </summary>
public ApplicationServices.Model.General.UpdateCheckInformation Result { get; private set; }
/// <summary>
/// Gets AsyncWaitHandle.
/// </summary>
/// <exception cref="NotImplementedException">
/// </exception>
public WaitHandle AsyncWaitHandle
{
get { throw new NotImplementedException(); }
}
/// <summary>
/// Gets a value indicating whether CompletedSynchronously.
/// </summary>
/// <exception cref="NotImplementedException">
/// </exception>
public bool CompletedSynchronously
{
get { throw new NotImplementedException(); }
}
/// <summary>
/// Gets a value indicating whether IsCompleted.
/// </summary>
/// <exception cref="NotImplementedException">
/// </exception>
public bool IsCompleted
{
get { throw new NotImplementedException(); }
}
}
}
|