markus / ConvertService / ServiceBase / PlugInTest / Program_.cs @ c8183702
이력 | 보기 | 이력해설 | 다운로드 (866 Bytes)
1 |
using Markus.Service; |
---|---|
2 |
using System; |
3 |
using System.Collections.Generic; |
4 |
using System.Linq; |
5 |
using System.Text; |
6 |
using System.Threading.Tasks; |
7 |
|
8 |
namespace PlugInTest |
9 |
{ |
10 |
class Program_ |
11 |
{ |
12 |
static void Mainx(string[] args) |
13 |
{ |
14 |
Console.WriteLine("PlugIn Load............"); |
15 |
Console.Write("테스트용 Convert Doc ID : "); |
16 |
var convertID = Console.ReadLine(); |
17 |
|
18 |
try |
19 |
{ |
20 |
PluginService.Run(convertID); |
21 |
|
22 |
Console.WriteLine("Call Plug In"); |
23 |
} |
24 |
catch (Exception ex) |
25 |
{ |
26 |
Console.WriteLine(ex.ToString()); |
27 |
|
28 |
if (ex.InnerException != null) |
29 |
{ |
30 |
Console.WriteLine(ex.InnerException.ToString()); |
31 |
} |
32 |
} |
33 |
|
34 |
Console.ReadLine(); |
35 |
} |
36 |
} |
37 |
} |