프로젝트

일반

사용자정보

개정판 90e7968d

ID90e7968da9d5053a78b4cb08170ebddef4a62fad
상위 6c8c6f91
하위 beb36e17, 9322ec12

이지연이(가) 5년 이상 전에 추가함

issue #000: daelim source compare 중

Change-Id: I010a1b75dae4b786e1c2a51a34c923eafd384667

차이점 보기:

KCOM/Connected Services/ServiceDeepView/Reference.cs
601 601
        
602 602
        KCOMDataModel.DataModel.DOCUMENT_ITEM EndGetDocumentItemInfo(System.IAsyncResult result);
603 603
        
604
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupInfoItemsColorChange", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsColorChangeResponse")]
605
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItemsColorChange(string ProjectNo, string DocInfoId, string Value, string USER_ID);
606
        
607
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupInfoItemsColorChange", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsColorChangeResponse")]
608
        System.IAsyncResult BeginGetMarkupInfoItemsColorChange(string ProjectNo, string DocInfoId, string Value, string USER_ID, System.AsyncCallback callback, object asyncState);
609
        
610
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetMarkupInfoItemsColorChange(System.IAsyncResult result);
611
        
612 604
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsResponse")]
613 605
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId);
614 606
        
......
1220 1212
    
1221 1213
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1222 1214
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1223
    public partial class GetMarkupInfoItemsColorChangeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1224
        
1225
        private object[] results;
1226
        
1227
        public GetMarkupInfoItemsColorChangeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1228
                base(exception, cancelled, userState) {
1229
            this.results = results;
1230
        }
1231
        
1232
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> Result {
1233
            get {
1234
                base.RaiseExceptionIfNecessary();
1235
                return ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(this.results[0]));
1236
            }
1237
        }
1238
    }
1239
    
1240
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1241
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1242 1215
    public partial class GetMarkupInfoItemsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1243 1216
        
1244 1217
        private object[] results;
......
2206 2179
        
2207 2180
        private System.Threading.SendOrPostCallback onGetDocumentItemInfoCompletedDelegate;
2208 2181
        
2209
        private BeginOperationDelegate onBeginGetMarkupInfoItemsColorChangeDelegate;
2210
        
2211
        private EndOperationDelegate onEndGetMarkupInfoItemsColorChangeDelegate;
2212
        
2213
        private System.Threading.SendOrPostCallback onGetMarkupInfoItemsColorChangeCompletedDelegate;
2214
        
2215 2182
        private BeginOperationDelegate onBeginGetMarkupInfoItemsDelegate;
2216 2183
        
2217 2184
        private EndOperationDelegate onEndGetMarkupInfoItemsDelegate;
......
2537 2504
        
2538 2505
        public event System.EventHandler<GetDocumentItemInfoCompletedEventArgs> GetDocumentItemInfoCompleted;
2539 2506
        
2540
        public event System.EventHandler<GetMarkupInfoItemsColorChangeCompletedEventArgs> GetMarkupInfoItemsColorChangeCompleted;
2541
        
2542 2507
        public event System.EventHandler<GetMarkupInfoItemsCompletedEventArgs> GetMarkupInfoItemsCompleted;
2543 2508
        
2544 2509
        public event System.EventHandler<GetSyncMarkupInfoItemsCompletedEventArgs> GetSyncMarkupInfoItemsCompleted;
......
3271 3236
                        param}, this.onEndGetDocumentItemInfoDelegate, this.onGetDocumentItemInfoCompletedDelegate, userState);
3272 3237
        }
3273 3238
        
3274
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItemsColorChange(string ProjectNo, string DocInfoId, string Value, string USER_ID) {
3275
            return base.Channel.GetMarkupInfoItemsColorChange(ProjectNo, DocInfoId, Value, USER_ID);
3276
        }
3277
        
3278
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3279
        public System.IAsyncResult BeginGetMarkupInfoItemsColorChange(string ProjectNo, string DocInfoId, string Value, string USER_ID, System.AsyncCallback callback, object asyncState) {
3280
            return base.Channel.BeginGetMarkupInfoItemsColorChange(ProjectNo, DocInfoId, Value, USER_ID, callback, asyncState);
3281
        }
3282
        
3283
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3284
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetMarkupInfoItemsColorChange(System.IAsyncResult result) {
3285
            return base.Channel.EndGetMarkupInfoItemsColorChange(result);
3286
        }
3287
        
3288
        private System.IAsyncResult OnBeginGetMarkupInfoItemsColorChange(object[] inValues, System.AsyncCallback callback, object asyncState) {
3289
            string ProjectNo = ((string)(inValues[0]));
3290
            string DocInfoId = ((string)(inValues[1]));
3291
            string Value = ((string)(inValues[2]));
3292
            string USER_ID = ((string)(inValues[3]));
3293
            return this.BeginGetMarkupInfoItemsColorChange(ProjectNo, DocInfoId, Value, USER_ID, callback, asyncState);
3294
        }
3295
        
3296
        private object[] OnEndGetMarkupInfoItemsColorChange(System.IAsyncResult result) {
3297
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> retVal = this.EndGetMarkupInfoItemsColorChange(result);
3298
            return new object[] {
3299
                    retVal};
3300
        }
3301
        
3302
        private void OnGetMarkupInfoItemsColorChangeCompleted(object state) {
3303
            if ((this.GetMarkupInfoItemsColorChangeCompleted != null)) {
3304
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3305
                this.GetMarkupInfoItemsColorChangeCompleted(this, new GetMarkupInfoItemsColorChangeCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3306
            }
3307
        }
3308
        
3309
        public void GetMarkupInfoItemsColorChangeAsync(string ProjectNo, string DocInfoId, string Value, string USER_ID) {
3310
            this.GetMarkupInfoItemsColorChangeAsync(ProjectNo, DocInfoId, Value, USER_ID, null);
3311
        }
3312
        
3313
        public void GetMarkupInfoItemsColorChangeAsync(string ProjectNo, string DocInfoId, string Value, string USER_ID, object userState) {
3314
            if ((this.onBeginGetMarkupInfoItemsColorChangeDelegate == null)) {
3315
                this.onBeginGetMarkupInfoItemsColorChangeDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupInfoItemsColorChange);
3316
            }
3317
            if ((this.onEndGetMarkupInfoItemsColorChangeDelegate == null)) {
3318
                this.onEndGetMarkupInfoItemsColorChangeDelegate = new EndOperationDelegate(this.OnEndGetMarkupInfoItemsColorChange);
3319
            }
3320
            if ((this.onGetMarkupInfoItemsColorChangeCompletedDelegate == null)) {
3321
                this.onGetMarkupInfoItemsColorChangeCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupInfoItemsColorChangeCompleted);
3322
            }
3323
            base.InvokeAsync(this.onBeginGetMarkupInfoItemsColorChangeDelegate, new object[] {
3324
                        ProjectNo,
3325
                        DocInfoId,
3326
                        Value,
3327
                        USER_ID}, this.onEndGetMarkupInfoItemsColorChangeDelegate, this.onGetMarkupInfoItemsColorChangeCompletedDelegate, userState);
3328
        }
3329
        
3330 3239
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId) {
3331 3240
            return base.Channel.GetMarkupInfoItems(ProjectNo, DocInfoId);
3332 3241
        }

내보내기 Unified diff

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