HamBook – Diff between revs 54 and 56
?pathlinks?
Rev 54 | Rev 56 | |||
---|---|---|---|---|
Line 5... | Line 5... | |||
5 | { |
5 | { |
|
6 | public class DataGridViewRowProgressFailure<T> : DataGridViewRowProgress |
6 | public class DataGridViewRowProgressFailure<T> : DataGridViewRowProgress |
|
7 | { |
7 | { |
|
8 | public T Data { get; } |
8 | public T Data { get; } |
|
Line -... | Line 9... | |||
- | 9 | |
||
- | 10 | #region Public Enums, Properties and Fields |
||
- | 11 | |
||
- | 12 | public Exception Exception { get; } |
||
- | 13 | |
||
- | 14 | #endregion |
||
9 | |
15 | |
|
Line 10... | Line 16... | |||
10 | #region Constructors, Destructors and Finalizers |
16 | #region Constructors, Destructors and Finalizers |
|
11 | |
17 | |
|
12 | public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception) : base(row, index, |
18 | public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception) : base(row, index, |
|
13 | false) |
19 | false) |
|
14 | { |
20 | { |
|
Line 15... | Line 21... | |||
15 | Exception = exception; |
21 | Exception = exception; |
|
- | 22 | } |
||
16 | } |
23 | |
|
17 | |
24 | public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception, T data) : base(row, |
|
18 | public DataGridViewRowProgressFailure(DataGridViewRow row, int index, Exception exception, T data ) : base(row, index, false) |
25 | index, false) |
|
19 | { |
26 | { |
|
Line 20... | Line 27... | |||
20 | Exception = exception; |
27 | Exception = exception; |
|
21 | Data = data; |
- | ||
22 | } |
- | ||
23 | |
- | ||
24 | #endregion |
- | ||
25 | |
- | ||
26 | #region Public Enums, Properties and Fields |
- | ||
27 | |
28 | Data = data; |
|
28 | public Exception Exception { get; } |
29 | } |
|
29 | |
30 | |