프로젝트

일반

사용자정보

개정판 74abcf6f

ID74abcf6f6a706ead3c5666b598790fadac032fbf
상위 d21e9c15
하위 77cdac33

김태성이(가) 3년 이상 전에 추가함

sign manager 추가

Change-Id: Ia511ce9bf05e3a238353a549118d3b29ab673aa0

차이점 보기:

KCOM/Connected Services/KcomService/Reference.cs
841 841
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSignData", ReplyAction="urn:ServiceDeepView/GetSignDataResponse")]
842 842
        System.Threading.Tasks.Task<string> GetSignDataAsync(string project_no, string user_id);
843 843
        
844
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSignStrokes", ReplyAction="urn:ServiceDeepView/GetSignStrokesResponse")]
845
        string GetSignStrokes(string project_no, string user_id);
846
        
847
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSignStrokes", ReplyAction="urn:ServiceDeepView/GetSignStrokesResponse")]
848
        System.Threading.Tasks.Task<string> GetSignStrokesAsync(string project_no, string user_id);
849
        
844 850
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetSignData", ReplyAction="urn:ServiceDeepView/SetSignDataResponse")]
845
        int SetSignData(string user_id, string SignStr);
851
        int SetSignData(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight);
846 852
        
847 853
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetSignData", ReplyAction="urn:ServiceDeepView/SetSignDataResponse")]
848
        System.Threading.Tasks.Task<int> SetSignDataAsync(string user_id, string SignStr);
854
        System.Threading.Tasks.Task<int> SetSignDataAsync(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight);
855
        
856
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetSignStrokes", ReplyAction="urn:ServiceDeepView/SetSignStrokesResponse")]
857
        int SetSignStrokes(string user_id, string strokesData);
858
        
859
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetSignStrokes", ReplyAction="urn:ServiceDeepView/SetSignStrokesResponse")]
860
        System.Threading.Tasks.Task<int> SetSignStrokesAsync(string user_id, string strokesData);
849 861
        
850 862
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetProjectName", ReplyAction="urn:ServiceDeepView/GetProjectNameResponse")]
851 863
        string GetProjectName(string project_no);
......
1435 1447
            return base.Channel.GetSignDataAsync(project_no, user_id);
1436 1448
        }
1437 1449
        
1438
        public int SetSignData(string user_id, string SignStr) {
1439
            return base.Channel.SetSignData(user_id, SignStr);
1450
        public string GetSignStrokes(string project_no, string user_id) {
1451
            return base.Channel.GetSignStrokes(project_no, user_id);
1452
        }
1453
        
1454
        public System.Threading.Tasks.Task<string> GetSignStrokesAsync(string project_no, string user_id) {
1455
            return base.Channel.GetSignStrokesAsync(project_no, user_id);
1456
        }
1457
        
1458
        public int SetSignData(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight) {
1459
            return base.Channel.SetSignData(user_id, SignStr, CropX, CropY, CropWidth, CropHeight);
1460
        }
1461
        
1462
        public System.Threading.Tasks.Task<int> SetSignDataAsync(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight) {
1463
            return base.Channel.SetSignDataAsync(user_id, SignStr, CropX, CropY, CropWidth, CropHeight);
1464
        }
1465
        
1466
        public int SetSignStrokes(string user_id, string strokesData) {
1467
            return base.Channel.SetSignStrokes(user_id, strokesData);
1440 1468
        }
1441 1469
        
1442
        public System.Threading.Tasks.Task<int> SetSignDataAsync(string user_id, string SignStr) {
1443
            return base.Channel.SetSignDataAsync(user_id, SignStr);
1470
        public System.Threading.Tasks.Task<int> SetSignStrokesAsync(string user_id, string strokesData) {
1471
            return base.Channel.SetSignStrokesAsync(user_id, strokesData);
1444 1472
        }
1445 1473
        
1446 1474
        public string GetProjectName(string project_no) {

내보내기 Unified diff

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