markus / ConvertService / ServiceBase / PlugInTest / Program.cs @ d91efe5c
이력 | 보기 | 이력해설 | 다운로드 (864 Bytes)
1 | d91efe5c | taeseongkim | using Markus.Service; |
---|---|---|---|
2 | c8183702 | taeseongkim | 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 Main(string[] args) |
||
13 | { |
||
14 | Console.WriteLine("PlugIn Load............"); |
||
15 | Console.Write("테스트용 Convert Doc ID : "); |
||
16 | var convertID = Console.ReadLine(); |
||
17 | |||
18 | try |
||
19 | { |
||
20 | d91efe5c | taeseongkim | PluginService.Run(convertID); |
21 | c8183702 | taeseongkim | |
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 | } |