markus / ConvertService / ServiceController / Markus.Service.StationController / Data / SetFinalPDFCompletedEventArgs.cs @ fc4e50f2
이력 | 보기 | 이력해설 | 다운로드 (774 Bytes)
1 |
using IFinalPDF; |
---|---|
2 |
using System; |
3 |
using System.Collections.Generic; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
using System.Threading.Tasks; |
7 |
|
8 |
namespace Markus.Service.StationController.Data |
9 |
{ |
10 |
class SetFinalPDFCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs |
11 |
{ |
12 |
|
13 |
private object[] results; |
14 |
|
15 |
public SetFinalPDFCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : |
16 |
base(exception, cancelled, userState) |
17 |
{ |
18 |
this.results = results; |
19 |
} |
20 |
|
21 |
public FinalPDFResult Result |
22 |
{ |
23 |
get |
24 |
{ |
25 |
base.RaiseExceptionIfNecessary(); |
26 |
return ((FinalPDFResult)(this.results[0])); |
27 |
} |
28 |
} |
29 |
} |
30 |
} |