개정판 78683624
ConvertPath Icon추가 & Interface삭제
Change-Id: I9b142f056f876d6daa2e2d9f527cf03b93997078
ConvertService/ServiceBase/IServiceBase/ProcessContext.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
1 |
//using System;
|
|
2 |
//using System.Collections.Generic;
|
|
3 |
//using System.Linq;
|
|
4 |
//using System.Text;
|
|
5 |
//using System.Threading.Tasks;
|
|
6 | 6 |
|
7 |
namespace Markus.Service |
|
8 |
{ |
|
9 |
/// <summary> |
|
10 |
/// convertProcess 호출에 사용되는 agurment가 들어가 있다. |
|
11 |
/// </summary> |
|
12 |
[Serializable] |
|
13 |
public class ProcessContext |
|
14 |
{ |
|
15 |
/// <summary> |
|
16 |
/// Convert ID |
|
17 |
/// </summary> |
|
18 |
public string ConvertID { get; set; } |
|
7 |
//namespace Markus.Service
|
|
8 |
//{
|
|
9 |
// /// <summary>
|
|
10 |
// /// convertProcess 호출에 사용되는 agurment가 들어가 있다.
|
|
11 |
// /// </summary>
|
|
12 |
// [Serializable]
|
|
13 |
// public class ProcessContext
|
|
14 |
// {
|
|
15 |
// /// <summary>
|
|
16 |
// /// Convert ID
|
|
17 |
// /// </summary>
|
|
18 |
// public string ConvertID { get; set; }
|
|
19 | 19 |
|
20 |
/// <summary> |
|
21 |
/// Convert Service URI |
|
22 |
/// </summary> |
|
23 |
public string ServiceStationUri { get; set; } |
|
20 |
// /// <summary>
|
|
21 |
// /// Convert Service URI
|
|
22 |
// /// </summary>
|
|
23 |
// public string ServiceStationUri { get; set; }
|
|
24 | 24 |
|
25 |
/// <summary> |
|
26 |
/// DataBase Connection String |
|
27 |
/// </summary> |
|
28 |
public string ConnectionString { get; set; } |
|
25 |
// /// <summary>
|
|
26 |
// /// DataBase Connection String
|
|
27 |
// /// </summary>
|
|
28 |
// public string ConnectionString { get; set; }
|
|
29 | 29 |
|
30 |
/// <summary> |
|
31 |
/// PDF 파일 경로 |
|
32 |
/// </summary> |
|
33 |
public string OriginFilePath { get; set; } |
|
30 |
// /// <summary>
|
|
31 |
// /// PDF 파일 경로
|
|
32 |
// /// </summary>
|
|
33 |
// public string OriginFilePath { get; set; }
|
|
34 | 34 |
|
35 |
/// <summary> |
|
36 |
/// 저장 경로 |
|
37 |
/// </summary> |
|
38 |
public string SaveDirectory { get; set; } |
|
35 |
// /// <summary>
|
|
36 |
// /// 저장 경로
|
|
37 |
// /// </summary>
|
|
38 |
// public string SaveDirectory { get; set; }
|
|
39 | 39 |
|
40 |
/// <summary> |
|
41 |
/// 임시파일 경로 |
|
42 |
/// 사용안함 |
|
43 |
/// </summary> |
|
44 |
public string TempDirectory { get; set; } |
|
40 |
// /// <summary>
|
|
41 |
// /// 임시파일 경로
|
|
42 |
// /// 사용안함
|
|
43 |
// /// </summary>
|
|
44 |
// public string TempDirectory { get; set; }
|
|
45 | 45 |
|
46 |
/// <summary> |
|
47 |
/// pThread로 Converting 가능한 최대 페이지 수 |
|
48 |
/// </summary> |
|
49 |
public int MultiThreadMaxPages { get; set; } |
|
46 |
// /// <summary>
|
|
47 |
// /// pThread로 Converting 가능한 최대 페이지 수
|
|
48 |
// /// </summary>
|
|
49 |
// public int MultiThreadMaxPages { get; set; }
|
|
50 | 50 |
|
51 |
/// <summary> |
|
52 |
/// MarkusPDF가 초기화 되는 메모리 초대치 |
|
53 |
/// </summary> |
|
54 |
public long ReleaseWorkMemory { get; set; } |
|
51 |
// /// <summary>
|
|
52 |
// /// MarkusPDF가 초기화 되는 메모리 초대치
|
|
53 |
// /// </summary>
|
|
54 |
// public long ReleaseWorkMemory { get; set; }
|
|
55 | 55 |
|
56 |
/// <summary> |
|
57 |
/// 페이지에서 MinFontSize이하의 글자가 있으면 해상도를 200으로 한다. |
|
58 |
/// </summary> |
|
59 |
public int MinFontSize { get; set; } |
|
56 |
// /// <summary>
|
|
57 |
// /// 페이지에서 MinFontSize이하의 글자가 있으면 해상도를 200으로 한다.
|
|
58 |
// /// </summary>
|
|
59 |
// public int MinFontSize { get; set; }
|
|
60 | 60 |
|
61 |
/// <summary> |
|
62 |
/// 해상도를 고정해서 Convert |
|
63 |
/// </summary> |
|
64 |
public int UseResolution { get; set; } |
|
61 |
// /// <summary>
|
|
62 |
// /// 해상도를 고정해서 Convert
|
|
63 |
// /// </summary>
|
|
64 |
// public int UseResolution { get; set; }
|
|
65 | 65 |
|
66 |
/// <summary> |
|
67 |
/// 상태값을 보내는 간격(페이지간격) |
|
68 |
/// </summary> |
|
69 |
public int SendStatusInterval { get; set; } |
|
70 |
} |
|
71 |
} |
|
66 |
// /// <summary> |
|
67 |
// /// 상태값을 보내는 간격(페이지간격) |
|
68 |
// /// </summary> |
|
69 |
// public int SendStatusInterval { get; set; } |
|
70 |
// } |
|
71 |
//} |
내보내기 Unified diff