프로젝트

일반

사용자정보

개정판 0c575433

ID0c575433869ede2218d6225fc50603e03881b25c
상위 f1dd3ed6
하위 a860bafc

김태성이(가) 5달 전에 추가함

issue #0000 compare 수정

Change-Id: I9b57c124b64674f7ae618978955093b399008da5

차이점 보기:

KCOM/Connected Services/ServiceDeepView/Reference.cs
183 183
        
184 184
        bool EndDelFavoriteVP(System.IAsyncResult result);
185 185
        
186
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCompareRectsTargetSize", ReplyAction="urn:ServiceDeepView/GetCompareRectsTargetSizeResponse")]
187
        System.Collections.Generic.List<System.Windows.Rect> GetCompareRectsTargetSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, bool IsResultTargatSize, string isInternalAddress);
188
        
189
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCompareRectsTargetSize", ReplyAction="urn:ServiceDeepView/GetCompareRectsTargetSizeResponse")]
190
        System.IAsyncResult BeginGetCompareRectsTargetSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, bool IsResultTargatSize, string isInternalAddress, System.AsyncCallback callback, object asyncState);
191
        
192
        System.Collections.Generic.List<System.Windows.Rect> EndGetCompareRectsTargetSize(System.IAsyncResult result);
193
        
186 194
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCompareRect", ReplyAction="urn:ServiceDeepView/GetCompareRectResponse")]
187 195
        System.Collections.Generic.List<System.Windows.Rect> GetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress);
188 196
        
......
869 877
    
870 878
    [System.Diagnostics.DebuggerStepThroughAttribute()]
871 879
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
880
    public partial class GetCompareRectsTargetSizeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
881
        
882
        private object[] results;
883
        
884
        public GetCompareRectsTargetSizeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
885
                base(exception, cancelled, userState) {
886
            this.results = results;
887
        }
888
        
889
        public System.Collections.Generic.List<System.Windows.Rect> Result {
890
            get {
891
                base.RaiseExceptionIfNecessary();
892
                return ((System.Collections.Generic.List<System.Windows.Rect>)(this.results[0]));
893
            }
894
        }
895
    }
896
    
897
    [System.Diagnostics.DebuggerStepThroughAttribute()]
898
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
872 899
    public partial class GetCompareRectCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
873 900
        
874 901
        private object[] results;
......
2288 2315
        
2289 2316
        private System.Threading.SendOrPostCallback onDelFavoriteVPCompletedDelegate;
2290 2317
        
2318
        private BeginOperationDelegate onBeginGetCompareRectsTargetSizeDelegate;
2319
        
2320
        private EndOperationDelegate onEndGetCompareRectsTargetSizeDelegate;
2321
        
2322
        private System.Threading.SendOrPostCallback onGetCompareRectsTargetSizeCompletedDelegate;
2323
        
2291 2324
        private BeginOperationDelegate onBeginGetCompareRectDelegate;
2292 2325
        
2293 2326
        private EndOperationDelegate onEndGetCompareRectDelegate;
......
2755 2788
        
2756 2789
        public event System.EventHandler<DelFavoriteVPCompletedEventArgs> DelFavoriteVPCompleted;
2757 2790
        
2791
        public event System.EventHandler<GetCompareRectsTargetSizeCompletedEventArgs> GetCompareRectsTargetSizeCompleted;
2792
        
2758 2793
        public event System.EventHandler<GetCompareRectCompletedEventArgs> GetCompareRectCompleted;
2759 2794
        
2760 2795
        public event System.EventHandler<GetComparefixSizeCompletedEventArgs> GetComparefixSizeCompleted;
......
3169 3204
                        docID}, this.onEndDelFavoriteVPDelegate, this.onDelFavoriteVPCompletedDelegate, userState);
3170 3205
        }
3171 3206
        
3207
        public System.Collections.Generic.List<System.Windows.Rect> GetCompareRectsTargetSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, bool IsResultTargatSize, string isInternalAddress) {
3208
            return base.Channel.GetCompareRectsTargetSize(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, IsResultTargatSize, isInternalAddress);
3209
        }
3210
        
3211
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3212
        public System.IAsyncResult BeginGetCompareRectsTargetSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, bool IsResultTargatSize, string isInternalAddress, System.AsyncCallback callback, object asyncState) {
3213
            return base.Channel.BeginGetCompareRectsTargetSize(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, IsResultTargatSize, isInternalAddress, callback, asyncState);
3214
        }
3215
        
3216
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3217
        public System.Collections.Generic.List<System.Windows.Rect> EndGetCompareRectsTargetSize(System.IAsyncResult result) {
3218
            return base.Channel.EndGetCompareRectsTargetSize(result);
3219
        }
3220
        
3221
        private System.IAsyncResult OnBeginGetCompareRectsTargetSize(object[] inValues, System.AsyncCallback callback, object asyncState) {
3222
            string projectNo = ((string)(inValues[0]));
3223
            string originDocItem_ID = ((string)(inValues[1]));
3224
            string targetDocItem_ID = ((string)(inValues[2]));
3225
            string originPageNo = ((string)(inValues[3]));
3226
            string targetPageNo = ((string)(inValues[4]));
3227
            bool IsResultTargatSize = ((bool)(inValues[5]));
3228
            string isInternalAddress = ((string)(inValues[6]));
3229
            return this.BeginGetCompareRectsTargetSize(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, IsResultTargatSize, isInternalAddress, callback, asyncState);
3230
        }
3231
        
3232
        private object[] OnEndGetCompareRectsTargetSize(System.IAsyncResult result) {
3233
            System.Collections.Generic.List<System.Windows.Rect> retVal = this.EndGetCompareRectsTargetSize(result);
3234
            return new object[] {
3235
                    retVal};
3236
        }
3237
        
3238
        private void OnGetCompareRectsTargetSizeCompleted(object state) {
3239
            if ((this.GetCompareRectsTargetSizeCompleted != null)) {
3240
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3241
                this.GetCompareRectsTargetSizeCompleted(this, new GetCompareRectsTargetSizeCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3242
            }
3243
        }
3244
        
3245
        public void GetCompareRectsTargetSizeAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, bool IsResultTargatSize, string isInternalAddress) {
3246
            this.GetCompareRectsTargetSizeAsync(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, IsResultTargatSize, isInternalAddress, null);
3247
        }
3248
        
3249
        public void GetCompareRectsTargetSizeAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, bool IsResultTargatSize, string isInternalAddress, object userState) {
3250
            if ((this.onBeginGetCompareRectsTargetSizeDelegate == null)) {
3251
                this.onBeginGetCompareRectsTargetSizeDelegate = new BeginOperationDelegate(this.OnBeginGetCompareRectsTargetSize);
3252
            }
3253
            if ((this.onEndGetCompareRectsTargetSizeDelegate == null)) {
3254
                this.onEndGetCompareRectsTargetSizeDelegate = new EndOperationDelegate(this.OnEndGetCompareRectsTargetSize);
3255
            }
3256
            if ((this.onGetCompareRectsTargetSizeCompletedDelegate == null)) {
3257
                this.onGetCompareRectsTargetSizeCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCompareRectsTargetSizeCompleted);
3258
            }
3259
            base.InvokeAsync(this.onBeginGetCompareRectsTargetSizeDelegate, new object[] {
3260
                        projectNo,
3261
                        originDocItem_ID,
3262
                        targetDocItem_ID,
3263
                        originPageNo,
3264
                        targetPageNo,
3265
                        IsResultTargatSize,
3266
                        isInternalAddress}, this.onEndGetCompareRectsTargetSizeDelegate, this.onGetCompareRectsTargetSizeCompletedDelegate, userState);
3267
        }
3268
        
3172 3269
        public System.Collections.Generic.List<System.Windows.Rect> GetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress) {
3173 3270
            return base.Channel.GetCompareRect(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress);
3174 3271
        }

내보내기 Unified diff

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