프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ConverterService / IConverterPDF / RemConverterPDFObject.cs @ 7864cac7

이력 | 보기 | 이력해설 | 다운로드 (1.16 KB)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5

    
6
namespace IConverterPDF
7
{
8
    public class RemConverterPDFObject : MarshalByRefObject
9
    {
10

    
11
        public int MultiProcessCount
12
        {
13
            get
14
            {
15
                return Cache.GetInstance().MultiProcessCount;
16
            }
17

    
18
            set
19
            {
20
                Cache.GetInstance().MultiProcessCount = value;
21
            }
22
        }
23

    
24
        public string[] RunningProcessID()
25
        {
26
            return Cache.GetInstance().RunningProcessID();
27
        }
28

    
29
        public ConverterPDFResult SetConverterPDF(string ProjectNo, string ConverterID)
30
        {
31
            return Cache.GetInstance().SetConverterPDF(ProjectNo, ConverterID);
32
        }
33

    
34
        public ServiceInfo ServiceInfomation()
35
        {
36
            return  Cache.GetInstance().ServiceInfomation();
37
        }
38

    
39
        public TileSorceStorageInfo[] TileSorceStorageInfomation()
40
        {
41
            return Cache.GetInstance().TileSorceStorageInfomation();
42
        }
43

    
44
        public bool ServiceOn(string ServiceID)
45
        {
46
            return Cache.GetInstance().ServiceOn(ServiceID);
47
        }
48

    
49
    }
50
}
클립보드 이미지 추가 (최대 크기: 500 MB)