markus / ConvertService / ServiceBase / IServiceBase / ProcessContext.cs @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (840 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
namespace Markus.Service |
8 |
{ |
9 |
/// <summary> |
10 |
/// convertProcess 호출에 사용되는 agurment가 들어가 있다. |
11 |
/// </summary> |
12 |
[Serializable] |
13 |
public class ProcessContext |
14 |
{ |
15 |
public string ConvertID { get; set; } |
16 |
|
17 |
public string ServiceStationUri { get; set; } |
18 |
|
19 |
public string ConnectionString { get; set; } |
20 |
|
21 |
public string OriginFilePath { get; set; } |
22 |
|
23 |
public string SaveDirectory { get; set; } |
24 |
|
25 |
public string TempDirectory { get; set; } |
26 |
|
27 |
public int MultiThreadMaxPages { get; set; } |
28 |
|
29 |
public long ReleaseWorkMemory { get; set; } |
30 |
|
31 |
public int MinFontSize { get; set; } |
32 |
|
33 |
public int SendStatusInterval { get; set; } |
34 |
} |
35 |
} |