프로젝트

일반

사용자정보

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

markus / KCOM / Connected Services / ServiceDeepView / Reference.cs @ 6c781c0c

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

1
//------------------------------------------------------------------------------
2
// <auto-generated>
3
//     이 코드는 도구를 사용하여 생성되었습니다.
4
//     런타임 버전:4.0.30319.42000
5
//
6
//     파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
7
//     이러한 변경 내용이 손실됩니다.
8
// </auto-generated>
9
//------------------------------------------------------------------------------
10

    
11
namespace KCOM.ServiceDeepView {
12
    using System.Runtime.Serialization;
13
    using System;
14
    
15
    
16
    [System.Diagnostics.DebuggerStepThroughAttribute()]
17
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
18
    [System.Runtime.Serialization.DataContractAttribute(Name="StructuralObject", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses", IsReference=true)]
19
    [System.SerializableAttribute()]
20
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityObject))]
21
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCINFO))]
22
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCPAGE))]
23
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO))]
24
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO_VERSION))]
25
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA))]
26
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))]
27
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))]
28
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))]
29
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))]
30
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
31
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))]
32
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
33
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))]
34
    public partial class StructuralObject : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
35
        
36
        [System.NonSerializedAttribute()]
37
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
38
        
39
        [global::System.ComponentModel.BrowsableAttribute(false)]
40
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
41
            get {
42
                return this.extensionDataField;
43
            }
44
            set {
45
                this.extensionDataField = value;
46
            }
47
        }
48
        
49
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
50
        
51
        protected void RaisePropertyChanged(string propertyName) {
52
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
53
            if ((propertyChanged != null)) {
54
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
55
            }
56
        }
57
    }
58
    
59
    [System.Diagnostics.DebuggerStepThroughAttribute()]
60
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
61
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityObject", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses", IsReference=true)]
62
    [System.SerializableAttribute()]
63
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCINFO))]
64
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCPAGE))]
65
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO))]
66
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO_VERSION))]
67
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA))]
68
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))]
69
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))]
70
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))]
71
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))]
72
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
73
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))]
74
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
75
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))]
76
    public partial class EntityObject : KCOM.ServiceDeepView.StructuralObject {
77
        
78
        [System.Runtime.Serialization.OptionalFieldAttribute()]
79
        private KCOM.ServiceDeepView.EntityKey EntityKeyField;
80
        
81
        [System.Runtime.Serialization.DataMemberAttribute()]
82
        public KCOM.ServiceDeepView.EntityKey EntityKey {
83
            get {
84
                return this.EntityKeyField;
85
            }
86
            set {
87
                if ((object.ReferenceEquals(this.EntityKeyField, value) != true)) {
88
                    this.EntityKeyField = value;
89
                    this.RaisePropertyChanged("EntityKey");
90
                }
91
            }
92
        }
93
    }
94
    
95
    [System.Diagnostics.DebuggerStepThroughAttribute()]
96
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
97
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityKey", Namespace="http://schemas.datacontract.org/2004/07/System.Data", IsReference=true)]
98
    [System.SerializableAttribute()]
99
    public partial class EntityKey : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
100
        
101
        [System.NonSerializedAttribute()]
102
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
103
        
104
        [System.Runtime.Serialization.OptionalFieldAttribute()]
105
        private string EntityContainerNameField;
106
        
107
        [System.Runtime.Serialization.OptionalFieldAttribute()]
108
        private System.Collections.Generic.List<KCOM.ServiceDeepView.EntityKeyMember> EntityKeyValuesField;
109
        
110
        [System.Runtime.Serialization.OptionalFieldAttribute()]
111
        private string EntitySetNameField;
112
        
113
        [global::System.ComponentModel.BrowsableAttribute(false)]
114
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
115
            get {
116
                return this.extensionDataField;
117
            }
118
            set {
119
                this.extensionDataField = value;
120
            }
121
        }
122
        
123
        [System.Runtime.Serialization.DataMemberAttribute()]
124
        public string EntityContainerName {
125
            get {
126
                return this.EntityContainerNameField;
127
            }
128
            set {
129
                if ((object.ReferenceEquals(this.EntityContainerNameField, value) != true)) {
130
                    this.EntityContainerNameField = value;
131
                    this.RaisePropertyChanged("EntityContainerName");
132
                }
133
            }
134
        }
135
        
136
        [System.Runtime.Serialization.DataMemberAttribute()]
137
        public System.Collections.Generic.List<KCOM.ServiceDeepView.EntityKeyMember> EntityKeyValues {
138
            get {
139
                return this.EntityKeyValuesField;
140
            }
141
            set {
142
                if ((object.ReferenceEquals(this.EntityKeyValuesField, value) != true)) {
143
                    this.EntityKeyValuesField = value;
144
                    this.RaisePropertyChanged("EntityKeyValues");
145
                }
146
            }
147
        }
148
        
149
        [System.Runtime.Serialization.DataMemberAttribute()]
150
        public string EntitySetName {
151
            get {
152
                return this.EntitySetNameField;
153
            }
154
            set {
155
                if ((object.ReferenceEquals(this.EntitySetNameField, value) != true)) {
156
                    this.EntitySetNameField = value;
157
                    this.RaisePropertyChanged("EntitySetName");
158
                }
159
            }
160
        }
161
        
162
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
163
        
164
        protected void RaisePropertyChanged(string propertyName) {
165
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
166
            if ((propertyChanged != null)) {
167
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
168
            }
169
        }
170
    }
171
    
172
    [System.Diagnostics.DebuggerStepThroughAttribute()]
173
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
174
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityKeyMember", Namespace="http://schemas.datacontract.org/2004/07/System.Data")]
175
    [System.SerializableAttribute()]
176
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.FinalPDFResult))]
177
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.FinalStatus))]
178
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityObject))]
179
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.StructuralObject))]
180
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfDOCINFOitJtO6kG))]
181
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReference))]
182
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.RelatedEnd))]
183
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG))]
184
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFOitJtO6kG))]
185
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMEMBERitJtO6kG))]
186
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.KCOM_SystemInfo))]
187
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.KCOM_BasicParam))]
188
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<IKCOM.VPRevision>))]
189
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.VPRevision))]
190
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<IKCOM.MarkupInfoItem>))]
191
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.MarkupInfoItem))]
192
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<IKCOM.MarkupItem>))]
193
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.MarkupItem))]
194
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(IKCOM.FAVORITE_FLAG))]
195
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityKey))]
196
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOM.ServiceDeepView.EntityKeyMember>))]
197
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<System.Windows.Rect>))]
198
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Windows.Rect))]
199
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<string>))]
200
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC>))]
201
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.FAVORITE_DOC))]
202
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCINFO))]
203
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE>))]
204
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCPAGE))]
205
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_INFO>))]
206
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO))]
207
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_INFO_VERSION>))]
208
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_INFO_VERSION))]
209
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>))]
210
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MARKUP_DATA))]
211
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.DOCUMENT_ITEM))]
212
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.MEMBER))]
213
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SIGN_INFO>))]
214
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SIGN_INFO))]
215
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER>))]
216
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PRIVATE))]
217
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST_HISTORY))]
218
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.CHECK_LIST))]
219
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST>))]
220
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY>))]
221
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE>))]
222
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC>))]
223
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOMDataModel.DataModel.SYMBOL_PUBLIC))]
224
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM>))]
225
    public partial class EntityKeyMember : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
226
        
227
        [System.NonSerializedAttribute()]
228
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
229
        
230
        [System.Runtime.Serialization.OptionalFieldAttribute()]
231
        private string KeyField;
232
        
233
        [System.Runtime.Serialization.OptionalFieldAttribute()]
234
        private object ValueField;
235
        
236
        [global::System.ComponentModel.BrowsableAttribute(false)]
237
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
238
            get {
239
                return this.extensionDataField;
240
            }
241
            set {
242
                this.extensionDataField = value;
243
            }
244
        }
245
        
246
        [System.Runtime.Serialization.DataMemberAttribute()]
247
        public string Key {
248
            get {
249
                return this.KeyField;
250
            }
251
            set {
252
                if ((object.ReferenceEquals(this.KeyField, value) != true)) {
253
                    this.KeyField = value;
254
                    this.RaisePropertyChanged("Key");
255
                }
256
            }
257
        }
258
        
259
        [System.Runtime.Serialization.DataMemberAttribute()]
260
        public object Value {
261
            get {
262
                return this.ValueField;
263
            }
264
            set {
265
                if ((object.ReferenceEquals(this.ValueField, value) != true)) {
266
                    this.ValueField = value;
267
                    this.RaisePropertyChanged("Value");
268
                }
269
            }
270
        }
271
        
272
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
273
        
274
        protected void RaisePropertyChanged(string propertyName) {
275
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
276
            if ((propertyChanged != null)) {
277
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
278
            }
279
        }
280
    }
281
    
282
    [System.Diagnostics.DebuggerStepThroughAttribute()]
283
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
284
    [System.Runtime.Serialization.DataContractAttribute(Name="FinalPDFResult", Namespace="http://schemas.datacontract.org/2004/07/IFinalPDF")]
285
    [System.SerializableAttribute()]
286
    public partial struct FinalPDFResult : System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
287
        
288
        [System.NonSerializedAttribute()]
289
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
290
        
291
        private int CurrentPageField;
292
        
293
        private string ExceptionField;
294
        
295
        private string FinalIDField;
296
        
297
        private string ProjectNoField;
298
        
299
        private KCOM.ServiceDeepView.FinalStatus StatusField;
300
        
301
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
302
            get {
303
                return this.extensionDataField;
304
            }
305
            set {
306
                this.extensionDataField = value;
307
            }
308
        }
309
        
310
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
311
        public int CurrentPage {
312
            get {
313
                return this.CurrentPageField;
314
            }
315
            set {
316
                if ((this.CurrentPageField.Equals(value) != true)) {
317
                    this.CurrentPageField = value;
318
                    this.RaisePropertyChanged("CurrentPage");
319
                }
320
            }
321
        }
322
        
323
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
324
        public string Exception {
325
            get {
326
                return this.ExceptionField;
327
            }
328
            set {
329
                if ((object.ReferenceEquals(this.ExceptionField, value) != true)) {
330
                    this.ExceptionField = value;
331
                    this.RaisePropertyChanged("Exception");
332
                }
333
            }
334
        }
335
        
336
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
337
        public string FinalID {
338
            get {
339
                return this.FinalIDField;
340
            }
341
            set {
342
                if ((object.ReferenceEquals(this.FinalIDField, value) != true)) {
343
                    this.FinalIDField = value;
344
                    this.RaisePropertyChanged("FinalID");
345
                }
346
            }
347
        }
348
        
349
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
350
        public string ProjectNo {
351
            get {
352
                return this.ProjectNoField;
353
            }
354
            set {
355
                if ((object.ReferenceEquals(this.ProjectNoField, value) != true)) {
356
                    this.ProjectNoField = value;
357
                    this.RaisePropertyChanged("ProjectNo");
358
                }
359
            }
360
        }
361
        
362
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
363
        public KCOM.ServiceDeepView.FinalStatus Status {
364
            get {
365
                return this.StatusField;
366
            }
367
            set {
368
                if ((this.StatusField.Equals(value) != true)) {
369
                    this.StatusField = value;
370
                    this.RaisePropertyChanged("Status");
371
                }
372
            }
373
        }
374
        
375
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
376
        
377
        void RaisePropertyChanged(string propertyName) {
378
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
379
            if ((propertyChanged != null)) {
380
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
381
            }
382
        }
383
    }
384
    
385
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
386
    [System.Runtime.Serialization.DataContractAttribute(Name="FinalStatus", Namespace="http://schemas.datacontract.org/2004/07/IFinalPDF")]
387
    public enum FinalStatus : int {
388
        
389
        [System.Runtime.Serialization.EnumMemberAttribute()]
390
        Insert = 0,
391
        
392
        [System.Runtime.Serialization.EnumMemberAttribute()]
393
        Wait = 1,
394
        
395
        [System.Runtime.Serialization.EnumMemberAttribute()]
396
        Create = 2,
397
        
398
        [System.Runtime.Serialization.EnumMemberAttribute()]
399
        PdfStamp = 3,
400
        
401
        [System.Runtime.Serialization.EnumMemberAttribute()]
402
        Success = 4,
403
        
404
        [System.Runtime.Serialization.EnumMemberAttribute()]
405
        Error = 5,
406
    }
407
    
408
    [System.Diagnostics.DebuggerStepThroughAttribute()]
409
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
410
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfDOCINFOitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")]
411
    [System.SerializableAttribute()]
412
    public partial class EntityReferenceOfDOCINFOitJtO6kG : KCOM.ServiceDeepView.EntityReference {
413
    }
414
    
415
    [System.Diagnostics.DebuggerStepThroughAttribute()]
416
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
417
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityReference", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")]
418
    [System.SerializableAttribute()]
419
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG))]
420
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFOitJtO6kG))]
421
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMEMBERitJtO6kG))]
422
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfDOCINFOitJtO6kG))]
423
    public partial class EntityReference : KCOM.ServiceDeepView.RelatedEnd {
424
        
425
        [System.Runtime.Serialization.OptionalFieldAttribute()]
426
        private KCOM.ServiceDeepView.EntityKey EntityKeyField;
427
        
428
        [System.Runtime.Serialization.DataMemberAttribute()]
429
        public KCOM.ServiceDeepView.EntityKey EntityKey {
430
            get {
431
                return this.EntityKeyField;
432
            }
433
            set {
434
                if ((object.ReferenceEquals(this.EntityKeyField, value) != true)) {
435
                    this.EntityKeyField = value;
436
                    this.RaisePropertyChanged("EntityKey");
437
                }
438
            }
439
        }
440
    }
441
    
442
    [System.Diagnostics.DebuggerStepThroughAttribute()]
443
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
444
    [System.Runtime.Serialization.DataContractAttribute(Name="RelatedEnd", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")]
445
    [System.SerializableAttribute()]
446
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReference))]
447
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG))]
448
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMARKUP_INFOitJtO6kG))]
449
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfMEMBERitJtO6kG))]
450
    [System.Runtime.Serialization.KnownTypeAttribute(typeof(KCOM.ServiceDeepView.EntityReferenceOfDOCINFOitJtO6kG))]
451
    public partial class RelatedEnd : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
452
        
453
        [System.NonSerializedAttribute()]
454
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
455
        
456
        [global::System.ComponentModel.BrowsableAttribute(false)]
457
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
458
            get {
459
                return this.extensionDataField;
460
            }
461
            set {
462
                this.extensionDataField = value;
463
            }
464
        }
465
        
466
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
467
        
468
        protected void RaisePropertyChanged(string propertyName) {
469
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
470
            if ((propertyChanged != null)) {
471
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
472
            }
473
        }
474
    }
475
    
476
    [System.Diagnostics.DebuggerStepThroughAttribute()]
477
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
478
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")]
479
    [System.SerializableAttribute()]
480
    public partial class EntityReferenceOfMARKUP_INFO_VERSIONitJtO6kG : KCOM.ServiceDeepView.EntityReference {
481
    }
482
    
483
    [System.Diagnostics.DebuggerStepThroughAttribute()]
484
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
485
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfMARKUP_INFOitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")]
486
    [System.SerializableAttribute()]
487
    public partial class EntityReferenceOfMARKUP_INFOitJtO6kG : KCOM.ServiceDeepView.EntityReference {
488
    }
489
    
490
    [System.Diagnostics.DebuggerStepThroughAttribute()]
491
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
492
    [System.Runtime.Serialization.DataContractAttribute(Name="EntityReferenceOfMEMBERitJtO6kG", Namespace="http://schemas.datacontract.org/2004/07/System.Data.Objects.DataClasses")]
493
    [System.SerializableAttribute()]
494
    public partial class EntityReferenceOfMEMBERitJtO6kG : KCOM.ServiceDeepView.EntityReference {
495
    }
496
    
497
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
498
    [System.ServiceModel.ServiceContractAttribute(Namespace="", ConfigurationName="ServiceDeepView.ServiceDeepView")]
499
    public interface ServiceDeepView {
500
        
501
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSystemData", ReplyAction="urn:ServiceDeepView/GetSystemDataResponse")]
502
        IKCOM.KCOM_SystemInfo GetSystemData();
503
        
504
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSystemData", ReplyAction="urn:ServiceDeepView/GetSystemDataResponse")]
505
        System.IAsyncResult BeginGetSystemData(System.AsyncCallback callback, object asyncState);
506
        
507
        IKCOM.KCOM_SystemInfo EndGetSystemData(System.IAsyncResult result);
508
        
509
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetFavoriteVP", ReplyAction="urn:ServiceDeepView/GetFavoriteVPResponse")]
510
        System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> GetFavoriteVP(string PrjNo, string userID, string sharepointItemID);
511
        
512
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetFavoriteVP", ReplyAction="urn:ServiceDeepView/GetFavoriteVPResponse")]
513
        System.IAsyncResult BeginGetFavoriteVP(string PrjNo, string userID, string sharepointItemID, System.AsyncCallback callback, object asyncState);
514
        
515
        System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> EndGetFavoriteVP(System.IAsyncResult result);
516
        
517
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/EditFavoriteVP", ReplyAction="urn:ServiceDeepView/EditFavoriteVPResponse")]
518
        bool EditFavoriteVP(string prjNo, string userID, string docID, int state, string description);
519
        
520
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/EditFavoriteVP", ReplyAction="urn:ServiceDeepView/EditFavoriteVPResponse")]
521
        System.IAsyncResult BeginEditFavoriteVP(string prjNo, string userID, string docID, int state, string description, System.AsyncCallback callback, object asyncState);
522
        
523
        bool EndEditFavoriteVP(System.IAsyncResult result);
524
        
525
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/DelFavoriteVP", ReplyAction="urn:ServiceDeepView/DelFavoriteVPResponse")]
526
        bool DelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID);
527
        
528
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/DelFavoriteVP", ReplyAction="urn:ServiceDeepView/DelFavoriteVPResponse")]
529
        System.IAsyncResult BeginDelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID, System.AsyncCallback callback, object asyncState);
530
        
531
        bool EndDelFavoriteVP(System.IAsyncResult result);
532
        
533
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCompareRect", ReplyAction="urn:ServiceDeepView/GetCompareRectResponse")]
534
        System.Collections.Generic.List<System.Windows.Rect> GetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress);
535
        
536
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCompareRect", ReplyAction="urn:ServiceDeepView/GetCompareRectResponse")]
537
        System.IAsyncResult BeginGetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress, System.AsyncCallback callback, object asyncState);
538
        
539
        System.Collections.Generic.List<System.Windows.Rect> EndGetCompareRect(System.IAsyncResult result);
540
        
541
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetFinalPDF", ReplyAction="urn:ServiceDeepView/SetFinalPDFResponse")]
542
        KCOM.ServiceDeepView.FinalPDFResult SetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID);
543
        
544
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SetFinalPDF", ReplyAction="urn:ServiceDeepView/SetFinalPDFResponse")]
545
        System.IAsyncResult BeginSetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState);
546
        
547
        KCOM.ServiceDeepView.FinalPDFResult EndSetFinalPDF(System.IAsyncResult result);
548
        
549
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetConversionState", ReplyAction="urn:ServiceDeepView/GetConversionStateResponse")]
550
        bool GetConversionState(IKCOM.KCOM_BasicParam param);
551
        
552
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetConversionState", ReplyAction="urn:ServiceDeepView/GetConversionStateResponse")]
553
        System.IAsyncResult BeginGetConversionState(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState);
554
        
555
        bool EndGetConversionState(System.IAsyncResult result);
556
        
557
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetVPRevisionHistory", ReplyAction="urn:ServiceDeepView/GetVPRevisionHistoryResponse")]
558
        System.Collections.Generic.List<IKCOM.VPRevision> GetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId);
559
        
560
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetVPRevisionHistory", ReplyAction="urn:ServiceDeepView/GetVPRevisionHistoryResponse")]
561
        System.IAsyncResult BeginGetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId, System.AsyncCallback callback, object asyncState);
562
        
563
        System.Collections.Generic.List<IKCOM.VPRevision> EndGetVPRevisionHistory(System.IAsyncResult result);
564
        
565
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetVPRevisionFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetVPRevisionFirstOrDefaultResponse")]
566
        IKCOM.VPRevision GetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId);
567
        
568
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetVPRevisionFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetVPRevisionFirstOrDefaultResponse")]
569
        System.IAsyncResult BeginGetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId, System.AsyncCallback callback, object asyncState);
570
        
571
        IKCOM.VPRevision EndGetVPRevisionFirstOrDefault(System.IAsyncResult result);
572
        
573
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocInfo", ReplyAction="urn:ServiceDeepView/GetDocInfoResponse")]
574
        KCOMDataModel.DataModel.DOCINFO GetDocInfo(IKCOM.KCOM_BasicParam param);
575
        
576
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocInfo", ReplyAction="urn:ServiceDeepView/GetDocInfoResponse")]
577
        System.IAsyncResult BeginGetDocInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState);
578
        
579
        KCOMDataModel.DataModel.DOCINFO EndGetDocInfo(System.IAsyncResult result);
580
        
581
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckSystemAdmin", ReplyAction="urn:ServiceDeepView/GetCheckSystemAdminResponse")]
582
        bool GetCheckSystemAdmin(string UserID);
583
        
584
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckSystemAdmin", ReplyAction="urn:ServiceDeepView/GetCheckSystemAdminResponse")]
585
        System.IAsyncResult BeginGetCheckSystemAdmin(string UserID, System.AsyncCallback callback, object asyncState);
586
        
587
        bool EndGetCheckSystemAdmin(System.IAsyncResult result);
588
        
589
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocumentItemInfo", ReplyAction="urn:ServiceDeepView/GetDocumentItemInfoResponse")]
590
        KCOMDataModel.DataModel.DOCUMENT_ITEM GetDocumentItemInfo(IKCOM.KCOM_BasicParam param);
591
        
592
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocumentItemInfo", ReplyAction="urn:ServiceDeepView/GetDocumentItemInfoResponse")]
593
        System.IAsyncResult BeginGetDocumentItemInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState);
594
        
595
        KCOMDataModel.DataModel.DOCUMENT_ITEM EndGetDocumentItemInfo(System.IAsyncResult result);
596
        
597
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsResponse")]
598
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId);
599
        
600
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsResponse")]
601
        System.IAsyncResult BeginGetMarkupInfoItems(string ProjectNo, string DocInfoId, System.AsyncCallback callback, object asyncState);
602
        
603
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetMarkupInfoItems(System.IAsyncResult result);
604
        
605
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSyncMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetSyncMarkupInfoItemsResponse")]
606
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser);
607
        
608
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSyncMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetSyncMarkupInfoItemsResponse")]
609
        System.IAsyncResult BeginGetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser, System.AsyncCallback callback, object asyncState);
610
        
611
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetSyncMarkupInfoItems(System.IAsyncResult result);
612
        
613
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetUserData", ReplyAction="urn:ServiceDeepView/GetUserDataResponse")]
614
        System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> GetUserData(string ProjectNo, string UserID);
615
        
616
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetUserData", ReplyAction="urn:ServiceDeepView/GetUserDataResponse")]
617
        System.IAsyncResult BeginGetUserData(string ProjectNo, string UserID, System.AsyncCallback callback, object asyncState);
618
        
619
        System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> EndGetUserData(System.IAsyncResult result);
620
        
621
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDeptData", ReplyAction="urn:ServiceDeepView/GetDeptDataResponse")]
622
        System.Collections.Generic.List<string> GetDeptData(string UserDept);
623
        
624
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDeptData", ReplyAction="urn:ServiceDeepView/GetDeptDataResponse")]
625
        System.IAsyncResult BeginGetDeptData(string UserDept, System.AsyncCallback callback, object asyncState);
626
        
627
        System.Collections.Generic.List<string> EndGetDeptData(System.IAsyncResult result);
628
        
629
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/DeleteMarkup", ReplyAction="urn:ServiceDeepView/DeleteMarkupResponse")]
630
        bool DeleteMarkup(string ProjectNo, string MarkupInfoID);
631
        
632
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/DeleteMarkup", ReplyAction="urn:ServiceDeepView/DeleteMarkupResponse")]
633
        System.IAsyncResult BeginDeleteMarkup(string ProjectNo, string MarkupInfoID, System.AsyncCallback callback, object asyncState);
634
        
635
        bool EndDeleteMarkup(System.IAsyncResult result);
636
        
637
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetFavoriteVP", ReplyAction="urn:ServiceDeepView/SetFavoriteVPResponse")]
638
        bool SetFavoriteVP(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag);
639
        
640
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SetFavoriteVP", ReplyAction="urn:ServiceDeepView/SetFavoriteVPResponse")]
641
        System.IAsyncResult BeginSetFavoriteVP(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag, System.AsyncCallback callback, object asyncState);
642
        
643
        bool EndSetFavoriteVP(System.IAsyncResult result);
644
        
645
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveMarkupData", ReplyAction="urn:ServiceDeepView/SaveMarkupDataResponse")]
646
        bool SaveMarkupData(IKCOM.MarkupInfoItem UserState, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data);
647
        
648
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveMarkupData", ReplyAction="urn:ServiceDeepView/SaveMarkupDataResponse")]
649
        System.IAsyncResult BeginSaveMarkupData(IKCOM.MarkupInfoItem UserState, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data, System.AsyncCallback callback, object asyncState);
650
        
651
        bool EndSaveMarkupData(System.IAsyncResult result);
652
        
653
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveSymbol", ReplyAction="urn:ServiceDeepView/SaveSymbolResponse")]
654
        bool SaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private);
655
        
656
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveSymbol", ReplyAction="urn:ServiceDeepView/SaveSymbolResponse")]
657
        System.IAsyncResult BeginSaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private, System.AsyncCallback callback, object asyncState);
658
        
659
        bool EndSaveSymbol(System.IAsyncResult result);
660
        
661
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/DeleteSymbol", ReplyAction="urn:ServiceDeepView/DeleteSymbolResponse")]
662
        bool DeleteSymbol(string symbol_id);
663
        
664
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/DeleteSymbol", ReplyAction="urn:ServiceDeepView/DeleteSymbolResponse")]
665
        System.IAsyncResult BeginDeleteSymbol(string symbol_id, System.AsyncCallback callback, object asyncState);
666
        
667
        bool EndDeleteSymbol(System.IAsyncResult result);
668
        
669
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/RenameSymbol", ReplyAction="urn:ServiceDeepView/RenameSymbolResponse")]
670
        bool RenameSymbol(string symbol_id, string name);
671
        
672
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/RenameSymbol", ReplyAction="urn:ServiceDeepView/RenameSymbolResponse")]
673
        System.IAsyncResult BeginRenameSymbol(string symbol_id, string name, System.AsyncCallback callback, object asyncState);
674
        
675
        bool EndRenameSymbol(System.IAsyncResult result);
676
        
677
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddCheckListHistory", ReplyAction="urn:ServiceDeepView/AddCheckListHistoryResponse")]
678
        bool AddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History);
679
        
680
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddCheckListHistory", ReplyAction="urn:ServiceDeepView/AddCheckListHistoryResponse")]
681
        System.IAsyncResult BeginAddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState);
682
        
683
        bool EndAddCheckListHistory(System.IAsyncResult result);
684
        
685
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveCheckListHistory", ReplyAction="urn:ServiceDeepView/SaveCheckListHistoryResponse")]
686
        bool SaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History);
687
        
688
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveCheckListHistory", ReplyAction="urn:ServiceDeepView/SaveCheckListHistoryResponse")]
689
        System.IAsyncResult BeginSaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState);
690
        
691
        bool EndSaveCheckListHistory(System.IAsyncResult result);
692
        
693
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveCheckList", ReplyAction="urn:ServiceDeepView/SaveCheckListResponse")]
694
        bool SaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value);
695
        
696
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveCheckList", ReplyAction="urn:ServiceDeepView/SaveCheckListResponse")]
697
        System.IAsyncResult BeginSaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState);
698
        
699
        bool EndSaveCheckList(System.IAsyncResult result);
700
        
701
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddCheckList", ReplyAction="urn:ServiceDeepView/AddCheckListResponse")]
702
        bool AddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value);
703
        
704
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddCheckList", ReplyAction="urn:ServiceDeepView/AddCheckListResponse")]
705
        System.IAsyncResult BeginAddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState);
706
        
707
        bool EndAddCheckList(System.IAsyncResult result);
708
        
709
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckList", ReplyAction="urn:ServiceDeepView/GetCheckListResponse")]
710
        KCOMDataModel.DataModel.CHECK_LIST GetCheckList(string project_no, string _id);
711
        
712
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckList", ReplyAction="urn:ServiceDeepView/GetCheckListResponse")]
713
        System.IAsyncResult BeginGetCheckList(string project_no, string _id, System.AsyncCallback callback, object asyncState);
714
        
715
        KCOMDataModel.DataModel.CHECK_LIST EndGetCheckList(System.IAsyncResult result);
716
        
717
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetUserCheckList", ReplyAction="urn:ServiceDeepView/GetUserCheckListResponse")]
718
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> GetUserCheckList(string project_no, string user_id, string doc_no);
719
        
720
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetUserCheckList", ReplyAction="urn:ServiceDeepView/GetUserCheckListResponse")]
721
        System.IAsyncResult BeginGetUserCheckList(string project_no, string user_id, string doc_no, System.AsyncCallback callback, object asyncState);
722
        
723
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> EndGetUserCheckList(System.IAsyncResult result);
724
        
725
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckListHistory", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryResponse")]
726
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> GetCheckListHistory(string project_no, string _id);
727
        
728
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckListHistory", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryResponse")]
729
        System.IAsyncResult BeginGetCheckListHistory(string project_no, string _id, System.AsyncCallback callback, object asyncState);
730
        
731
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> EndGetCheckListHistory(System.IAsyncResult result);
732
        
733
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefaultResponse")]
734
        KCOMDataModel.DataModel.CHECK_LIST_HISTORY GetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev);
735
        
736
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefaultResponse")]
737
        System.IAsyncResult BeginGetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev, System.AsyncCallback callback, object asyncState);
738
        
739
        KCOMDataModel.DataModel.CHECK_LIST_HISTORY EndGetCheckListHistoryFirstOrDefault(System.IAsyncResult result);
740
        
741
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SavePageAngle", ReplyAction="urn:ServiceDeepView/SavePageAngleResponse")]
742
        bool SavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage);
743
        
744
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SavePageAngle", ReplyAction="urn:ServiceDeepView/SavePageAngleResponse")]
745
        System.IAsyncResult BeginSavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage, System.AsyncCallback callback, object asyncState);
746
        
747
        bool EndSavePageAngle(System.IAsyncResult result);
748
        
749
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupInfo", ReplyAction="urn:ServiceDeepView/GetMarkupInfoResponse")]
750
        KCOMDataModel.DataModel.MARKUP_INFO GetMarkupInfo(string project_no, string _id);
751
        
752
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupInfo", ReplyAction="urn:ServiceDeepView/GetMarkupInfoResponse")]
753
        System.IAsyncResult BeginGetMarkupInfo(string project_no, string _id, System.AsyncCallback callback, object asyncState);
754
        
755
        KCOMDataModel.DataModel.MARKUP_INFO EndGetMarkupInfo(System.IAsyncResult result);
756
        
757
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupDataListperPage", ReplyAction="urn:ServiceDeepView/GetMarkupDataListperPageResponse")]
758
        System.Collections.Generic.List<string> GetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo);
759
        
760
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupDataListperPage", ReplyAction="urn:ServiceDeepView/GetMarkupDataListperPageResponse")]
761
        System.IAsyncResult BeginGetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo, System.AsyncCallback callback, object asyncState);
762
        
763
        System.Collections.Generic.List<string> EndGetMarkupDataListperPage(System.IAsyncResult result);
764
        
765
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMarkupInfo", ReplyAction="urn:ServiceDeepView/AddMarkupInfoResponse")]
766
        bool AddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value);
767
        
768
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMarkupInfo", ReplyAction="urn:ServiceDeepView/AddMarkupInfoResponse")]
769
        System.IAsyncResult BeginAddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState);
770
        
771
        bool EndAddMarkupInfo(System.IAsyncResult result);
772
        
773
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMarkupInfoVersion", ReplyAction="urn:ServiceDeepView/AddMarkupInfoVersionResponse")]
774
        bool AddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value);
775
        
776
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMarkupInfoVersion", ReplyAction="urn:ServiceDeepView/AddMarkupInfoVersionResponse")]
777
        System.IAsyncResult BeginAddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value, System.AsyncCallback callback, object asyncState);
778
        
779
        bool EndAddMarkupInfoVersion(System.IAsyncResult result);
780
        
781
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMarkupData", ReplyAction="urn:ServiceDeepView/AddMarkupDataResponse")]
782
        bool AddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value);
783
        
784
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMarkupData", ReplyAction="urn:ServiceDeepView/AddMarkupDataResponse")]
785
        System.IAsyncResult BeginAddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value, System.AsyncCallback callback, object asyncState);
786
        
787
        bool EndAddMarkupData(System.IAsyncResult result);
788
        
789
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AvoidMarkupInfo", ReplyAction="urn:ServiceDeepView/AvoidMarkupInfoResponse")]
790
        bool AvoidMarkupInfo(string project_no, string _doc_id);
791
        
792
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AvoidMarkupInfo", ReplyAction="urn:ServiceDeepView/AvoidMarkupInfoResponse")]
793
        System.IAsyncResult BeginAvoidMarkupInfo(string project_no, string _doc_id, System.AsyncCallback callback, object asyncState);
794
        
795
        bool EndAvoidMarkupInfo(System.IAsyncResult result);
796
        
797
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveMarkupInfo", ReplyAction="urn:ServiceDeepView/SaveMarkupInfoResponse")]
798
        bool SaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value);
799
        
800
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveMarkupInfo", ReplyAction="urn:ServiceDeepView/SaveMarkupInfoResponse")]
801
        System.IAsyncResult BeginSaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState);
802
        
803
        bool EndSaveMarkupInfo(System.IAsyncResult result);
804
        
805
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupDataList", ReplyAction="urn:ServiceDeepView/GetMarkupDataListResponse")]
806
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> GetMarkupDataList(string project_no, string _versionid);
807
        
808
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupDataList", ReplyAction="urn:ServiceDeepView/GetMarkupDataListResponse")]
809
        System.IAsyncResult BeginGetMarkupDataList(string project_no, string _versionid, System.AsyncCallback callback, object asyncState);
810
        
811
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndGetMarkupDataList(System.IAsyncResult result);
812
        
813
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/Consolidate", ReplyAction="urn:ServiceDeepView/ConsolidateResponse")]
814
        bool Consolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems);
815
        
816
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/Consolidate", ReplyAction="urn:ServiceDeepView/ConsolidateResponse")]
817
        System.IAsyncResult BeginConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, System.AsyncCallback callback, object asyncState);
818
        
819
        bool EndConsolidate(System.IAsyncResult result);
820
        
821
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMember", ReplyAction="urn:ServiceDeepView/GetMemberResponse")]
822
        KCOMDataModel.DataModel.MEMBER GetMember(string project_no, string user_id);
823
        
824
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMember", ReplyAction="urn:ServiceDeepView/GetMemberResponse")]
825
        System.IAsyncResult BeginGetMember(string project_no, string user_id, System.AsyncCallback callback, object asyncState);
826
        
827
        KCOMDataModel.DataModel.MEMBER EndGetMember(System.IAsyncResult result);
828
        
829
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSymbolList", ReplyAction="urn:ServiceDeepView/GetSymbolListResponse")]
830
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> GetSymbolList(string user_id);
831
        
832
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSymbolList", ReplyAction="urn:ServiceDeepView/GetSymbolListResponse")]
833
        System.IAsyncResult BeginGetSymbolList(string user_id, System.AsyncCallback callback, object asyncState);
834
        
835
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> EndGetSymbolList(System.IAsyncResult result);
836
        
837
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPublicSymbolDeptList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolDeptListResponse")]
838
        System.Collections.Generic.List<string> GetPublicSymbolDeptList();
839
        
840
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPublicSymbolDeptList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolDeptListResponse")]
841
        System.IAsyncResult BeginGetPublicSymbolDeptList(System.AsyncCallback callback, object asyncState);
842
        
843
        System.Collections.Generic.List<string> EndGetPublicSymbolDeptList(System.IAsyncResult result);
844
        
845
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPublicSymbolList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolListResponse")]
846
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> GetPublicSymbolList(string dept);
847
        
848
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPublicSymbolList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolListResponse")]
849
        System.IAsyncResult BeginGetPublicSymbolList(string dept, System.AsyncCallback callback, object asyncState);
850
        
851
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> EndGetPublicSymbolList(System.IAsyncResult result);
852
        
853
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSymbolData", ReplyAction="urn:ServiceDeepView/GetSymbolDataResponse")]
854
        string GetSymbolData(string id, int type);
855
        
856
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSymbolData", ReplyAction="urn:ServiceDeepView/GetSymbolDataResponse")]
857
        System.IAsyncResult BeginGetSymbolData(string id, int type, System.AsyncCallback callback, object asyncState);
858
        
859
        string EndGetSymbolData(System.IAsyncResult result);
860
        
861
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSignData", ReplyAction="urn:ServiceDeepView/GetSignDataResponse")]
862
        string GetSignData(string project_no, string user_id);
863
        
864
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSignData", ReplyAction="urn:ServiceDeepView/GetSignDataResponse")]
865
        System.IAsyncResult BeginGetSignData(string project_no, string user_id, System.AsyncCallback callback, object asyncState);
866
        
867
        string EndGetSignData(System.IAsyncResult result);
868
        
869
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetProjectName", ReplyAction="urn:ServiceDeepView/GetProjectNameResponse")]
870
        string GetProjectName(string project_no);
871
        
872
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetProjectName", ReplyAction="urn:ServiceDeepView/GetProjectNameResponse")]
873
        System.IAsyncResult BeginGetProjectName(string project_no, System.AsyncCallback callback, object asyncState);
874
        
875
        string EndGetProjectName(System.IAsyncResult result);
876
        
877
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPreRevSelect", ReplyAction="urn:ServiceDeepView/GetPreRevSelectResponse")]
878
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> GetPreRevSelect(string project_no, string doc_no, string current_rev);
879
        
880
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPreRevSelect", ReplyAction="urn:ServiceDeepView/GetPreRevSelectResponse")]
881
        System.IAsyncResult BeginGetPreRevSelect(string project_no, string doc_no, string current_rev, System.AsyncCallback callback, object asyncState);
882
        
883
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> EndGetPreRevSelect(System.IAsyncResult result);
884
        
885
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocInfoOneSelect", ReplyAction="urn:ServiceDeepView/GetDocInfoOneSelectResponse")]
886
        KCOMDataModel.DataModel.DOCINFO GetDocInfoOneSelect(string project_no, string doc_id);
887
        
888
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocInfoOneSelect", ReplyAction="urn:ServiceDeepView/GetDocInfoOneSelectResponse")]
889
        System.IAsyncResult BeginGetDocInfoOneSelect(string project_no, string doc_id, System.AsyncCallback callback, object asyncState);
890
        
891
        KCOMDataModel.DataModel.DOCINFO EndGetDocInfoOneSelect(System.IAsyncResult result);
892
        
893
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPrintDocItemList", ReplyAction="urn:ServiceDeepView/GetPrintDocItemListResponse")]
894
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList);
895
        
896
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPrintDocItemList", ReplyAction="urn:ServiceDeepView/GetPrintDocItemListResponse")]
897
        System.IAsyncResult BeginGetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList, System.AsyncCallback callback, object asyncState);
898
        
899
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetPrintDocItemList(System.IAsyncResult result);
900
    }
901
    
902
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
903
    public interface ServiceDeepViewChannel : KCOM.ServiceDeepView.ServiceDeepView, System.ServiceModel.IClientChannel {
904
    }
905
    
906
    [System.Diagnostics.DebuggerStepThroughAttribute()]
907
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
908
    public partial class GetSystemDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
909
        
910
        private object[] results;
911
        
912
        public GetSystemDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
913
                base(exception, cancelled, userState) {
914
            this.results = results;
915
        }
916
        
917
        public IKCOM.KCOM_SystemInfo Result {
918
            get {
919
                base.RaiseExceptionIfNecessary();
920
                return ((IKCOM.KCOM_SystemInfo)(this.results[0]));
921
            }
922
        }
923
    }
924
    
925
    [System.Diagnostics.DebuggerStepThroughAttribute()]
926
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
927
    public partial class GetFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
928
        
929
        private object[] results;
930
        
931
        public GetFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
932
                base(exception, cancelled, userState) {
933
            this.results = results;
934
        }
935
        
936
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> Result {
937
            get {
938
                base.RaiseExceptionIfNecessary();
939
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC>)(this.results[0]));
940
            }
941
        }
942
    }
943
    
944
    [System.Diagnostics.DebuggerStepThroughAttribute()]
945
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
946
    public partial class EditFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
947
        
948
        private object[] results;
949
        
950
        public EditFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
951
                base(exception, cancelled, userState) {
952
            this.results = results;
953
        }
954
        
955
        public bool Result {
956
            get {
957
                base.RaiseExceptionIfNecessary();
958
                return ((bool)(this.results[0]));
959
            }
960
        }
961
    }
962
    
963
    [System.Diagnostics.DebuggerStepThroughAttribute()]
964
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
965
    public partial class DelFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
966
        
967
        private object[] results;
968
        
969
        public DelFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
970
                base(exception, cancelled, userState) {
971
            this.results = results;
972
        }
973
        
974
        public bool Result {
975
            get {
976
                base.RaiseExceptionIfNecessary();
977
                return ((bool)(this.results[0]));
978
            }
979
        }
980
    }
981
    
982
    [System.Diagnostics.DebuggerStepThroughAttribute()]
983
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
984
    public partial class GetCompareRectCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
985
        
986
        private object[] results;
987
        
988
        public GetCompareRectCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
989
                base(exception, cancelled, userState) {
990
            this.results = results;
991
        }
992
        
993
        public System.Collections.Generic.List<System.Windows.Rect> Result {
994
            get {
995
                base.RaiseExceptionIfNecessary();
996
                return ((System.Collections.Generic.List<System.Windows.Rect>)(this.results[0]));
997
            }
998
        }
999
    }
1000
    
1001
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1002
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1003
    public partial class SetFinalPDFCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1004
        
1005
        private object[] results;
1006
        
1007
        public SetFinalPDFCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1008
                base(exception, cancelled, userState) {
1009
            this.results = results;
1010
        }
1011
        
1012
        public KCOM.ServiceDeepView.FinalPDFResult Result {
1013
            get {
1014
                base.RaiseExceptionIfNecessary();
1015
                return ((KCOM.ServiceDeepView.FinalPDFResult)(this.results[0]));
1016
            }
1017
        }
1018
    }
1019
    
1020
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1021
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1022
    public partial class GetConversionStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1023
        
1024
        private object[] results;
1025
        
1026
        public GetConversionStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1027
                base(exception, cancelled, userState) {
1028
            this.results = results;
1029
        }
1030
        
1031
        public bool Result {
1032
            get {
1033
                base.RaiseExceptionIfNecessary();
1034
                return ((bool)(this.results[0]));
1035
            }
1036
        }
1037
    }
1038
    
1039
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1040
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1041
    public partial class GetVPRevisionHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1042
        
1043
        private object[] results;
1044
        
1045
        public GetVPRevisionHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1046
                base(exception, cancelled, userState) {
1047
            this.results = results;
1048
        }
1049
        
1050
        public System.Collections.Generic.List<IKCOM.VPRevision> Result {
1051
            get {
1052
                base.RaiseExceptionIfNecessary();
1053
                return ((System.Collections.Generic.List<IKCOM.VPRevision>)(this.results[0]));
1054
            }
1055
        }
1056
    }
1057
    
1058
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1059
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1060
    public partial class GetVPRevisionFirstOrDefaultCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1061
        
1062
        private object[] results;
1063
        
1064
        public GetVPRevisionFirstOrDefaultCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1065
                base(exception, cancelled, userState) {
1066
            this.results = results;
1067
        }
1068
        
1069
        public IKCOM.VPRevision Result {
1070
            get {
1071
                base.RaiseExceptionIfNecessary();
1072
                return ((IKCOM.VPRevision)(this.results[0]));
1073
            }
1074
        }
1075
    }
1076
    
1077
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1078
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1079
    public partial class GetDocInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1080
        
1081
        private object[] results;
1082
        
1083
        public GetDocInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1084
                base(exception, cancelled, userState) {
1085
            this.results = results;
1086
        }
1087
        
1088
        public KCOMDataModel.DataModel.DOCINFO Result {
1089
            get {
1090
                base.RaiseExceptionIfNecessary();
1091
                return ((KCOMDataModel.DataModel.DOCINFO)(this.results[0]));
1092
            }
1093
        }
1094
    }
1095
    
1096
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1097
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1098
    public partial class GetCheckSystemAdminCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1099
        
1100
        private object[] results;
1101
        
1102
        public GetCheckSystemAdminCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1103
                base(exception, cancelled, userState) {
1104
            this.results = results;
1105
        }
1106
        
1107
        public bool Result {
1108
            get {
1109
                base.RaiseExceptionIfNecessary();
1110
                return ((bool)(this.results[0]));
1111
            }
1112
        }
1113
    }
1114
    
1115
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1116
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1117
    public partial class GetDocumentItemInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1118
        
1119
        private object[] results;
1120
        
1121
        public GetDocumentItemInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1122
                base(exception, cancelled, userState) {
1123
            this.results = results;
1124
        }
1125
        
1126
        public KCOMDataModel.DataModel.DOCUMENT_ITEM Result {
1127
            get {
1128
                base.RaiseExceptionIfNecessary();
1129
                return ((KCOMDataModel.DataModel.DOCUMENT_ITEM)(this.results[0]));
1130
            }
1131
        }
1132
    }
1133
    
1134
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1135
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1136
    public partial class GetMarkupInfoItemsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1137
        
1138
        private object[] results;
1139
        
1140
        public GetMarkupInfoItemsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1141
                base(exception, cancelled, userState) {
1142
            this.results = results;
1143
        }
1144
        
1145
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> Result {
1146
            get {
1147
                base.RaiseExceptionIfNecessary();
1148
                return ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(this.results[0]));
1149
            }
1150
        }
1151
    }
1152
    
1153
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1154
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1155
    public partial class GetSyncMarkupInfoItemsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1156
        
1157
        private object[] results;
1158
        
1159
        public GetSyncMarkupInfoItemsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1160
                base(exception, cancelled, userState) {
1161
            this.results = results;
1162
        }
1163
        
1164
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> Result {
1165
            get {
1166
                base.RaiseExceptionIfNecessary();
1167
                return ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(this.results[0]));
1168
            }
1169
        }
1170
    }
1171
    
1172
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1173
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1174
    public partial class GetUserDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1175
        
1176
        private object[] results;
1177
        
1178
        public GetUserDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1179
                base(exception, cancelled, userState) {
1180
            this.results = results;
1181
        }
1182
        
1183
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> Result {
1184
            get {
1185
                base.RaiseExceptionIfNecessary();
1186
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER>)(this.results[0]));
1187
            }
1188
        }
1189
    }
1190
    
1191
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1192
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1193
    public partial class GetDeptDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1194
        
1195
        private object[] results;
1196
        
1197
        public GetDeptDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1198
                base(exception, cancelled, userState) {
1199
            this.results = results;
1200
        }
1201
        
1202
        public System.Collections.Generic.List<string> Result {
1203
            get {
1204
                base.RaiseExceptionIfNecessary();
1205
                return ((System.Collections.Generic.List<string>)(this.results[0]));
1206
            }
1207
        }
1208
    }
1209
    
1210
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1211
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1212
    public partial class DeleteMarkupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1213
        
1214
        private object[] results;
1215
        
1216
        public DeleteMarkupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1217
                base(exception, cancelled, userState) {
1218
            this.results = results;
1219
        }
1220
        
1221
        public bool Result {
1222
            get {
1223
                base.RaiseExceptionIfNecessary();
1224
                return ((bool)(this.results[0]));
1225
            }
1226
        }
1227
    }
1228
    
1229
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1230
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1231
    public partial class SetFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1232
        
1233
        private object[] results;
1234
        
1235
        public SetFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1236
                base(exception, cancelled, userState) {
1237
            this.results = results;
1238
        }
1239
        
1240
        public bool Result {
1241
            get {
1242
                base.RaiseExceptionIfNecessary();
1243
                return ((bool)(this.results[0]));
1244
            }
1245
        }
1246
    }
1247
    
1248
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1249
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1250
    public partial class SaveMarkupDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1251
        
1252
        private object[] results;
1253
        
1254
        public SaveMarkupDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1255
                base(exception, cancelled, userState) {
1256
            this.results = results;
1257
        }
1258
        
1259
        public bool Result {
1260
            get {
1261
                base.RaiseExceptionIfNecessary();
1262
                return ((bool)(this.results[0]));
1263
            }
1264
        }
1265
    }
1266
    
1267
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1268
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1269
    public partial class SaveSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1270
        
1271
        private object[] results;
1272
        
1273
        public SaveSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1274
                base(exception, cancelled, userState) {
1275
            this.results = results;
1276
        }
1277
        
1278
        public bool Result {
1279
            get {
1280
                base.RaiseExceptionIfNecessary();
1281
                return ((bool)(this.results[0]));
1282
            }
1283
        }
1284
    }
1285
    
1286
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1287
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1288
    public partial class DeleteSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1289
        
1290
        private object[] results;
1291
        
1292
        public DeleteSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1293
                base(exception, cancelled, userState) {
1294
            this.results = results;
1295
        }
1296
        
1297
        public bool Result {
1298
            get {
1299
                base.RaiseExceptionIfNecessary();
1300
                return ((bool)(this.results[0]));
1301
            }
1302
        }
1303
    }
1304
    
1305
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1306
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1307
    public partial class RenameSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1308
        
1309
        private object[] results;
1310
        
1311
        public RenameSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1312
                base(exception, cancelled, userState) {
1313
            this.results = results;
1314
        }
1315
        
1316
        public bool Result {
1317
            get {
1318
                base.RaiseExceptionIfNecessary();
1319
                return ((bool)(this.results[0]));
1320
            }
1321
        }
1322
    }
1323
    
1324
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1325
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1326
    public partial class AddCheckListHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1327
        
1328
        private object[] results;
1329
        
1330
        public AddCheckListHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1331
                base(exception, cancelled, userState) {
1332
            this.results = results;
1333
        }
1334
        
1335
        public bool Result {
1336
            get {
1337
                base.RaiseExceptionIfNecessary();
1338
                return ((bool)(this.results[0]));
1339
            }
1340
        }
1341
    }
1342
    
1343
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1344
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1345
    public partial class SaveCheckListHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1346
        
1347
        private object[] results;
1348
        
1349
        public SaveCheckListHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1350
                base(exception, cancelled, userState) {
1351
            this.results = results;
1352
        }
1353
        
1354
        public bool Result {
1355
            get {
1356
                base.RaiseExceptionIfNecessary();
1357
                return ((bool)(this.results[0]));
1358
            }
1359
        }
1360
    }
1361
    
1362
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1363
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1364
    public partial class SaveCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1365
        
1366
        private object[] results;
1367
        
1368
        public SaveCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1369
                base(exception, cancelled, userState) {
1370
            this.results = results;
1371
        }
1372
        
1373
        public bool Result {
1374
            get {
1375
                base.RaiseExceptionIfNecessary();
1376
                return ((bool)(this.results[0]));
1377
            }
1378
        }
1379
    }
1380
    
1381
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1382
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1383
    public partial class AddCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1384
        
1385
        private object[] results;
1386
        
1387
        public AddCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1388
                base(exception, cancelled, userState) {
1389
            this.results = results;
1390
        }
1391
        
1392
        public bool Result {
1393
            get {
1394
                base.RaiseExceptionIfNecessary();
1395
                return ((bool)(this.results[0]));
1396
            }
1397
        }
1398
    }
1399
    
1400
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1401
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1402
    public partial class GetCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1403
        
1404
        private object[] results;
1405
        
1406
        public GetCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1407
                base(exception, cancelled, userState) {
1408
            this.results = results;
1409
        }
1410
        
1411
        public KCOMDataModel.DataModel.CHECK_LIST Result {
1412
            get {
1413
                base.RaiseExceptionIfNecessary();
1414
                return ((KCOMDataModel.DataModel.CHECK_LIST)(this.results[0]));
1415
            }
1416
        }
1417
    }
1418
    
1419
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1420
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1421
    public partial class GetUserCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1422
        
1423
        private object[] results;
1424
        
1425
        public GetUserCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1426
                base(exception, cancelled, userState) {
1427
            this.results = results;
1428
        }
1429
        
1430
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> Result {
1431
            get {
1432
                base.RaiseExceptionIfNecessary();
1433
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST>)(this.results[0]));
1434
            }
1435
        }
1436
    }
1437
    
1438
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1439
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1440
    public partial class GetCheckListHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1441
        
1442
        private object[] results;
1443
        
1444
        public GetCheckListHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1445
                base(exception, cancelled, userState) {
1446
            this.results = results;
1447
        }
1448
        
1449
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> Result {
1450
            get {
1451
                base.RaiseExceptionIfNecessary();
1452
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY>)(this.results[0]));
1453
            }
1454
        }
1455
    }
1456
    
1457
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1458
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1459
    public partial class GetCheckListHistoryFirstOrDefaultCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1460
        
1461
        private object[] results;
1462
        
1463
        public GetCheckListHistoryFirstOrDefaultCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1464
                base(exception, cancelled, userState) {
1465
            this.results = results;
1466
        }
1467
        
1468
        public KCOMDataModel.DataModel.CHECK_LIST_HISTORY Result {
1469
            get {
1470
                base.RaiseExceptionIfNecessary();
1471
                return ((KCOMDataModel.DataModel.CHECK_LIST_HISTORY)(this.results[0]));
1472
            }
1473
        }
1474
    }
1475
    
1476
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1477
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1478
    public partial class SavePageAngleCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1479
        
1480
        private object[] results;
1481
        
1482
        public SavePageAngleCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1483
                base(exception, cancelled, userState) {
1484
            this.results = results;
1485
        }
1486
        
1487
        public bool Result {
1488
            get {
1489
                base.RaiseExceptionIfNecessary();
1490
                return ((bool)(this.results[0]));
1491
            }
1492
        }
1493
    }
1494
    
1495
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1496
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1497
    public partial class GetMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1498
        
1499
        private object[] results;
1500
        
1501
        public GetMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1502
                base(exception, cancelled, userState) {
1503
            this.results = results;
1504
        }
1505
        
1506
        public KCOMDataModel.DataModel.MARKUP_INFO Result {
1507
            get {
1508
                base.RaiseExceptionIfNecessary();
1509
                return ((KCOMDataModel.DataModel.MARKUP_INFO)(this.results[0]));
1510
            }
1511
        }
1512
    }
1513
    
1514
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1515
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1516
    public partial class GetMarkupDataListperPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1517
        
1518
        private object[] results;
1519
        
1520
        public GetMarkupDataListperPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1521
                base(exception, cancelled, userState) {
1522
            this.results = results;
1523
        }
1524
        
1525
        public System.Collections.Generic.List<string> Result {
1526
            get {
1527
                base.RaiseExceptionIfNecessary();
1528
                return ((System.Collections.Generic.List<string>)(this.results[0]));
1529
            }
1530
        }
1531
    }
1532
    
1533
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1534
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1535
    public partial class AddMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1536
        
1537
        private object[] results;
1538
        
1539
        public AddMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1540
                base(exception, cancelled, userState) {
1541
            this.results = results;
1542
        }
1543
        
1544
        public bool Result {
1545
            get {
1546
                base.RaiseExceptionIfNecessary();
1547
                return ((bool)(this.results[0]));
1548
            }
1549
        }
1550
    }
1551
    
1552
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1553
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1554
    public partial class AddMarkupInfoVersionCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1555
        
1556
        private object[] results;
1557
        
1558
        public AddMarkupInfoVersionCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1559
                base(exception, cancelled, userState) {
1560
            this.results = results;
1561
        }
1562
        
1563
        public bool Result {
1564
            get {
1565
                base.RaiseExceptionIfNecessary();
1566
                return ((bool)(this.results[0]));
1567
            }
1568
        }
1569
    }
1570
    
1571
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1572
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1573
    public partial class AddMarkupDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1574
        
1575
        private object[] results;
1576
        
1577
        public AddMarkupDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1578
                base(exception, cancelled, userState) {
1579
            this.results = results;
1580
        }
1581
        
1582
        public bool Result {
1583
            get {
1584
                base.RaiseExceptionIfNecessary();
1585
                return ((bool)(this.results[0]));
1586
            }
1587
        }
1588
    }
1589
    
1590
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1591
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1592
    public partial class AvoidMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1593
        
1594
        private object[] results;
1595
        
1596
        public AvoidMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1597
                base(exception, cancelled, userState) {
1598
            this.results = results;
1599
        }
1600
        
1601
        public bool Result {
1602
            get {
1603
                base.RaiseExceptionIfNecessary();
1604
                return ((bool)(this.results[0]));
1605
            }
1606
        }
1607
    }
1608
    
1609
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1610
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1611
    public partial class SaveMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1612
        
1613
        private object[] results;
1614
        
1615
        public SaveMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1616
                base(exception, cancelled, userState) {
1617
            this.results = results;
1618
        }
1619
        
1620
        public bool Result {
1621
            get {
1622
                base.RaiseExceptionIfNecessary();
1623
                return ((bool)(this.results[0]));
1624
            }
1625
        }
1626
    }
1627
    
1628
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1629
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1630
    public partial class GetMarkupDataListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1631
        
1632
        private object[] results;
1633
        
1634
        public GetMarkupDataListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1635
                base(exception, cancelled, userState) {
1636
            this.results = results;
1637
        }
1638
        
1639
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> Result {
1640
            get {
1641
                base.RaiseExceptionIfNecessary();
1642
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>)(this.results[0]));
1643
            }
1644
        }
1645
    }
1646
    
1647
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1648
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1649
    public partial class ConsolidateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1650
        
1651
        private object[] results;
1652
        
1653
        public ConsolidateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1654
                base(exception, cancelled, userState) {
1655
            this.results = results;
1656
        }
1657
        
1658
        public bool Result {
1659
            get {
1660
                base.RaiseExceptionIfNecessary();
1661
                return ((bool)(this.results[0]));
1662
            }
1663
        }
1664
    }
1665
    
1666
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1667
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1668
    public partial class GetMemberCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1669
        
1670
        private object[] results;
1671
        
1672
        public GetMemberCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1673
                base(exception, cancelled, userState) {
1674
            this.results = results;
1675
        }
1676
        
1677
        public KCOMDataModel.DataModel.MEMBER Result {
1678
            get {
1679
                base.RaiseExceptionIfNecessary();
1680
                return ((KCOMDataModel.DataModel.MEMBER)(this.results[0]));
1681
            }
1682
        }
1683
    }
1684
    
1685
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1686
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1687
    public partial class GetSymbolListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1688
        
1689
        private object[] results;
1690
        
1691
        public GetSymbolListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1692
                base(exception, cancelled, userState) {
1693
            this.results = results;
1694
        }
1695
        
1696
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> Result {
1697
            get {
1698
                base.RaiseExceptionIfNecessary();
1699
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE>)(this.results[0]));
1700
            }
1701
        }
1702
    }
1703
    
1704
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1705
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1706
    public partial class GetPublicSymbolDeptListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1707
        
1708
        private object[] results;
1709
        
1710
        public GetPublicSymbolDeptListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1711
                base(exception, cancelled, userState) {
1712
            this.results = results;
1713
        }
1714
        
1715
        public System.Collections.Generic.List<string> Result {
1716
            get {
1717
                base.RaiseExceptionIfNecessary();
1718
                return ((System.Collections.Generic.List<string>)(this.results[0]));
1719
            }
1720
        }
1721
    }
1722
    
1723
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1724
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1725
    public partial class GetPublicSymbolListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1726
        
1727
        private object[] results;
1728
        
1729
        public GetPublicSymbolListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1730
                base(exception, cancelled, userState) {
1731
            this.results = results;
1732
        }
1733
        
1734
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> Result {
1735
            get {
1736
                base.RaiseExceptionIfNecessary();
1737
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC>)(this.results[0]));
1738
            }
1739
        }
1740
    }
1741
    
1742
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1743
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1744
    public partial class GetSymbolDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1745
        
1746
        private object[] results;
1747
        
1748
        public GetSymbolDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1749
                base(exception, cancelled, userState) {
1750
            this.results = results;
1751
        }
1752
        
1753
        public string Result {
1754
            get {
1755
                base.RaiseExceptionIfNecessary();
1756
                return ((string)(this.results[0]));
1757
            }
1758
        }
1759
    }
1760
    
1761
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1762
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1763
    public partial class GetSignDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1764
        
1765
        private object[] results;
1766
        
1767
        public GetSignDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1768
                base(exception, cancelled, userState) {
1769
            this.results = results;
1770
        }
1771
        
1772
        public string Result {
1773
            get {
1774
                base.RaiseExceptionIfNecessary();
1775
                return ((string)(this.results[0]));
1776
            }
1777
        }
1778
    }
1779
    
1780
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1781
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1782
    public partial class GetProjectNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1783
        
1784
        private object[] results;
1785
        
1786
        public GetProjectNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1787
                base(exception, cancelled, userState) {
1788
            this.results = results;
1789
        }
1790
        
1791
        public string Result {
1792
            get {
1793
                base.RaiseExceptionIfNecessary();
1794
                return ((string)(this.results[0]));
1795
            }
1796
        }
1797
    }
1798
    
1799
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1800
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1801
    public partial class GetPreRevSelectCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1802
        
1803
        private object[] results;
1804
        
1805
        public GetPreRevSelectCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1806
                base(exception, cancelled, userState) {
1807
            this.results = results;
1808
        }
1809
        
1810
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> Result {
1811
            get {
1812
                base.RaiseExceptionIfNecessary();
1813
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM>)(this.results[0]));
1814
            }
1815
        }
1816
    }
1817
    
1818
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1819
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1820
    public partial class GetDocInfoOneSelectCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1821
        
1822
        private object[] results;
1823
        
1824
        public GetDocInfoOneSelectCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1825
                base(exception, cancelled, userState) {
1826
            this.results = results;
1827
        }
1828
        
1829
        public KCOMDataModel.DataModel.DOCINFO Result {
1830
            get {
1831
                base.RaiseExceptionIfNecessary();
1832
                return ((KCOMDataModel.DataModel.DOCINFO)(this.results[0]));
1833
            }
1834
        }
1835
    }
1836
    
1837
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1838
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1839
    public partial class GetPrintDocItemListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1840
        
1841
        private object[] results;
1842
        
1843
        public GetPrintDocItemListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1844
                base(exception, cancelled, userState) {
1845
            this.results = results;
1846
        }
1847
        
1848
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> Result {
1849
            get {
1850
                base.RaiseExceptionIfNecessary();
1851
                return ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(this.results[0]));
1852
            }
1853
        }
1854
    }
1855
    
1856
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1857
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1858
    public partial class ServiceDeepViewClient : System.ServiceModel.ClientBase<KCOM.ServiceDeepView.ServiceDeepView>, KCOM.ServiceDeepView.ServiceDeepView {
1859
        
1860
        private BeginOperationDelegate onBeginGetSystemDataDelegate;
1861
        
1862
        private EndOperationDelegate onEndGetSystemDataDelegate;
1863
        
1864
        private System.Threading.SendOrPostCallback onGetSystemDataCompletedDelegate;
1865
        
1866
        private BeginOperationDelegate onBeginGetFavoriteVPDelegate;
1867
        
1868
        private EndOperationDelegate onEndGetFavoriteVPDelegate;
1869
        
1870
        private System.Threading.SendOrPostCallback onGetFavoriteVPCompletedDelegate;
1871
        
1872
        private BeginOperationDelegate onBeginEditFavoriteVPDelegate;
1873
        
1874
        private EndOperationDelegate onEndEditFavoriteVPDelegate;
1875
        
1876
        private System.Threading.SendOrPostCallback onEditFavoriteVPCompletedDelegate;
1877
        
1878
        private BeginOperationDelegate onBeginDelFavoriteVPDelegate;
1879
        
1880
        private EndOperationDelegate onEndDelFavoriteVPDelegate;
1881
        
1882
        private System.Threading.SendOrPostCallback onDelFavoriteVPCompletedDelegate;
1883
        
1884
        private BeginOperationDelegate onBeginGetCompareRectDelegate;
1885
        
1886
        private EndOperationDelegate onEndGetCompareRectDelegate;
1887
        
1888
        private System.Threading.SendOrPostCallback onGetCompareRectCompletedDelegate;
1889
        
1890
        private BeginOperationDelegate onBeginSetFinalPDFDelegate;
1891
        
1892
        private EndOperationDelegate onEndSetFinalPDFDelegate;
1893
        
1894
        private System.Threading.SendOrPostCallback onSetFinalPDFCompletedDelegate;
1895
        
1896
        private BeginOperationDelegate onBeginGetConversionStateDelegate;
1897
        
1898
        private EndOperationDelegate onEndGetConversionStateDelegate;
1899
        
1900
        private System.Threading.SendOrPostCallback onGetConversionStateCompletedDelegate;
1901
        
1902
        private BeginOperationDelegate onBeginGetVPRevisionHistoryDelegate;
1903
        
1904
        private EndOperationDelegate onEndGetVPRevisionHistoryDelegate;
1905
        
1906
        private System.Threading.SendOrPostCallback onGetVPRevisionHistoryCompletedDelegate;
1907
        
1908
        private BeginOperationDelegate onBeginGetVPRevisionFirstOrDefaultDelegate;
1909
        
1910
        private EndOperationDelegate onEndGetVPRevisionFirstOrDefaultDelegate;
1911
        
1912
        private System.Threading.SendOrPostCallback onGetVPRevisionFirstOrDefaultCompletedDelegate;
1913
        
1914
        private BeginOperationDelegate onBeginGetDocInfoDelegate;
1915
        
1916
        private EndOperationDelegate onEndGetDocInfoDelegate;
1917
        
1918
        private System.Threading.SendOrPostCallback onGetDocInfoCompletedDelegate;
1919
        
1920
        private BeginOperationDelegate onBeginGetCheckSystemAdminDelegate;
1921
        
1922
        private EndOperationDelegate onEndGetCheckSystemAdminDelegate;
1923
        
1924
        private System.Threading.SendOrPostCallback onGetCheckSystemAdminCompletedDelegate;
1925
        
1926
        private BeginOperationDelegate onBeginGetDocumentItemInfoDelegate;
1927
        
1928
        private EndOperationDelegate onEndGetDocumentItemInfoDelegate;
1929
        
1930
        private System.Threading.SendOrPostCallback onGetDocumentItemInfoCompletedDelegate;
1931
        
1932
        private BeginOperationDelegate onBeginGetMarkupInfoItemsDelegate;
1933
        
1934
        private EndOperationDelegate onEndGetMarkupInfoItemsDelegate;
1935
        
1936
        private System.Threading.SendOrPostCallback onGetMarkupInfoItemsCompletedDelegate;
1937
        
1938
        private BeginOperationDelegate onBeginGetSyncMarkupInfoItemsDelegate;
1939
        
1940
        private EndOperationDelegate onEndGetSyncMarkupInfoItemsDelegate;
1941
        
1942
        private System.Threading.SendOrPostCallback onGetSyncMarkupInfoItemsCompletedDelegate;
1943
        
1944
        private BeginOperationDelegate onBeginGetUserDataDelegate;
1945
        
1946
        private EndOperationDelegate onEndGetUserDataDelegate;
1947
        
1948
        private System.Threading.SendOrPostCallback onGetUserDataCompletedDelegate;
1949
        
1950
        private BeginOperationDelegate onBeginGetDeptDataDelegate;
1951
        
1952
        private EndOperationDelegate onEndGetDeptDataDelegate;
1953
        
1954
        private System.Threading.SendOrPostCallback onGetDeptDataCompletedDelegate;
1955
        
1956
        private BeginOperationDelegate onBeginDeleteMarkupDelegate;
1957
        
1958
        private EndOperationDelegate onEndDeleteMarkupDelegate;
1959
        
1960
        private System.Threading.SendOrPostCallback onDeleteMarkupCompletedDelegate;
1961
        
1962
        private BeginOperationDelegate onBeginSetFavoriteVPDelegate;
1963
        
1964
        private EndOperationDelegate onEndSetFavoriteVPDelegate;
1965
        
1966
        private System.Threading.SendOrPostCallback onSetFavoriteVPCompletedDelegate;
1967
        
1968
        private BeginOperationDelegate onBeginSaveMarkupDataDelegate;
1969
        
1970
        private EndOperationDelegate onEndSaveMarkupDataDelegate;
1971
        
1972
        private System.Threading.SendOrPostCallback onSaveMarkupDataCompletedDelegate;
1973
        
1974
        private BeginOperationDelegate onBeginSaveSymbolDelegate;
1975
        
1976
        private EndOperationDelegate onEndSaveSymbolDelegate;
1977
        
1978
        private System.Threading.SendOrPostCallback onSaveSymbolCompletedDelegate;
1979
        
1980
        private BeginOperationDelegate onBeginDeleteSymbolDelegate;
1981
        
1982
        private EndOperationDelegate onEndDeleteSymbolDelegate;
1983
        
1984
        private System.Threading.SendOrPostCallback onDeleteSymbolCompletedDelegate;
1985
        
1986
        private BeginOperationDelegate onBeginRenameSymbolDelegate;
1987
        
1988
        private EndOperationDelegate onEndRenameSymbolDelegate;
1989
        
1990
        private System.Threading.SendOrPostCallback onRenameSymbolCompletedDelegate;
1991
        
1992
        private BeginOperationDelegate onBeginAddCheckListHistoryDelegate;
1993
        
1994
        private EndOperationDelegate onEndAddCheckListHistoryDelegate;
1995
        
1996
        private System.Threading.SendOrPostCallback onAddCheckListHistoryCompletedDelegate;
1997
        
1998
        private BeginOperationDelegate onBeginSaveCheckListHistoryDelegate;
1999
        
2000
        private EndOperationDelegate onEndSaveCheckListHistoryDelegate;
2001
        
2002
        private System.Threading.SendOrPostCallback onSaveCheckListHistoryCompletedDelegate;
2003
        
2004
        private BeginOperationDelegate onBeginSaveCheckListDelegate;
2005
        
2006
        private EndOperationDelegate onEndSaveCheckListDelegate;
2007
        
2008
        private System.Threading.SendOrPostCallback onSaveCheckListCompletedDelegate;
2009
        
2010
        private BeginOperationDelegate onBeginAddCheckListDelegate;
2011
        
2012
        private EndOperationDelegate onEndAddCheckListDelegate;
2013
        
2014
        private System.Threading.SendOrPostCallback onAddCheckListCompletedDelegate;
2015
        
2016
        private BeginOperationDelegate onBeginGetCheckListDelegate;
2017
        
2018
        private EndOperationDelegate onEndGetCheckListDelegate;
2019
        
2020
        private System.Threading.SendOrPostCallback onGetCheckListCompletedDelegate;
2021
        
2022
        private BeginOperationDelegate onBeginGetUserCheckListDelegate;
2023
        
2024
        private EndOperationDelegate onEndGetUserCheckListDelegate;
2025
        
2026
        private System.Threading.SendOrPostCallback onGetUserCheckListCompletedDelegate;
2027
        
2028
        private BeginOperationDelegate onBeginGetCheckListHistoryDelegate;
2029
        
2030
        private EndOperationDelegate onEndGetCheckListHistoryDelegate;
2031
        
2032
        private System.Threading.SendOrPostCallback onGetCheckListHistoryCompletedDelegate;
2033
        
2034
        private BeginOperationDelegate onBeginGetCheckListHistoryFirstOrDefaultDelegate;
2035
        
2036
        private EndOperationDelegate onEndGetCheckListHistoryFirstOrDefaultDelegate;
2037
        
2038
        private System.Threading.SendOrPostCallback onGetCheckListHistoryFirstOrDefaultCompletedDelegate;
2039
        
2040
        private BeginOperationDelegate onBeginSavePageAngleDelegate;
2041
        
2042
        private EndOperationDelegate onEndSavePageAngleDelegate;
2043
        
2044
        private System.Threading.SendOrPostCallback onSavePageAngleCompletedDelegate;
2045
        
2046
        private BeginOperationDelegate onBeginGetMarkupInfoDelegate;
2047
        
2048
        private EndOperationDelegate onEndGetMarkupInfoDelegate;
2049
        
2050
        private System.Threading.SendOrPostCallback onGetMarkupInfoCompletedDelegate;
2051
        
2052
        private BeginOperationDelegate onBeginGetMarkupDataListperPageDelegate;
2053
        
2054
        private EndOperationDelegate onEndGetMarkupDataListperPageDelegate;
2055
        
2056
        private System.Threading.SendOrPostCallback onGetMarkupDataListperPageCompletedDelegate;
2057
        
2058
        private BeginOperationDelegate onBeginAddMarkupInfoDelegate;
2059
        
2060
        private EndOperationDelegate onEndAddMarkupInfoDelegate;
2061
        
2062
        private System.Threading.SendOrPostCallback onAddMarkupInfoCompletedDelegate;
2063
        
2064
        private BeginOperationDelegate onBeginAddMarkupInfoVersionDelegate;
2065
        
2066
        private EndOperationDelegate onEndAddMarkupInfoVersionDelegate;
2067
        
2068
        private System.Threading.SendOrPostCallback onAddMarkupInfoVersionCompletedDelegate;
2069
        
2070
        private BeginOperationDelegate onBeginAddMarkupDataDelegate;
2071
        
2072
        private EndOperationDelegate onEndAddMarkupDataDelegate;
2073
        
2074
        private System.Threading.SendOrPostCallback onAddMarkupDataCompletedDelegate;
2075
        
2076
        private BeginOperationDelegate onBeginAvoidMarkupInfoDelegate;
2077
        
2078
        private EndOperationDelegate onEndAvoidMarkupInfoDelegate;
2079
        
2080
        private System.Threading.SendOrPostCallback onAvoidMarkupInfoCompletedDelegate;
2081
        
2082
        private BeginOperationDelegate onBeginSaveMarkupInfoDelegate;
2083
        
2084
        private EndOperationDelegate onEndSaveMarkupInfoDelegate;
2085
        
2086
        private System.Threading.SendOrPostCallback onSaveMarkupInfoCompletedDelegate;
2087
        
2088
        private BeginOperationDelegate onBeginGetMarkupDataListDelegate;
2089
        
2090
        private EndOperationDelegate onEndGetMarkupDataListDelegate;
2091
        
2092
        private System.Threading.SendOrPostCallback onGetMarkupDataListCompletedDelegate;
2093
        
2094
        private BeginOperationDelegate onBeginConsolidateDelegate;
2095
        
2096
        private EndOperationDelegate onEndConsolidateDelegate;
2097
        
2098
        private System.Threading.SendOrPostCallback onConsolidateCompletedDelegate;
2099
        
2100
        private BeginOperationDelegate onBeginGetMemberDelegate;
2101
        
2102
        private EndOperationDelegate onEndGetMemberDelegate;
2103
        
2104
        private System.Threading.SendOrPostCallback onGetMemberCompletedDelegate;
2105
        
2106
        private BeginOperationDelegate onBeginGetSymbolListDelegate;
2107
        
2108
        private EndOperationDelegate onEndGetSymbolListDelegate;
2109
        
2110
        private System.Threading.SendOrPostCallback onGetSymbolListCompletedDelegate;
2111
        
2112
        private BeginOperationDelegate onBeginGetPublicSymbolDeptListDelegate;
2113
        
2114
        private EndOperationDelegate onEndGetPublicSymbolDeptListDelegate;
2115
        
2116
        private System.Threading.SendOrPostCallback onGetPublicSymbolDeptListCompletedDelegate;
2117
        
2118
        private BeginOperationDelegate onBeginGetPublicSymbolListDelegate;
2119
        
2120
        private EndOperationDelegate onEndGetPublicSymbolListDelegate;
2121
        
2122
        private System.Threading.SendOrPostCallback onGetPublicSymbolListCompletedDelegate;
2123
        
2124
        private BeginOperationDelegate onBeginGetSymbolDataDelegate;
2125
        
2126
        private EndOperationDelegate onEndGetSymbolDataDelegate;
2127
        
2128
        private System.Threading.SendOrPostCallback onGetSymbolDataCompletedDelegate;
2129
        
2130
        private BeginOperationDelegate onBeginGetSignDataDelegate;
2131
        
2132
        private EndOperationDelegate onEndGetSignDataDelegate;
2133
        
2134
        private System.Threading.SendOrPostCallback onGetSignDataCompletedDelegate;
2135
        
2136
        private BeginOperationDelegate onBeginGetProjectNameDelegate;
2137
        
2138
        private EndOperationDelegate onEndGetProjectNameDelegate;
2139
        
2140
        private System.Threading.SendOrPostCallback onGetProjectNameCompletedDelegate;
2141
        
2142
        private BeginOperationDelegate onBeginGetPreRevSelectDelegate;
2143
        
2144
        private EndOperationDelegate onEndGetPreRevSelectDelegate;
2145
        
2146
        private System.Threading.SendOrPostCallback onGetPreRevSelectCompletedDelegate;
2147
        
2148
        private BeginOperationDelegate onBeginGetDocInfoOneSelectDelegate;
2149
        
2150
        private EndOperationDelegate onEndGetDocInfoOneSelectDelegate;
2151
        
2152
        private System.Threading.SendOrPostCallback onGetDocInfoOneSelectCompletedDelegate;
2153
        
2154
        private BeginOperationDelegate onBeginGetPrintDocItemListDelegate;
2155
        
2156
        private EndOperationDelegate onEndGetPrintDocItemListDelegate;
2157
        
2158
        private System.Threading.SendOrPostCallback onGetPrintDocItemListCompletedDelegate;
2159
        
2160
        public ServiceDeepViewClient() {
2161
        }
2162
        
2163
        public ServiceDeepViewClient(string endpointConfigurationName) : 
2164
                base(endpointConfigurationName) {
2165
        }
2166
        
2167
        public ServiceDeepViewClient(string endpointConfigurationName, string remoteAddress) : 
2168
                base(endpointConfigurationName, remoteAddress) {
2169
        }
2170
        
2171
        public ServiceDeepViewClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
2172
                base(endpointConfigurationName, remoteAddress) {
2173
        }
2174
        
2175
        public ServiceDeepViewClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
2176
                base(binding, remoteAddress) {
2177
        }
2178
        
2179
        public event System.EventHandler<GetSystemDataCompletedEventArgs> GetSystemDataCompleted;
2180
        
2181
        public event System.EventHandler<GetFavoriteVPCompletedEventArgs> GetFavoriteVPCompleted;
2182
        
2183
        public event System.EventHandler<EditFavoriteVPCompletedEventArgs> EditFavoriteVPCompleted;
2184
        
2185
        public event System.EventHandler<DelFavoriteVPCompletedEventArgs> DelFavoriteVPCompleted;
2186
        
2187
        public event System.EventHandler<GetCompareRectCompletedEventArgs> GetCompareRectCompleted;
2188
        
2189
        public event System.EventHandler<SetFinalPDFCompletedEventArgs> SetFinalPDFCompleted;
2190
        
2191
        public event System.EventHandler<GetConversionStateCompletedEventArgs> GetConversionStateCompleted;
2192
        
2193
        public event System.EventHandler<GetVPRevisionHistoryCompletedEventArgs> GetVPRevisionHistoryCompleted;
2194
        
2195
        public event System.EventHandler<GetVPRevisionFirstOrDefaultCompletedEventArgs> GetVPRevisionFirstOrDefaultCompleted;
2196
        
2197
        public event System.EventHandler<GetDocInfoCompletedEventArgs> GetDocInfoCompleted;
2198
        
2199
        public event System.EventHandler<GetCheckSystemAdminCompletedEventArgs> GetCheckSystemAdminCompleted;
2200
        
2201
        public event System.EventHandler<GetDocumentItemInfoCompletedEventArgs> GetDocumentItemInfoCompleted;
2202
        
2203
        public event System.EventHandler<GetMarkupInfoItemsCompletedEventArgs> GetMarkupInfoItemsCompleted;
2204
        
2205
        public event System.EventHandler<GetSyncMarkupInfoItemsCompletedEventArgs> GetSyncMarkupInfoItemsCompleted;
2206
        
2207
        public event System.EventHandler<GetUserDataCompletedEventArgs> GetUserDataCompleted;
2208
        
2209
        public event System.EventHandler<GetDeptDataCompletedEventArgs> GetDeptDataCompleted;
2210
        
2211
        public event System.EventHandler<DeleteMarkupCompletedEventArgs> DeleteMarkupCompleted;
2212
        
2213
        public event System.EventHandler<SetFavoriteVPCompletedEventArgs> SetFavoriteVPCompleted;
2214
        
2215
        public event System.EventHandler<SaveMarkupDataCompletedEventArgs> SaveMarkupDataCompleted;
2216
        
2217
        public event System.EventHandler<SaveSymbolCompletedEventArgs> SaveSymbolCompleted;
2218
        
2219
        public event System.EventHandler<DeleteSymbolCompletedEventArgs> DeleteSymbolCompleted;
2220
        
2221
        public event System.EventHandler<RenameSymbolCompletedEventArgs> RenameSymbolCompleted;
2222
        
2223
        public event System.EventHandler<AddCheckListHistoryCompletedEventArgs> AddCheckListHistoryCompleted;
2224
        
2225
        public event System.EventHandler<SaveCheckListHistoryCompletedEventArgs> SaveCheckListHistoryCompleted;
2226
        
2227
        public event System.EventHandler<SaveCheckListCompletedEventArgs> SaveCheckListCompleted;
2228
        
2229
        public event System.EventHandler<AddCheckListCompletedEventArgs> AddCheckListCompleted;
2230
        
2231
        public event System.EventHandler<GetCheckListCompletedEventArgs> GetCheckListCompleted;
2232
        
2233
        public event System.EventHandler<GetUserCheckListCompletedEventArgs> GetUserCheckListCompleted;
2234
        
2235
        public event System.EventHandler<GetCheckListHistoryCompletedEventArgs> GetCheckListHistoryCompleted;
2236
        
2237
        public event System.EventHandler<GetCheckListHistoryFirstOrDefaultCompletedEventArgs> GetCheckListHistoryFirstOrDefaultCompleted;
2238
        
2239
        public event System.EventHandler<SavePageAngleCompletedEventArgs> SavePageAngleCompleted;
2240
        
2241
        public event System.EventHandler<GetMarkupInfoCompletedEventArgs> GetMarkupInfoCompleted;
2242
        
2243
        public event System.EventHandler<GetMarkupDataListperPageCompletedEventArgs> GetMarkupDataListperPageCompleted;
2244
        
2245
        public event System.EventHandler<AddMarkupInfoCompletedEventArgs> AddMarkupInfoCompleted;
2246
        
2247
        public event System.EventHandler<AddMarkupInfoVersionCompletedEventArgs> AddMarkupInfoVersionCompleted;
2248
        
2249
        public event System.EventHandler<AddMarkupDataCompletedEventArgs> AddMarkupDataCompleted;
2250
        
2251
        public event System.EventHandler<AvoidMarkupInfoCompletedEventArgs> AvoidMarkupInfoCompleted;
2252
        
2253
        public event System.EventHandler<SaveMarkupInfoCompletedEventArgs> SaveMarkupInfoCompleted;
2254
        
2255
        public event System.EventHandler<GetMarkupDataListCompletedEventArgs> GetMarkupDataListCompleted;
2256
        
2257
        public event System.EventHandler<ConsolidateCompletedEventArgs> ConsolidateCompleted;
2258
        
2259
        public event System.EventHandler<GetMemberCompletedEventArgs> GetMemberCompleted;
2260
        
2261
        public event System.EventHandler<GetSymbolListCompletedEventArgs> GetSymbolListCompleted;
2262
        
2263
        public event System.EventHandler<GetPublicSymbolDeptListCompletedEventArgs> GetPublicSymbolDeptListCompleted;
2264
        
2265
        public event System.EventHandler<GetPublicSymbolListCompletedEventArgs> GetPublicSymbolListCompleted;
2266
        
2267
        public event System.EventHandler<GetSymbolDataCompletedEventArgs> GetSymbolDataCompleted;
2268
        
2269
        public event System.EventHandler<GetSignDataCompletedEventArgs> GetSignDataCompleted;
2270
        
2271
        public event System.EventHandler<GetProjectNameCompletedEventArgs> GetProjectNameCompleted;
2272
        
2273
        public event System.EventHandler<GetPreRevSelectCompletedEventArgs> GetPreRevSelectCompleted;
2274
        
2275
        public event System.EventHandler<GetDocInfoOneSelectCompletedEventArgs> GetDocInfoOneSelectCompleted;
2276
        
2277
        public event System.EventHandler<GetPrintDocItemListCompletedEventArgs> GetPrintDocItemListCompleted;
2278
        
2279
        public IKCOM.KCOM_SystemInfo GetSystemData() {
2280
            return base.Channel.GetSystemData();
2281
        }
2282
        
2283
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2284
        public System.IAsyncResult BeginGetSystemData(System.AsyncCallback callback, object asyncState) {
2285
            return base.Channel.BeginGetSystemData(callback, asyncState);
2286
        }
2287
        
2288
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2289
        public IKCOM.KCOM_SystemInfo EndGetSystemData(System.IAsyncResult result) {
2290
            return base.Channel.EndGetSystemData(result);
2291
        }
2292
        
2293
        private System.IAsyncResult OnBeginGetSystemData(object[] inValues, System.AsyncCallback callback, object asyncState) {
2294
            return this.BeginGetSystemData(callback, asyncState);
2295
        }
2296
        
2297
        private object[] OnEndGetSystemData(System.IAsyncResult result) {
2298
            IKCOM.KCOM_SystemInfo retVal = this.EndGetSystemData(result);
2299
            return new object[] {
2300
                    retVal};
2301
        }
2302
        
2303
        private void OnGetSystemDataCompleted(object state) {
2304
            if ((this.GetSystemDataCompleted != null)) {
2305
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2306
                this.GetSystemDataCompleted(this, new GetSystemDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2307
            }
2308
        }
2309
        
2310
        public void GetSystemDataAsync() {
2311
            this.GetSystemDataAsync(null);
2312
        }
2313
        
2314
        public void GetSystemDataAsync(object userState) {
2315
            if ((this.onBeginGetSystemDataDelegate == null)) {
2316
                this.onBeginGetSystemDataDelegate = new BeginOperationDelegate(this.OnBeginGetSystemData);
2317
            }
2318
            if ((this.onEndGetSystemDataDelegate == null)) {
2319
                this.onEndGetSystemDataDelegate = new EndOperationDelegate(this.OnEndGetSystemData);
2320
            }
2321
            if ((this.onGetSystemDataCompletedDelegate == null)) {
2322
                this.onGetSystemDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSystemDataCompleted);
2323
            }
2324
            base.InvokeAsync(this.onBeginGetSystemDataDelegate, null, this.onEndGetSystemDataDelegate, this.onGetSystemDataCompletedDelegate, userState);
2325
        }
2326
        
2327
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> GetFavoriteVP(string PrjNo, string userID, string sharepointItemID) {
2328
            return base.Channel.GetFavoriteVP(PrjNo, userID, sharepointItemID);
2329
        }
2330
        
2331
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2332
        public System.IAsyncResult BeginGetFavoriteVP(string PrjNo, string userID, string sharepointItemID, System.AsyncCallback callback, object asyncState) {
2333
            return base.Channel.BeginGetFavoriteVP(PrjNo, userID, sharepointItemID, callback, asyncState);
2334
        }
2335
        
2336
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2337
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> EndGetFavoriteVP(System.IAsyncResult result) {
2338
            return base.Channel.EndGetFavoriteVP(result);
2339
        }
2340
        
2341
        private System.IAsyncResult OnBeginGetFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
2342
            string PrjNo = ((string)(inValues[0]));
2343
            string userID = ((string)(inValues[1]));
2344
            string sharepointItemID = ((string)(inValues[2]));
2345
            return this.BeginGetFavoriteVP(PrjNo, userID, sharepointItemID, callback, asyncState);
2346
        }
2347
        
2348
        private object[] OnEndGetFavoriteVP(System.IAsyncResult result) {
2349
            System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> retVal = this.EndGetFavoriteVP(result);
2350
            return new object[] {
2351
                    retVal};
2352
        }
2353
        
2354
        private void OnGetFavoriteVPCompleted(object state) {
2355
            if ((this.GetFavoriteVPCompleted != null)) {
2356
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2357
                this.GetFavoriteVPCompleted(this, new GetFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2358
            }
2359
        }
2360
        
2361
        public void GetFavoriteVPAsync(string PrjNo, string userID, string sharepointItemID) {
2362
            this.GetFavoriteVPAsync(PrjNo, userID, sharepointItemID, null);
2363
        }
2364
        
2365
        public void GetFavoriteVPAsync(string PrjNo, string userID, string sharepointItemID, object userState) {
2366
            if ((this.onBeginGetFavoriteVPDelegate == null)) {
2367
                this.onBeginGetFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginGetFavoriteVP);
2368
            }
2369
            if ((this.onEndGetFavoriteVPDelegate == null)) {
2370
                this.onEndGetFavoriteVPDelegate = new EndOperationDelegate(this.OnEndGetFavoriteVP);
2371
            }
2372
            if ((this.onGetFavoriteVPCompletedDelegate == null)) {
2373
                this.onGetFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetFavoriteVPCompleted);
2374
            }
2375
            base.InvokeAsync(this.onBeginGetFavoriteVPDelegate, new object[] {
2376
                        PrjNo,
2377
                        userID,
2378
                        sharepointItemID}, this.onEndGetFavoriteVPDelegate, this.onGetFavoriteVPCompletedDelegate, userState);
2379
        }
2380
        
2381
        public bool EditFavoriteVP(string prjNo, string userID, string docID, int state, string description) {
2382
            return base.Channel.EditFavoriteVP(prjNo, userID, docID, state, description);
2383
        }
2384
        
2385
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2386
        public System.IAsyncResult BeginEditFavoriteVP(string prjNo, string userID, string docID, int state, string description, System.AsyncCallback callback, object asyncState) {
2387
            return base.Channel.BeginEditFavoriteVP(prjNo, userID, docID, state, description, callback, asyncState);
2388
        }
2389
        
2390
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2391
        public bool EndEditFavoriteVP(System.IAsyncResult result) {
2392
            return base.Channel.EndEditFavoriteVP(result);
2393
        }
2394
        
2395
        private System.IAsyncResult OnBeginEditFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
2396
            string prjNo = ((string)(inValues[0]));
2397
            string userID = ((string)(inValues[1]));
2398
            string docID = ((string)(inValues[2]));
2399
            int state = ((int)(inValues[3]));
2400
            string description = ((string)(inValues[4]));
2401
            return this.BeginEditFavoriteVP(prjNo, userID, docID, state, description, callback, asyncState);
2402
        }
2403
        
2404
        private object[] OnEndEditFavoriteVP(System.IAsyncResult result) {
2405
            bool retVal = this.EndEditFavoriteVP(result);
2406
            return new object[] {
2407
                    retVal};
2408
        }
2409
        
2410
        private void OnEditFavoriteVPCompleted(object state) {
2411
            if ((this.EditFavoriteVPCompleted != null)) {
2412
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2413
                this.EditFavoriteVPCompleted(this, new EditFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2414
            }
2415
        }
2416
        
2417
        public void EditFavoriteVPAsync(string prjNo, string userID, string docID, int state, string description) {
2418
            this.EditFavoriteVPAsync(prjNo, userID, docID, state, description, null);
2419
        }
2420
        
2421
        public void EditFavoriteVPAsync(string prjNo, string userID, string docID, int state, string description, object userState) {
2422
            if ((this.onBeginEditFavoriteVPDelegate == null)) {
2423
                this.onBeginEditFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginEditFavoriteVP);
2424
            }
2425
            if ((this.onEndEditFavoriteVPDelegate == null)) {
2426
                this.onEndEditFavoriteVPDelegate = new EndOperationDelegate(this.OnEndEditFavoriteVP);
2427
            }
2428
            if ((this.onEditFavoriteVPCompletedDelegate == null)) {
2429
                this.onEditFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnEditFavoriteVPCompleted);
2430
            }
2431
            base.InvokeAsync(this.onBeginEditFavoriteVPDelegate, new object[] {
2432
                        prjNo,
2433
                        userID,
2434
                        docID,
2435
                        state,
2436
                        description}, this.onEndEditFavoriteVPDelegate, this.onEditFavoriteVPCompletedDelegate, userState);
2437
        }
2438
        
2439
        public bool DelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID) {
2440
            return base.Channel.DelFavoriteVP(prjNo, userID, SavePageNo, docID);
2441
        }
2442
        
2443
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2444
        public System.IAsyncResult BeginDelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID, System.AsyncCallback callback, object asyncState) {
2445
            return base.Channel.BeginDelFavoriteVP(prjNo, userID, SavePageNo, docID, callback, asyncState);
2446
        }
2447
        
2448
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2449
        public bool EndDelFavoriteVP(System.IAsyncResult result) {
2450
            return base.Channel.EndDelFavoriteVP(result);
2451
        }
2452
        
2453
        private System.IAsyncResult OnBeginDelFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
2454
            string prjNo = ((string)(inValues[0]));
2455
            string userID = ((string)(inValues[1]));
2456
            int SavePageNo = ((int)(inValues[2]));
2457
            string docID = ((string)(inValues[3]));
2458
            return this.BeginDelFavoriteVP(prjNo, userID, SavePageNo, docID, callback, asyncState);
2459
        }
2460
        
2461
        private object[] OnEndDelFavoriteVP(System.IAsyncResult result) {
2462
            bool retVal = this.EndDelFavoriteVP(result);
2463
            return new object[] {
2464
                    retVal};
2465
        }
2466
        
2467
        private void OnDelFavoriteVPCompleted(object state) {
2468
            if ((this.DelFavoriteVPCompleted != null)) {
2469
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2470
                this.DelFavoriteVPCompleted(this, new DelFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2471
            }
2472
        }
2473
        
2474
        public void DelFavoriteVPAsync(string prjNo, string userID, int SavePageNo, string docID) {
2475
            this.DelFavoriteVPAsync(prjNo, userID, SavePageNo, docID, null);
2476
        }
2477
        
2478
        public void DelFavoriteVPAsync(string prjNo, string userID, int SavePageNo, string docID, object userState) {
2479
            if ((this.onBeginDelFavoriteVPDelegate == null)) {
2480
                this.onBeginDelFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginDelFavoriteVP);
2481
            }
2482
            if ((this.onEndDelFavoriteVPDelegate == null)) {
2483
                this.onEndDelFavoriteVPDelegate = new EndOperationDelegate(this.OnEndDelFavoriteVP);
2484
            }
2485
            if ((this.onDelFavoriteVPCompletedDelegate == null)) {
2486
                this.onDelFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDelFavoriteVPCompleted);
2487
            }
2488
            base.InvokeAsync(this.onBeginDelFavoriteVPDelegate, new object[] {
2489
                        prjNo,
2490
                        userID,
2491
                        SavePageNo,
2492
                        docID}, this.onEndDelFavoriteVPDelegate, this.onDelFavoriteVPCompletedDelegate, userState);
2493
        }
2494
        
2495
        public System.Collections.Generic.List<System.Windows.Rect> GetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress) {
2496
            return base.Channel.GetCompareRect(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress);
2497
        }
2498
        
2499
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2500
        public System.IAsyncResult BeginGetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress, System.AsyncCallback callback, object asyncState) {
2501
            return base.Channel.BeginGetCompareRect(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress, callback, asyncState);
2502
        }
2503
        
2504
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2505
        public System.Collections.Generic.List<System.Windows.Rect> EndGetCompareRect(System.IAsyncResult result) {
2506
            return base.Channel.EndGetCompareRect(result);
2507
        }
2508
        
2509
        private System.IAsyncResult OnBeginGetCompareRect(object[] inValues, System.AsyncCallback callback, object asyncState) {
2510
            string projectNo = ((string)(inValues[0]));
2511
            string originDocItem_ID = ((string)(inValues[1]));
2512
            string targetDocItem_ID = ((string)(inValues[2]));
2513
            string originPageNo = ((string)(inValues[3]));
2514
            string targetPageNo = ((string)(inValues[4]));
2515
            string isInternalAddress = ((string)(inValues[5]));
2516
            return this.BeginGetCompareRect(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress, callback, asyncState);
2517
        }
2518
        
2519
        private object[] OnEndGetCompareRect(System.IAsyncResult result) {
2520
            System.Collections.Generic.List<System.Windows.Rect> retVal = this.EndGetCompareRect(result);
2521
            return new object[] {
2522
                    retVal};
2523
        }
2524
        
2525
        private void OnGetCompareRectCompleted(object state) {
2526
            if ((this.GetCompareRectCompleted != null)) {
2527
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2528
                this.GetCompareRectCompleted(this, new GetCompareRectCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2529
            }
2530
        }
2531
        
2532
        public void GetCompareRectAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress) {
2533
            this.GetCompareRectAsync(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress, null);
2534
        }
2535
        
2536
        public void GetCompareRectAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress, object userState) {
2537
            if ((this.onBeginGetCompareRectDelegate == null)) {
2538
                this.onBeginGetCompareRectDelegate = new BeginOperationDelegate(this.OnBeginGetCompareRect);
2539
            }
2540
            if ((this.onEndGetCompareRectDelegate == null)) {
2541
                this.onEndGetCompareRectDelegate = new EndOperationDelegate(this.OnEndGetCompareRect);
2542
            }
2543
            if ((this.onGetCompareRectCompletedDelegate == null)) {
2544
                this.onGetCompareRectCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCompareRectCompleted);
2545
            }
2546
            base.InvokeAsync(this.onBeginGetCompareRectDelegate, new object[] {
2547
                        projectNo,
2548
                        originDocItem_ID,
2549
                        targetDocItem_ID,
2550
                        originPageNo,
2551
                        targetPageNo,
2552
                        isInternalAddress}, this.onEndGetCompareRectDelegate, this.onGetCompareRectCompletedDelegate, userState);
2553
        }
2554
        
2555
        public KCOM.ServiceDeepView.FinalPDFResult SetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID) {
2556
            return base.Channel.SetFinalPDF(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID);
2557
        }
2558
        
2559
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2560
        public System.IAsyncResult BeginSetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState) {
2561
            return base.Channel.BeginSetFinalPDF(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID, callback, asyncState);
2562
        }
2563
        
2564
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2565
        public KCOM.ServiceDeepView.FinalPDFResult EndSetFinalPDF(System.IAsyncResult result) {
2566
            return base.Channel.EndSetFinalPDF(result);
2567
        }
2568
        
2569
        private System.IAsyncResult OnBeginSetFinalPDF(object[] inValues, System.AsyncCallback callback, object asyncState) {
2570
            string ProjectNo = ((string)(inValues[0]));
2571
            string DocInfoID = ((string)(inValues[1]));
2572
            string MarkupInfoID = ((string)(inValues[2]));
2573
            string CreateUserID = ((string)(inValues[3]));
2574
            return this.BeginSetFinalPDF(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID, callback, asyncState);
2575
        }
2576
        
2577
        private object[] OnEndSetFinalPDF(System.IAsyncResult result) {
2578
            KCOM.ServiceDeepView.FinalPDFResult retVal = this.EndSetFinalPDF(result);
2579
            return new object[] {
2580
                    retVal};
2581
        }
2582
        
2583
        private void OnSetFinalPDFCompleted(object state) {
2584
            if ((this.SetFinalPDFCompleted != null)) {
2585
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2586
                this.SetFinalPDFCompleted(this, new SetFinalPDFCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2587
            }
2588
        }
2589
        
2590
        public void SetFinalPDFAsync(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID) {
2591
            this.SetFinalPDFAsync(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID, null);
2592
        }
2593
        
2594
        public void SetFinalPDFAsync(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID, object userState) {
2595
            if ((this.onBeginSetFinalPDFDelegate == null)) {
2596
                this.onBeginSetFinalPDFDelegate = new BeginOperationDelegate(this.OnBeginSetFinalPDF);
2597
            }
2598
            if ((this.onEndSetFinalPDFDelegate == null)) {
2599
                this.onEndSetFinalPDFDelegate = new EndOperationDelegate(this.OnEndSetFinalPDF);
2600
            }
2601
            if ((this.onSetFinalPDFCompletedDelegate == null)) {
2602
                this.onSetFinalPDFCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetFinalPDFCompleted);
2603
            }
2604
            base.InvokeAsync(this.onBeginSetFinalPDFDelegate, new object[] {
2605
                        ProjectNo,
2606
                        DocInfoID,
2607
                        MarkupInfoID,
2608
                        CreateUserID}, this.onEndSetFinalPDFDelegate, this.onSetFinalPDFCompletedDelegate, userState);
2609
        }
2610
        
2611
        public bool GetConversionState(IKCOM.KCOM_BasicParam param) {
2612
            return base.Channel.GetConversionState(param);
2613
        }
2614
        
2615
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2616
        public System.IAsyncResult BeginGetConversionState(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState) {
2617
            return base.Channel.BeginGetConversionState(param, callback, asyncState);
2618
        }
2619
        
2620
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2621
        public bool EndGetConversionState(System.IAsyncResult result) {
2622
            return base.Channel.EndGetConversionState(result);
2623
        }
2624
        
2625
        private System.IAsyncResult OnBeginGetConversionState(object[] inValues, System.AsyncCallback callback, object asyncState) {
2626
            IKCOM.KCOM_BasicParam param = ((IKCOM.KCOM_BasicParam)(inValues[0]));
2627
            return this.BeginGetConversionState(param, callback, asyncState);
2628
        }
2629
        
2630
        private object[] OnEndGetConversionState(System.IAsyncResult result) {
2631
            bool retVal = this.EndGetConversionState(result);
2632
            return new object[] {
2633
                    retVal};
2634
        }
2635
        
2636
        private void OnGetConversionStateCompleted(object state) {
2637
            if ((this.GetConversionStateCompleted != null)) {
2638
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2639
                this.GetConversionStateCompleted(this, new GetConversionStateCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2640
            }
2641
        }
2642
        
2643
        public void GetConversionStateAsync(IKCOM.KCOM_BasicParam param) {
2644
            this.GetConversionStateAsync(param, null);
2645
        }
2646
        
2647
        public void GetConversionStateAsync(IKCOM.KCOM_BasicParam param, object userState) {
2648
            if ((this.onBeginGetConversionStateDelegate == null)) {
2649
                this.onBeginGetConversionStateDelegate = new BeginOperationDelegate(this.OnBeginGetConversionState);
2650
            }
2651
            if ((this.onEndGetConversionStateDelegate == null)) {
2652
                this.onEndGetConversionStateDelegate = new EndOperationDelegate(this.OnEndGetConversionState);
2653
            }
2654
            if ((this.onGetConversionStateCompletedDelegate == null)) {
2655
                this.onGetConversionStateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetConversionStateCompleted);
2656
            }
2657
            base.InvokeAsync(this.onBeginGetConversionStateDelegate, new object[] {
2658
                        param}, this.onEndGetConversionStateDelegate, this.onGetConversionStateCompletedDelegate, userState);
2659
        }
2660
        
2661
        public System.Collections.Generic.List<IKCOM.VPRevision> GetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId) {
2662
            return base.Channel.GetVPRevisionHistory(ProjectNo, vpNo, DocumentId);
2663
        }
2664
        
2665
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2666
        public System.IAsyncResult BeginGetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId, System.AsyncCallback callback, object asyncState) {
2667
            return base.Channel.BeginGetVPRevisionHistory(ProjectNo, vpNo, DocumentId, callback, asyncState);
2668
        }
2669
        
2670
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2671
        public System.Collections.Generic.List<IKCOM.VPRevision> EndGetVPRevisionHistory(System.IAsyncResult result) {
2672
            return base.Channel.EndGetVPRevisionHistory(result);
2673
        }
2674
        
2675
        private System.IAsyncResult OnBeginGetVPRevisionHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
2676
            string ProjectNo = ((string)(inValues[0]));
2677
            string vpNo = ((string)(inValues[1]));
2678
            string DocumentId = ((string)(inValues[2]));
2679
            return this.BeginGetVPRevisionHistory(ProjectNo, vpNo, DocumentId, callback, asyncState);
2680
        }
2681
        
2682
        private object[] OnEndGetVPRevisionHistory(System.IAsyncResult result) {
2683
            System.Collections.Generic.List<IKCOM.VPRevision> retVal = this.EndGetVPRevisionHistory(result);
2684
            return new object[] {
2685
                    retVal};
2686
        }
2687
        
2688
        private void OnGetVPRevisionHistoryCompleted(object state) {
2689
            if ((this.GetVPRevisionHistoryCompleted != null)) {
2690
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2691
                this.GetVPRevisionHistoryCompleted(this, new GetVPRevisionHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2692
            }
2693
        }
2694
        
2695
        public void GetVPRevisionHistoryAsync(string ProjectNo, string vpNo, string DocumentId) {
2696
            this.GetVPRevisionHistoryAsync(ProjectNo, vpNo, DocumentId, null);
2697
        }
2698
        
2699
        public void GetVPRevisionHistoryAsync(string ProjectNo, string vpNo, string DocumentId, object userState) {
2700
            if ((this.onBeginGetVPRevisionHistoryDelegate == null)) {
2701
                this.onBeginGetVPRevisionHistoryDelegate = new BeginOperationDelegate(this.OnBeginGetVPRevisionHistory);
2702
            }
2703
            if ((this.onEndGetVPRevisionHistoryDelegate == null)) {
2704
                this.onEndGetVPRevisionHistoryDelegate = new EndOperationDelegate(this.OnEndGetVPRevisionHistory);
2705
            }
2706
            if ((this.onGetVPRevisionHistoryCompletedDelegate == null)) {
2707
                this.onGetVPRevisionHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetVPRevisionHistoryCompleted);
2708
            }
2709
            base.InvokeAsync(this.onBeginGetVPRevisionHistoryDelegate, new object[] {
2710
                        ProjectNo,
2711
                        vpNo,
2712
                        DocumentId}, this.onEndGetVPRevisionHistoryDelegate, this.onGetVPRevisionHistoryCompletedDelegate, userState);
2713
        }
2714
        
2715
        public IKCOM.VPRevision GetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId) {
2716
            return base.Channel.GetVPRevisionFirstOrDefault(ProjectNo, DocumentId);
2717
        }
2718
        
2719
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2720
        public System.IAsyncResult BeginGetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId, System.AsyncCallback callback, object asyncState) {
2721
            return base.Channel.BeginGetVPRevisionFirstOrDefault(ProjectNo, DocumentId, callback, asyncState);
2722
        }
2723
        
2724
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2725
        public IKCOM.VPRevision EndGetVPRevisionFirstOrDefault(System.IAsyncResult result) {
2726
            return base.Channel.EndGetVPRevisionFirstOrDefault(result);
2727
        }
2728
        
2729
        private System.IAsyncResult OnBeginGetVPRevisionFirstOrDefault(object[] inValues, System.AsyncCallback callback, object asyncState) {
2730
            string ProjectNo = ((string)(inValues[0]));
2731
            string DocumentId = ((string)(inValues[1]));
2732
            return this.BeginGetVPRevisionFirstOrDefault(ProjectNo, DocumentId, callback, asyncState);
2733
        }
2734
        
2735
        private object[] OnEndGetVPRevisionFirstOrDefault(System.IAsyncResult result) {
2736
            IKCOM.VPRevision retVal = this.EndGetVPRevisionFirstOrDefault(result);
2737
            return new object[] {
2738
                    retVal};
2739
        }
2740
        
2741
        private void OnGetVPRevisionFirstOrDefaultCompleted(object state) {
2742
            if ((this.GetVPRevisionFirstOrDefaultCompleted != null)) {
2743
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2744
                this.GetVPRevisionFirstOrDefaultCompleted(this, new GetVPRevisionFirstOrDefaultCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2745
            }
2746
        }
2747
        
2748
        public void GetVPRevisionFirstOrDefaultAsync(string ProjectNo, string DocumentId) {
2749
            this.GetVPRevisionFirstOrDefaultAsync(ProjectNo, DocumentId, null);
2750
        }
2751
        
2752
        public void GetVPRevisionFirstOrDefaultAsync(string ProjectNo, string DocumentId, object userState) {
2753
            if ((this.onBeginGetVPRevisionFirstOrDefaultDelegate == null)) {
2754
                this.onBeginGetVPRevisionFirstOrDefaultDelegate = new BeginOperationDelegate(this.OnBeginGetVPRevisionFirstOrDefault);
2755
            }
2756
            if ((this.onEndGetVPRevisionFirstOrDefaultDelegate == null)) {
2757
                this.onEndGetVPRevisionFirstOrDefaultDelegate = new EndOperationDelegate(this.OnEndGetVPRevisionFirstOrDefault);
2758
            }
2759
            if ((this.onGetVPRevisionFirstOrDefaultCompletedDelegate == null)) {
2760
                this.onGetVPRevisionFirstOrDefaultCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetVPRevisionFirstOrDefaultCompleted);
2761
            }
2762
            base.InvokeAsync(this.onBeginGetVPRevisionFirstOrDefaultDelegate, new object[] {
2763
                        ProjectNo,
2764
                        DocumentId}, this.onEndGetVPRevisionFirstOrDefaultDelegate, this.onGetVPRevisionFirstOrDefaultCompletedDelegate, userState);
2765
        }
2766
        
2767
        public KCOMDataModel.DataModel.DOCINFO GetDocInfo(IKCOM.KCOM_BasicParam param) {
2768
            return base.Channel.GetDocInfo(param);
2769
        }
2770
        
2771
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2772
        public System.IAsyncResult BeginGetDocInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState) {
2773
            return base.Channel.BeginGetDocInfo(param, callback, asyncState);
2774
        }
2775
        
2776
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2777
        public KCOMDataModel.DataModel.DOCINFO EndGetDocInfo(System.IAsyncResult result) {
2778
            return base.Channel.EndGetDocInfo(result);
2779
        }
2780
        
2781
        private System.IAsyncResult OnBeginGetDocInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
2782
            IKCOM.KCOM_BasicParam param = ((IKCOM.KCOM_BasicParam)(inValues[0]));
2783
            return this.BeginGetDocInfo(param, callback, asyncState);
2784
        }
2785
        
2786
        private object[] OnEndGetDocInfo(System.IAsyncResult result) {
2787
            KCOMDataModel.DataModel.DOCINFO retVal = this.EndGetDocInfo(result);
2788
            return new object[] {
2789
                    retVal};
2790
        }
2791
        
2792
        private void OnGetDocInfoCompleted(object state) {
2793
            if ((this.GetDocInfoCompleted != null)) {
2794
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2795
                this.GetDocInfoCompleted(this, new GetDocInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2796
            }
2797
        }
2798
        
2799
        public void GetDocInfoAsync(IKCOM.KCOM_BasicParam param) {
2800
            this.GetDocInfoAsync(param, null);
2801
        }
2802
        
2803
        public void GetDocInfoAsync(IKCOM.KCOM_BasicParam param, object userState) {
2804
            if ((this.onBeginGetDocInfoDelegate == null)) {
2805
                this.onBeginGetDocInfoDelegate = new BeginOperationDelegate(this.OnBeginGetDocInfo);
2806
            }
2807
            if ((this.onEndGetDocInfoDelegate == null)) {
2808
                this.onEndGetDocInfoDelegate = new EndOperationDelegate(this.OnEndGetDocInfo);
2809
            }
2810
            if ((this.onGetDocInfoCompletedDelegate == null)) {
2811
                this.onGetDocInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocInfoCompleted);
2812
            }
2813
            base.InvokeAsync(this.onBeginGetDocInfoDelegate, new object[] {
2814
                        param}, this.onEndGetDocInfoDelegate, this.onGetDocInfoCompletedDelegate, userState);
2815
        }
2816
        
2817
        public bool GetCheckSystemAdmin(string UserID) {
2818
            return base.Channel.GetCheckSystemAdmin(UserID);
2819
        }
2820
        
2821
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2822
        public System.IAsyncResult BeginGetCheckSystemAdmin(string UserID, System.AsyncCallback callback, object asyncState) {
2823
            return base.Channel.BeginGetCheckSystemAdmin(UserID, callback, asyncState);
2824
        }
2825
        
2826
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2827
        public bool EndGetCheckSystemAdmin(System.IAsyncResult result) {
2828
            return base.Channel.EndGetCheckSystemAdmin(result);
2829
        }
2830
        
2831
        private System.IAsyncResult OnBeginGetCheckSystemAdmin(object[] inValues, System.AsyncCallback callback, object asyncState) {
2832
            string UserID = ((string)(inValues[0]));
2833
            return this.BeginGetCheckSystemAdmin(UserID, callback, asyncState);
2834
        }
2835
        
2836
        private object[] OnEndGetCheckSystemAdmin(System.IAsyncResult result) {
2837
            bool retVal = this.EndGetCheckSystemAdmin(result);
2838
            return new object[] {
2839
                    retVal};
2840
        }
2841
        
2842
        private void OnGetCheckSystemAdminCompleted(object state) {
2843
            if ((this.GetCheckSystemAdminCompleted != null)) {
2844
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2845
                this.GetCheckSystemAdminCompleted(this, new GetCheckSystemAdminCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2846
            }
2847
        }
2848
        
2849
        public void GetCheckSystemAdminAsync(string UserID) {
2850
            this.GetCheckSystemAdminAsync(UserID, null);
2851
        }
2852
        
2853
        public void GetCheckSystemAdminAsync(string UserID, object userState) {
2854
            if ((this.onBeginGetCheckSystemAdminDelegate == null)) {
2855
                this.onBeginGetCheckSystemAdminDelegate = new BeginOperationDelegate(this.OnBeginGetCheckSystemAdmin);
2856
            }
2857
            if ((this.onEndGetCheckSystemAdminDelegate == null)) {
2858
                this.onEndGetCheckSystemAdminDelegate = new EndOperationDelegate(this.OnEndGetCheckSystemAdmin);
2859
            }
2860
            if ((this.onGetCheckSystemAdminCompletedDelegate == null)) {
2861
                this.onGetCheckSystemAdminCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckSystemAdminCompleted);
2862
            }
2863
            base.InvokeAsync(this.onBeginGetCheckSystemAdminDelegate, new object[] {
2864
                        UserID}, this.onEndGetCheckSystemAdminDelegate, this.onGetCheckSystemAdminCompletedDelegate, userState);
2865
        }
2866
        
2867
        public KCOMDataModel.DataModel.DOCUMENT_ITEM GetDocumentItemInfo(IKCOM.KCOM_BasicParam param) {
2868
            return base.Channel.GetDocumentItemInfo(param);
2869
        }
2870
        
2871
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2872
        public System.IAsyncResult BeginGetDocumentItemInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState) {
2873
            return base.Channel.BeginGetDocumentItemInfo(param, callback, asyncState);
2874
        }
2875
        
2876
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2877
        public KCOMDataModel.DataModel.DOCUMENT_ITEM EndGetDocumentItemInfo(System.IAsyncResult result) {
2878
            return base.Channel.EndGetDocumentItemInfo(result);
2879
        }
2880
        
2881
        private System.IAsyncResult OnBeginGetDocumentItemInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
2882
            IKCOM.KCOM_BasicParam param = ((IKCOM.KCOM_BasicParam)(inValues[0]));
2883
            return this.BeginGetDocumentItemInfo(param, callback, asyncState);
2884
        }
2885
        
2886
        private object[] OnEndGetDocumentItemInfo(System.IAsyncResult result) {
2887
            KCOMDataModel.DataModel.DOCUMENT_ITEM retVal = this.EndGetDocumentItemInfo(result);
2888
            return new object[] {
2889
                    retVal};
2890
        }
2891
        
2892
        private void OnGetDocumentItemInfoCompleted(object state) {
2893
            if ((this.GetDocumentItemInfoCompleted != null)) {
2894
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2895
                this.GetDocumentItemInfoCompleted(this, new GetDocumentItemInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2896
            }
2897
        }
2898
        
2899
        public void GetDocumentItemInfoAsync(IKCOM.KCOM_BasicParam param) {
2900
            this.GetDocumentItemInfoAsync(param, null);
2901
        }
2902
        
2903
        public void GetDocumentItemInfoAsync(IKCOM.KCOM_BasicParam param, object userState) {
2904
            if ((this.onBeginGetDocumentItemInfoDelegate == null)) {
2905
                this.onBeginGetDocumentItemInfoDelegate = new BeginOperationDelegate(this.OnBeginGetDocumentItemInfo);
2906
            }
2907
            if ((this.onEndGetDocumentItemInfoDelegate == null)) {
2908
                this.onEndGetDocumentItemInfoDelegate = new EndOperationDelegate(this.OnEndGetDocumentItemInfo);
2909
            }
2910
            if ((this.onGetDocumentItemInfoCompletedDelegate == null)) {
2911
                this.onGetDocumentItemInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocumentItemInfoCompleted);
2912
            }
2913
            base.InvokeAsync(this.onBeginGetDocumentItemInfoDelegate, new object[] {
2914
                        param}, this.onEndGetDocumentItemInfoDelegate, this.onGetDocumentItemInfoCompletedDelegate, userState);
2915
        }
2916
        
2917
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId) {
2918
            return base.Channel.GetMarkupInfoItems(ProjectNo, DocInfoId);
2919
        }
2920
        
2921
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2922
        public System.IAsyncResult BeginGetMarkupInfoItems(string ProjectNo, string DocInfoId, System.AsyncCallback callback, object asyncState) {
2923
            return base.Channel.BeginGetMarkupInfoItems(ProjectNo, DocInfoId, callback, asyncState);
2924
        }
2925
        
2926
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2927
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetMarkupInfoItems(System.IAsyncResult result) {
2928
            return base.Channel.EndGetMarkupInfoItems(result);
2929
        }
2930
        
2931
        private System.IAsyncResult OnBeginGetMarkupInfoItems(object[] inValues, System.AsyncCallback callback, object asyncState) {
2932
            string ProjectNo = ((string)(inValues[0]));
2933
            string DocInfoId = ((string)(inValues[1]));
2934
            return this.BeginGetMarkupInfoItems(ProjectNo, DocInfoId, callback, asyncState);
2935
        }
2936
        
2937
        private object[] OnEndGetMarkupInfoItems(System.IAsyncResult result) {
2938
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> retVal = this.EndGetMarkupInfoItems(result);
2939
            return new object[] {
2940
                    retVal};
2941
        }
2942
        
2943
        private void OnGetMarkupInfoItemsCompleted(object state) {
2944
            if ((this.GetMarkupInfoItemsCompleted != null)) {
2945
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2946
                this.GetMarkupInfoItemsCompleted(this, new GetMarkupInfoItemsCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2947
            }
2948
        }
2949
        
2950
        public void GetMarkupInfoItemsAsync(string ProjectNo, string DocInfoId) {
2951
            this.GetMarkupInfoItemsAsync(ProjectNo, DocInfoId, null);
2952
        }
2953
        
2954
        public void GetMarkupInfoItemsAsync(string ProjectNo, string DocInfoId, object userState) {
2955
            if ((this.onBeginGetMarkupInfoItemsDelegate == null)) {
2956
                this.onBeginGetMarkupInfoItemsDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupInfoItems);
2957
            }
2958
            if ((this.onEndGetMarkupInfoItemsDelegate == null)) {
2959
                this.onEndGetMarkupInfoItemsDelegate = new EndOperationDelegate(this.OnEndGetMarkupInfoItems);
2960
            }
2961
            if ((this.onGetMarkupInfoItemsCompletedDelegate == null)) {
2962
                this.onGetMarkupInfoItemsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupInfoItemsCompleted);
2963
            }
2964
            base.InvokeAsync(this.onBeginGetMarkupInfoItemsDelegate, new object[] {
2965
                        ProjectNo,
2966
                        DocInfoId}, this.onEndGetMarkupInfoItemsDelegate, this.onGetMarkupInfoItemsCompletedDelegate, userState);
2967
        }
2968
        
2969
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser) {
2970
            return base.Channel.GetSyncMarkupInfoItems(ProjectNo, DocInfoId, currentUser);
2971
        }
2972
        
2973
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2974
        public System.IAsyncResult BeginGetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser, System.AsyncCallback callback, object asyncState) {
2975
            return base.Channel.BeginGetSyncMarkupInfoItems(ProjectNo, DocInfoId, currentUser, callback, asyncState);
2976
        }
2977
        
2978
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2979
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetSyncMarkupInfoItems(System.IAsyncResult result) {
2980
            return base.Channel.EndGetSyncMarkupInfoItems(result);
2981
        }
2982
        
2983
        private System.IAsyncResult OnBeginGetSyncMarkupInfoItems(object[] inValues, System.AsyncCallback callback, object asyncState) {
2984
            string ProjectNo = ((string)(inValues[0]));
2985
            string DocInfoId = ((string)(inValues[1]));
2986
            string currentUser = ((string)(inValues[2]));
2987
            return this.BeginGetSyncMarkupInfoItems(ProjectNo, DocInfoId, currentUser, callback, asyncState);
2988
        }
2989
        
2990
        private object[] OnEndGetSyncMarkupInfoItems(System.IAsyncResult result) {
2991
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> retVal = this.EndGetSyncMarkupInfoItems(result);
2992
            return new object[] {
2993
                    retVal};
2994
        }
2995
        
2996
        private void OnGetSyncMarkupInfoItemsCompleted(object state) {
2997
            if ((this.GetSyncMarkupInfoItemsCompleted != null)) {
2998
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2999
                this.GetSyncMarkupInfoItemsCompleted(this, new GetSyncMarkupInfoItemsCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3000
            }
3001
        }
3002
        
3003
        public void GetSyncMarkupInfoItemsAsync(string ProjectNo, string DocInfoId, string currentUser) {
3004
            this.GetSyncMarkupInfoItemsAsync(ProjectNo, DocInfoId, currentUser, null);
3005
        }
3006
        
3007
        public void GetSyncMarkupInfoItemsAsync(string ProjectNo, string DocInfoId, string currentUser, object userState) {
3008
            if ((this.onBeginGetSyncMarkupInfoItemsDelegate == null)) {
3009
                this.onBeginGetSyncMarkupInfoItemsDelegate = new BeginOperationDelegate(this.OnBeginGetSyncMarkupInfoItems);
3010
            }
3011
            if ((this.onEndGetSyncMarkupInfoItemsDelegate == null)) {
3012
                this.onEndGetSyncMarkupInfoItemsDelegate = new EndOperationDelegate(this.OnEndGetSyncMarkupInfoItems);
3013
            }
3014
            if ((this.onGetSyncMarkupInfoItemsCompletedDelegate == null)) {
3015
                this.onGetSyncMarkupInfoItemsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSyncMarkupInfoItemsCompleted);
3016
            }
3017
            base.InvokeAsync(this.onBeginGetSyncMarkupInfoItemsDelegate, new object[] {
3018
                        ProjectNo,
3019
                        DocInfoId,
3020
                        currentUser}, this.onEndGetSyncMarkupInfoItemsDelegate, this.onGetSyncMarkupInfoItemsCompletedDelegate, userState);
3021
        }
3022
        
3023
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> GetUserData(string ProjectNo, string UserID) {
3024
            return base.Channel.GetUserData(ProjectNo, UserID);
3025
        }
3026
        
3027
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3028
        public System.IAsyncResult BeginGetUserData(string ProjectNo, string UserID, System.AsyncCallback callback, object asyncState) {
3029
            return base.Channel.BeginGetUserData(ProjectNo, UserID, callback, asyncState);
3030
        }
3031
        
3032
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3033
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> EndGetUserData(System.IAsyncResult result) {
3034
            return base.Channel.EndGetUserData(result);
3035
        }
3036
        
3037
        private System.IAsyncResult OnBeginGetUserData(object[] inValues, System.AsyncCallback callback, object asyncState) {
3038
            string ProjectNo = ((string)(inValues[0]));
3039
            string UserID = ((string)(inValues[1]));
3040
            return this.BeginGetUserData(ProjectNo, UserID, callback, asyncState);
3041
        }
3042
        
3043
        private object[] OnEndGetUserData(System.IAsyncResult result) {
3044
            System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> retVal = this.EndGetUserData(result);
3045
            return new object[] {
3046
                    retVal};
3047
        }
3048
        
3049
        private void OnGetUserDataCompleted(object state) {
3050
            if ((this.GetUserDataCompleted != null)) {
3051
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3052
                this.GetUserDataCompleted(this, new GetUserDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3053
            }
3054
        }
3055
        
3056
        public void GetUserDataAsync(string ProjectNo, string UserID) {
3057
            this.GetUserDataAsync(ProjectNo, UserID, null);
3058
        }
3059
        
3060
        public void GetUserDataAsync(string ProjectNo, string UserID, object userState) {
3061
            if ((this.onBeginGetUserDataDelegate == null)) {
3062
                this.onBeginGetUserDataDelegate = new BeginOperationDelegate(this.OnBeginGetUserData);
3063
            }
3064
            if ((this.onEndGetUserDataDelegate == null)) {
3065
                this.onEndGetUserDataDelegate = new EndOperationDelegate(this.OnEndGetUserData);
3066
            }
3067
            if ((this.onGetUserDataCompletedDelegate == null)) {
3068
                this.onGetUserDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetUserDataCompleted);
3069
            }
3070
            base.InvokeAsync(this.onBeginGetUserDataDelegate, new object[] {
3071
                        ProjectNo,
3072
                        UserID}, this.onEndGetUserDataDelegate, this.onGetUserDataCompletedDelegate, userState);
3073
        }
3074
        
3075
        public System.Collections.Generic.List<string> GetDeptData(string UserDept) {
3076
            return base.Channel.GetDeptData(UserDept);
3077
        }
3078
        
3079
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3080
        public System.IAsyncResult BeginGetDeptData(string UserDept, System.AsyncCallback callback, object asyncState) {
3081
            return base.Channel.BeginGetDeptData(UserDept, callback, asyncState);
3082
        }
3083
        
3084
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3085
        public System.Collections.Generic.List<string> EndGetDeptData(System.IAsyncResult result) {
3086
            return base.Channel.EndGetDeptData(result);
3087
        }
3088
        
3089
        private System.IAsyncResult OnBeginGetDeptData(object[] inValues, System.AsyncCallback callback, object asyncState) {
3090
            string UserDept = ((string)(inValues[0]));
3091
            return this.BeginGetDeptData(UserDept, callback, asyncState);
3092
        }
3093
        
3094
        private object[] OnEndGetDeptData(System.IAsyncResult result) {
3095
            System.Collections.Generic.List<string> retVal = this.EndGetDeptData(result);
3096
            return new object[] {
3097
                    retVal};
3098
        }
3099
        
3100
        private void OnGetDeptDataCompleted(object state) {
3101
            if ((this.GetDeptDataCompleted != null)) {
3102
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3103
                this.GetDeptDataCompleted(this, new GetDeptDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3104
            }
3105
        }
3106
        
3107
        public void GetDeptDataAsync(string UserDept) {
3108
            this.GetDeptDataAsync(UserDept, null);
3109
        }
3110
        
3111
        public void GetDeptDataAsync(string UserDept, object userState) {
3112
            if ((this.onBeginGetDeptDataDelegate == null)) {
3113
                this.onBeginGetDeptDataDelegate = new BeginOperationDelegate(this.OnBeginGetDeptData);
3114
            }
3115
            if ((this.onEndGetDeptDataDelegate == null)) {
3116
                this.onEndGetDeptDataDelegate = new EndOperationDelegate(this.OnEndGetDeptData);
3117
            }
3118
            if ((this.onGetDeptDataCompletedDelegate == null)) {
3119
                this.onGetDeptDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDeptDataCompleted);
3120
            }
3121
            base.InvokeAsync(this.onBeginGetDeptDataDelegate, new object[] {
3122
                        UserDept}, this.onEndGetDeptDataDelegate, this.onGetDeptDataCompletedDelegate, userState);
3123
        }
3124
        
3125
        public bool DeleteMarkup(string ProjectNo, string MarkupInfoID) {
3126
            return base.Channel.DeleteMarkup(ProjectNo, MarkupInfoID);
3127
        }
3128
        
3129
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3130
        public System.IAsyncResult BeginDeleteMarkup(string ProjectNo, string MarkupInfoID, System.AsyncCallback callback, object asyncState) {
3131
            return base.Channel.BeginDeleteMarkup(ProjectNo, MarkupInfoID, callback, asyncState);
3132
        }
3133
        
3134
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3135
        public bool EndDeleteMarkup(System.IAsyncResult result) {
3136
            return base.Channel.EndDeleteMarkup(result);
3137
        }
3138
        
3139
        private System.IAsyncResult OnBeginDeleteMarkup(object[] inValues, System.AsyncCallback callback, object asyncState) {
3140
            string ProjectNo = ((string)(inValues[0]));
3141
            string MarkupInfoID = ((string)(inValues[1]));
3142
            return this.BeginDeleteMarkup(ProjectNo, MarkupInfoID, callback, asyncState);
3143
        }
3144
        
3145
        private object[] OnEndDeleteMarkup(System.IAsyncResult result) {
3146
            bool retVal = this.EndDeleteMarkup(result);
3147
            return new object[] {
3148
                    retVal};
3149
        }
3150
        
3151
        private void OnDeleteMarkupCompleted(object state) {
3152
            if ((this.DeleteMarkupCompleted != null)) {
3153
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3154
                this.DeleteMarkupCompleted(this, new DeleteMarkupCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3155
            }
3156
        }
3157
        
3158
        public void DeleteMarkupAsync(string ProjectNo, string MarkupInfoID) {
3159
            this.DeleteMarkupAsync(ProjectNo, MarkupInfoID, null);
3160
        }
3161
        
3162
        public void DeleteMarkupAsync(string ProjectNo, string MarkupInfoID, object userState) {
3163
            if ((this.onBeginDeleteMarkupDelegate == null)) {
3164
                this.onBeginDeleteMarkupDelegate = new BeginOperationDelegate(this.OnBeginDeleteMarkup);
3165
            }
3166
            if ((this.onEndDeleteMarkupDelegate == null)) {
3167
                this.onEndDeleteMarkupDelegate = new EndOperationDelegate(this.OnEndDeleteMarkup);
3168
            }
3169
            if ((this.onDeleteMarkupCompletedDelegate == null)) {
3170
                this.onDeleteMarkupCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDeleteMarkupCompleted);
3171
            }
3172
            base.InvokeAsync(this.onBeginDeleteMarkupDelegate, new object[] {
3173
                        ProjectNo,
3174
                        MarkupInfoID}, this.onEndDeleteMarkupDelegate, this.onDeleteMarkupCompletedDelegate, userState);
3175
        }
3176
        
3177
        public bool SetFavoriteVP(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag) {
3178
            return base.Channel.SetFavoriteVP(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag);
3179
        }
3180
        
3181
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3182
        public System.IAsyncResult BeginSetFavoriteVP(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag, System.AsyncCallback callback, object asyncState) {
3183
            return base.Channel.BeginSetFavoriteVP(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag, callback, asyncState);
3184
        }
3185
        
3186
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3187
        public bool EndSetFavoriteVP(System.IAsyncResult result) {
3188
            return base.Channel.EndSetFavoriteVP(result);
3189
        }
3190
        
3191
        private System.IAsyncResult OnBeginSetFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
3192
            string prjNo = ((string)(inValues[0]));
3193
            string userID = ((string)(inValues[1]));
3194
            string groupNo = ((string)(inValues[2]));
3195
            string docNo = ((string)(inValues[3]));
3196
            string rev = ((string)(inValues[4]));
3197
            int SavePageNo = ((int)(inValues[5]));
3198
            string documentItemID = ((string)(inValues[6]));
3199
            string VPDescription = ((string)(inValues[7]));
3200
            IKCOM.FAVORITE_FLAG flag = ((IKCOM.FAVORITE_FLAG)(inValues[8]));
3201
            return this.BeginSetFavoriteVP(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag, callback, asyncState);
3202
        }
3203
        
3204
        private object[] OnEndSetFavoriteVP(System.IAsyncResult result) {
3205
            bool retVal = this.EndSetFavoriteVP(result);
3206
            return new object[] {
3207
                    retVal};
3208
        }
3209
        
3210
        private void OnSetFavoriteVPCompleted(object state) {
3211
            if ((this.SetFavoriteVPCompleted != null)) {
3212
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3213
                this.SetFavoriteVPCompleted(this, new SetFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3214
            }
3215
        }
3216
        
3217
        public void SetFavoriteVPAsync(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag) {
3218
            this.SetFavoriteVPAsync(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag, null);
3219
        }
3220
        
3221
        public void SetFavoriteVPAsync(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag, object userState) {
3222
            if ((this.onBeginSetFavoriteVPDelegate == null)) {
3223
                this.onBeginSetFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginSetFavoriteVP);
3224
            }
3225
            if ((this.onEndSetFavoriteVPDelegate == null)) {
3226
                this.onEndSetFavoriteVPDelegate = new EndOperationDelegate(this.OnEndSetFavoriteVP);
3227
            }
3228
            if ((this.onSetFavoriteVPCompletedDelegate == null)) {
3229
                this.onSetFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetFavoriteVPCompleted);
3230
            }
3231
            base.InvokeAsync(this.onBeginSetFavoriteVPDelegate, new object[] {
3232
                        prjNo,
3233
                        userID,
3234
                        groupNo,
3235
                        docNo,
3236
                        rev,
3237
                        SavePageNo,
3238
                        documentItemID,
3239
                        VPDescription,
3240
                        flag}, this.onEndSetFavoriteVPDelegate, this.onSetFavoriteVPCompletedDelegate, userState);
3241
        }
3242
        
3243
        public bool SaveMarkupData(IKCOM.MarkupInfoItem UserState, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data) {
3244
            return base.Channel.SaveMarkupData(UserState, project_no, doc_id, user_id, mlmarkup_data);
3245
        }
3246
        
3247
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3248
        public System.IAsyncResult BeginSaveMarkupData(IKCOM.MarkupInfoItem UserState, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data, System.AsyncCallback callback, object asyncState) {
3249
            return base.Channel.BeginSaveMarkupData(UserState, project_no, doc_id, user_id, mlmarkup_data, callback, asyncState);
3250
        }
3251
        
3252
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3253
        public bool EndSaveMarkupData(System.IAsyncResult result) {
3254
            return base.Channel.EndSaveMarkupData(result);
3255
        }
3256
        
3257
        private System.IAsyncResult OnBeginSaveMarkupData(object[] inValues, System.AsyncCallback callback, object asyncState) {
3258
            IKCOM.MarkupInfoItem UserState = ((IKCOM.MarkupInfoItem)(inValues[0]));
3259
            string project_no = ((string)(inValues[1]));
3260
            string doc_id = ((string)(inValues[2]));
3261
            string user_id = ((string)(inValues[3]));
3262
            System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data = ((System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>)(inValues[4]));
3263
            return this.BeginSaveMarkupData(UserState, project_no, doc_id, user_id, mlmarkup_data, callback, asyncState);
3264
        }
3265
        
3266
        private object[] OnEndSaveMarkupData(System.IAsyncResult result) {
3267
            bool retVal = this.EndSaveMarkupData(result);
3268
            return new object[] {
3269
                    retVal};
3270
        }
3271
        
3272
        private void OnSaveMarkupDataCompleted(object state) {
3273
            if ((this.SaveMarkupDataCompleted != null)) {
3274
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3275
                this.SaveMarkupDataCompleted(this, new SaveMarkupDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3276
            }
3277
        }
3278
        
3279
        public void SaveMarkupDataAsync(IKCOM.MarkupInfoItem UserState, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data) {
3280
            this.SaveMarkupDataAsync(UserState, project_no, doc_id, user_id, mlmarkup_data, null);
3281
        }
3282
        
3283
        public void SaveMarkupDataAsync(IKCOM.MarkupInfoItem UserState, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data, object userState1) {
3284
            if ((this.onBeginSaveMarkupDataDelegate == null)) {
3285
                this.onBeginSaveMarkupDataDelegate = new BeginOperationDelegate(this.OnBeginSaveMarkupData);
3286
            }
3287
            if ((this.onEndSaveMarkupDataDelegate == null)) {
3288
                this.onEndSaveMarkupDataDelegate = new EndOperationDelegate(this.OnEndSaveMarkupData);
3289
            }
3290
            if ((this.onSaveMarkupDataCompletedDelegate == null)) {
3291
                this.onSaveMarkupDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveMarkupDataCompleted);
3292
            }
3293
            base.InvokeAsync(this.onBeginSaveMarkupDataDelegate, new object[] {
3294
                        UserState,
3295
                        project_no,
3296
                        doc_id,
3297
                        user_id,
3298
                        mlmarkup_data}, this.onEndSaveMarkupDataDelegate, this.onSaveMarkupDataCompletedDelegate, userState1);
3299
        }
3300
        
3301
        public bool SaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private) {
3302
            return base.Channel.SaveSymbol(symbol_private);
3303
        }
3304
        
3305
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3306
        public System.IAsyncResult BeginSaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private, System.AsyncCallback callback, object asyncState) {
3307
            return base.Channel.BeginSaveSymbol(symbol_private, callback, asyncState);
3308
        }
3309
        
3310
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3311
        public bool EndSaveSymbol(System.IAsyncResult result) {
3312
            return base.Channel.EndSaveSymbol(result);
3313
        }
3314
        
3315
        private System.IAsyncResult OnBeginSaveSymbol(object[] inValues, System.AsyncCallback callback, object asyncState) {
3316
            KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private = ((KCOMDataModel.DataModel.SYMBOL_PRIVATE)(inValues[0]));
3317
            return this.BeginSaveSymbol(symbol_private, callback, asyncState);
3318
        }
3319
        
3320
        private object[] OnEndSaveSymbol(System.IAsyncResult result) {
3321
            bool retVal = this.EndSaveSymbol(result);
3322
            return new object[] {
3323
                    retVal};
3324
        }
3325
        
3326
        private void OnSaveSymbolCompleted(object state) {
3327
            if ((this.SaveSymbolCompleted != null)) {
3328
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3329
                this.SaveSymbolCompleted(this, new SaveSymbolCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3330
            }
3331
        }
3332
        
3333
        public void SaveSymbolAsync(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private) {
3334
            this.SaveSymbolAsync(symbol_private, null);
3335
        }
3336
        
3337
        public void SaveSymbolAsync(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private, object userState) {
3338
            if ((this.onBeginSaveSymbolDelegate == null)) {
3339
                this.onBeginSaveSymbolDelegate = new BeginOperationDelegate(this.OnBeginSaveSymbol);
3340
            }
3341
            if ((this.onEndSaveSymbolDelegate == null)) {
3342
                this.onEndSaveSymbolDelegate = new EndOperationDelegate(this.OnEndSaveSymbol);
3343
            }
3344
            if ((this.onSaveSymbolCompletedDelegate == null)) {
3345
                this.onSaveSymbolCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveSymbolCompleted);
3346
            }
3347
            base.InvokeAsync(this.onBeginSaveSymbolDelegate, new object[] {
3348
                        symbol_private}, this.onEndSaveSymbolDelegate, this.onSaveSymbolCompletedDelegate, userState);
3349
        }
3350
        
3351
        public bool DeleteSymbol(string symbol_id) {
3352
            return base.Channel.DeleteSymbol(symbol_id);
3353
        }
3354
        
3355
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3356
        public System.IAsyncResult BeginDeleteSymbol(string symbol_id, System.AsyncCallback callback, object asyncState) {
3357
            return base.Channel.BeginDeleteSymbol(symbol_id, callback, asyncState);
3358
        }
3359
        
3360
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3361
        public bool EndDeleteSymbol(System.IAsyncResult result) {
3362
            return base.Channel.EndDeleteSymbol(result);
3363
        }
3364
        
3365
        private System.IAsyncResult OnBeginDeleteSymbol(object[] inValues, System.AsyncCallback callback, object asyncState) {
3366
            string symbol_id = ((string)(inValues[0]));
3367
            return this.BeginDeleteSymbol(symbol_id, callback, asyncState);
3368
        }
3369
        
3370
        private object[] OnEndDeleteSymbol(System.IAsyncResult result) {
3371
            bool retVal = this.EndDeleteSymbol(result);
3372
            return new object[] {
3373
                    retVal};
3374
        }
3375
        
3376
        private void OnDeleteSymbolCompleted(object state) {
3377
            if ((this.DeleteSymbolCompleted != null)) {
3378
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3379
                this.DeleteSymbolCompleted(this, new DeleteSymbolCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3380
            }
3381
        }
3382
        
3383
        public void DeleteSymbolAsync(string symbol_id) {
3384
            this.DeleteSymbolAsync(symbol_id, null);
3385
        }
3386
        
3387
        public void DeleteSymbolAsync(string symbol_id, object userState) {
3388
            if ((this.onBeginDeleteSymbolDelegate == null)) {
3389
                this.onBeginDeleteSymbolDelegate = new BeginOperationDelegate(this.OnBeginDeleteSymbol);
3390
            }
3391
            if ((this.onEndDeleteSymbolDelegate == null)) {
3392
                this.onEndDeleteSymbolDelegate = new EndOperationDelegate(this.OnEndDeleteSymbol);
3393
            }
3394
            if ((this.onDeleteSymbolCompletedDelegate == null)) {
3395
                this.onDeleteSymbolCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDeleteSymbolCompleted);
3396
            }
3397
            base.InvokeAsync(this.onBeginDeleteSymbolDelegate, new object[] {
3398
                        symbol_id}, this.onEndDeleteSymbolDelegate, this.onDeleteSymbolCompletedDelegate, userState);
3399
        }
3400
        
3401
        public bool RenameSymbol(string symbol_id, string name) {
3402
            return base.Channel.RenameSymbol(symbol_id, name);
3403
        }
3404
        
3405
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3406
        public System.IAsyncResult BeginRenameSymbol(string symbol_id, string name, System.AsyncCallback callback, object asyncState) {
3407
            return base.Channel.BeginRenameSymbol(symbol_id, name, callback, asyncState);
3408
        }
3409
        
3410
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3411
        public bool EndRenameSymbol(System.IAsyncResult result) {
3412
            return base.Channel.EndRenameSymbol(result);
3413
        }
3414
        
3415
        private System.IAsyncResult OnBeginRenameSymbol(object[] inValues, System.AsyncCallback callback, object asyncState) {
3416
            string symbol_id = ((string)(inValues[0]));
3417
            string name = ((string)(inValues[1]));
3418
            return this.BeginRenameSymbol(symbol_id, name, callback, asyncState);
3419
        }
3420
        
3421
        private object[] OnEndRenameSymbol(System.IAsyncResult result) {
3422
            bool retVal = this.EndRenameSymbol(result);
3423
            return new object[] {
3424
                    retVal};
3425
        }
3426
        
3427
        private void OnRenameSymbolCompleted(object state) {
3428
            if ((this.RenameSymbolCompleted != null)) {
3429
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3430
                this.RenameSymbolCompleted(this, new RenameSymbolCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3431
            }
3432
        }
3433
        
3434
        public void RenameSymbolAsync(string symbol_id, string name) {
3435
            this.RenameSymbolAsync(symbol_id, name, null);
3436
        }
3437
        
3438
        public void RenameSymbolAsync(string symbol_id, string name, object userState) {
3439
            if ((this.onBeginRenameSymbolDelegate == null)) {
3440
                this.onBeginRenameSymbolDelegate = new BeginOperationDelegate(this.OnBeginRenameSymbol);
3441
            }
3442
            if ((this.onEndRenameSymbolDelegate == null)) {
3443
                this.onEndRenameSymbolDelegate = new EndOperationDelegate(this.OnEndRenameSymbol);
3444
            }
3445
            if ((this.onRenameSymbolCompletedDelegate == null)) {
3446
                this.onRenameSymbolCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnRenameSymbolCompleted);
3447
            }
3448
            base.InvokeAsync(this.onBeginRenameSymbolDelegate, new object[] {
3449
                        symbol_id,
3450
                        name}, this.onEndRenameSymbolDelegate, this.onRenameSymbolCompletedDelegate, userState);
3451
        }
3452
        
3453
        public bool AddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
3454
            return base.Channel.AddCheckListHistory(project_no, Check_History);
3455
        }
3456
        
3457
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3458
        public System.IAsyncResult BeginAddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState) {
3459
            return base.Channel.BeginAddCheckListHistory(project_no, Check_History, callback, asyncState);
3460
        }
3461
        
3462
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3463
        public bool EndAddCheckListHistory(System.IAsyncResult result) {
3464
            return base.Channel.EndAddCheckListHistory(result);
3465
        }
3466
        
3467
        private System.IAsyncResult OnBeginAddCheckListHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
3468
            string project_no = ((string)(inValues[0]));
3469
            KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History = ((KCOMDataModel.DataModel.CHECK_LIST_HISTORY)(inValues[1]));
3470
            return this.BeginAddCheckListHistory(project_no, Check_History, callback, asyncState);
3471
        }
3472
        
3473
        private object[] OnEndAddCheckListHistory(System.IAsyncResult result) {
3474
            bool retVal = this.EndAddCheckListHistory(result);
3475
            return new object[] {
3476
                    retVal};
3477
        }
3478
        
3479
        private void OnAddCheckListHistoryCompleted(object state) {
3480
            if ((this.AddCheckListHistoryCompleted != null)) {
3481
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3482
                this.AddCheckListHistoryCompleted(this, new AddCheckListHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3483
            }
3484
        }
3485
        
3486
        public void AddCheckListHistoryAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
3487
            this.AddCheckListHistoryAsync(project_no, Check_History, null);
3488
        }
3489
        
3490
        public void AddCheckListHistoryAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, object userState) {
3491
            if ((this.onBeginAddCheckListHistoryDelegate == null)) {
3492
                this.onBeginAddCheckListHistoryDelegate = new BeginOperationDelegate(this.OnBeginAddCheckListHistory);
3493
            }
3494
            if ((this.onEndAddCheckListHistoryDelegate == null)) {
3495
                this.onEndAddCheckListHistoryDelegate = new EndOperationDelegate(this.OnEndAddCheckListHistory);
3496
            }
3497
            if ((this.onAddCheckListHistoryCompletedDelegate == null)) {
3498
                this.onAddCheckListHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddCheckListHistoryCompleted);
3499
            }
3500
            base.InvokeAsync(this.onBeginAddCheckListHistoryDelegate, new object[] {
3501
                        project_no,
3502
                        Check_History}, this.onEndAddCheckListHistoryDelegate, this.onAddCheckListHistoryCompletedDelegate, userState);
3503
        }
3504
        
3505
        public bool SaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
3506
            return base.Channel.SaveCheckListHistory(project_no, rev, Check_History);
3507
        }
3508
        
3509
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3510
        public System.IAsyncResult BeginSaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState) {
3511
            return base.Channel.BeginSaveCheckListHistory(project_no, rev, Check_History, callback, asyncState);
3512
        }
3513
        
3514
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3515
        public bool EndSaveCheckListHistory(System.IAsyncResult result) {
3516
            return base.Channel.EndSaveCheckListHistory(result);
3517
        }
3518
        
3519
        private System.IAsyncResult OnBeginSaveCheckListHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
3520
            string project_no = ((string)(inValues[0]));
3521
            string rev = ((string)(inValues[1]));
3522
            KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History = ((KCOMDataModel.DataModel.CHECK_LIST_HISTORY)(inValues[2]));
3523
            return this.BeginSaveCheckListHistory(project_no, rev, Check_History, callback, asyncState);
3524
        }
3525
        
3526
        private object[] OnEndSaveCheckListHistory(System.IAsyncResult result) {
3527
            bool retVal = this.EndSaveCheckListHistory(result);
3528
            return new object[] {
3529
                    retVal};
3530
        }
3531
        
3532
        private void OnSaveCheckListHistoryCompleted(object state) {
3533
            if ((this.SaveCheckListHistoryCompleted != null)) {
3534
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3535
                this.SaveCheckListHistoryCompleted(this, new SaveCheckListHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3536
            }
3537
        }
3538
        
3539
        public void SaveCheckListHistoryAsync(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
3540
            this.SaveCheckListHistoryAsync(project_no, rev, Check_History, null);
3541
        }
3542
        
3543
        public void SaveCheckListHistoryAsync(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, object userState) {
3544
            if ((this.onBeginSaveCheckListHistoryDelegate == null)) {
3545
                this.onBeginSaveCheckListHistoryDelegate = new BeginOperationDelegate(this.OnBeginSaveCheckListHistory);
3546
            }
3547
            if ((this.onEndSaveCheckListHistoryDelegate == null)) {
3548
                this.onEndSaveCheckListHistoryDelegate = new EndOperationDelegate(this.OnEndSaveCheckListHistory);
3549
            }
3550
            if ((this.onSaveCheckListHistoryCompletedDelegate == null)) {
3551
                this.onSaveCheckListHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveCheckListHistoryCompleted);
3552
            }
3553
            base.InvokeAsync(this.onBeginSaveCheckListHistoryDelegate, new object[] {
3554
                        project_no,
3555
                        rev,
3556
                        Check_History}, this.onEndSaveCheckListHistoryDelegate, this.onSaveCheckListHistoryCompletedDelegate, userState);
3557
        }
3558
        
3559
        public bool SaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
3560
            return base.Channel.SaveCheckList(project_no, _id, Check_value);
3561
        }
3562
        
3563
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3564
        public System.IAsyncResult BeginSaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState) {
3565
            return base.Channel.BeginSaveCheckList(project_no, _id, Check_value, callback, asyncState);
3566
        }
3567
        
3568
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3569
        public bool EndSaveCheckList(System.IAsyncResult result) {
3570
            return base.Channel.EndSaveCheckList(result);
3571
        }
3572
        
3573
        private System.IAsyncResult OnBeginSaveCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
3574
            string project_no = ((string)(inValues[0]));
3575
            string _id = ((string)(inValues[1]));
3576
            KCOMDataModel.DataModel.CHECK_LIST Check_value = ((KCOMDataModel.DataModel.CHECK_LIST)(inValues[2]));
3577
            return this.BeginSaveCheckList(project_no, _id, Check_value, callback, asyncState);
3578
        }
3579
        
3580
        private object[] OnEndSaveCheckList(System.IAsyncResult result) {
3581
            bool retVal = this.EndSaveCheckList(result);
3582
            return new object[] {
3583
                    retVal};
3584
        }
3585
        
3586
        private void OnSaveCheckListCompleted(object state) {
3587
            if ((this.SaveCheckListCompleted != null)) {
3588
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3589
                this.SaveCheckListCompleted(this, new SaveCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3590
            }
3591
        }
3592
        
3593
        public void SaveCheckListAsync(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
3594
            this.SaveCheckListAsync(project_no, _id, Check_value, null);
3595
        }
3596
        
3597
        public void SaveCheckListAsync(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value, object userState) {
3598
            if ((this.onBeginSaveCheckListDelegate == null)) {
3599
                this.onBeginSaveCheckListDelegate = new BeginOperationDelegate(this.OnBeginSaveCheckList);
3600
            }
3601
            if ((this.onEndSaveCheckListDelegate == null)) {
3602
                this.onEndSaveCheckListDelegate = new EndOperationDelegate(this.OnEndSaveCheckList);
3603
            }
3604
            if ((this.onSaveCheckListCompletedDelegate == null)) {
3605
                this.onSaveCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveCheckListCompleted);
3606
            }
3607
            base.InvokeAsync(this.onBeginSaveCheckListDelegate, new object[] {
3608
                        project_no,
3609
                        _id,
3610
                        Check_value}, this.onEndSaveCheckListDelegate, this.onSaveCheckListCompletedDelegate, userState);
3611
        }
3612
        
3613
        public bool AddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
3614
            return base.Channel.AddCheckList(project_no, Check_value);
3615
        }
3616
        
3617
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3618
        public System.IAsyncResult BeginAddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState) {
3619
            return base.Channel.BeginAddCheckList(project_no, Check_value, callback, asyncState);
3620
        }
3621
        
3622
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3623
        public bool EndAddCheckList(System.IAsyncResult result) {
3624
            return base.Channel.EndAddCheckList(result);
3625
        }
3626
        
3627
        private System.IAsyncResult OnBeginAddCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
3628
            string project_no = ((string)(inValues[0]));
3629
            KCOMDataModel.DataModel.CHECK_LIST Check_value = ((KCOMDataModel.DataModel.CHECK_LIST)(inValues[1]));
3630
            return this.BeginAddCheckList(project_no, Check_value, callback, asyncState);
3631
        }
3632
        
3633
        private object[] OnEndAddCheckList(System.IAsyncResult result) {
3634
            bool retVal = this.EndAddCheckList(result);
3635
            return new object[] {
3636
                    retVal};
3637
        }
3638
        
3639
        private void OnAddCheckListCompleted(object state) {
3640
            if ((this.AddCheckListCompleted != null)) {
3641
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3642
                this.AddCheckListCompleted(this, new AddCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3643
            }
3644
        }
3645
        
3646
        public void AddCheckListAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
3647
            this.AddCheckListAsync(project_no, Check_value, null);
3648
        }
3649
        
3650
        public void AddCheckListAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value, object userState) {
3651
            if ((this.onBeginAddCheckListDelegate == null)) {
3652
                this.onBeginAddCheckListDelegate = new BeginOperationDelegate(this.OnBeginAddCheckList);
3653
            }
3654
            if ((this.onEndAddCheckListDelegate == null)) {
3655
                this.onEndAddCheckListDelegate = new EndOperationDelegate(this.OnEndAddCheckList);
3656
            }
3657
            if ((this.onAddCheckListCompletedDelegate == null)) {
3658
                this.onAddCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddCheckListCompleted);
3659
            }
3660
            base.InvokeAsync(this.onBeginAddCheckListDelegate, new object[] {
3661
                        project_no,
3662
                        Check_value}, this.onEndAddCheckListDelegate, this.onAddCheckListCompletedDelegate, userState);
3663
        }
3664
        
3665
        public KCOMDataModel.DataModel.CHECK_LIST GetCheckList(string project_no, string _id) {
3666
            return base.Channel.GetCheckList(project_no, _id);
3667
        }
3668
        
3669
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3670
        public System.IAsyncResult BeginGetCheckList(string project_no, string _id, System.AsyncCallback callback, object asyncState) {
3671
            return base.Channel.BeginGetCheckList(project_no, _id, callback, asyncState);
3672
        }
3673
        
3674
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3675
        public KCOMDataModel.DataModel.CHECK_LIST EndGetCheckList(System.IAsyncResult result) {
3676
            return base.Channel.EndGetCheckList(result);
3677
        }
3678
        
3679
        private System.IAsyncResult OnBeginGetCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
3680
            string project_no = ((string)(inValues[0]));
3681
            string _id = ((string)(inValues[1]));
3682
            return this.BeginGetCheckList(project_no, _id, callback, asyncState);
3683
        }
3684
        
3685
        private object[] OnEndGetCheckList(System.IAsyncResult result) {
3686
            KCOMDataModel.DataModel.CHECK_LIST retVal = this.EndGetCheckList(result);
3687
            return new object[] {
3688
                    retVal};
3689
        }
3690
        
3691
        private void OnGetCheckListCompleted(object state) {
3692
            if ((this.GetCheckListCompleted != null)) {
3693
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3694
                this.GetCheckListCompleted(this, new GetCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3695
            }
3696
        }
3697
        
3698
        public void GetCheckListAsync(string project_no, string _id) {
3699
            this.GetCheckListAsync(project_no, _id, null);
3700
        }
3701
        
3702
        public void GetCheckListAsync(string project_no, string _id, object userState) {
3703
            if ((this.onBeginGetCheckListDelegate == null)) {
3704
                this.onBeginGetCheckListDelegate = new BeginOperationDelegate(this.OnBeginGetCheckList);
3705
            }
3706
            if ((this.onEndGetCheckListDelegate == null)) {
3707
                this.onEndGetCheckListDelegate = new EndOperationDelegate(this.OnEndGetCheckList);
3708
            }
3709
            if ((this.onGetCheckListCompletedDelegate == null)) {
3710
                this.onGetCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckListCompleted);
3711
            }
3712
            base.InvokeAsync(this.onBeginGetCheckListDelegate, new object[] {
3713
                        project_no,
3714
                        _id}, this.onEndGetCheckListDelegate, this.onGetCheckListCompletedDelegate, userState);
3715
        }
3716
        
3717
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> GetUserCheckList(string project_no, string user_id, string doc_no) {
3718
            return base.Channel.GetUserCheckList(project_no, user_id, doc_no);
3719
        }
3720
        
3721
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3722
        public System.IAsyncResult BeginGetUserCheckList(string project_no, string user_id, string doc_no, System.AsyncCallback callback, object asyncState) {
3723
            return base.Channel.BeginGetUserCheckList(project_no, user_id, doc_no, callback, asyncState);
3724
        }
3725
        
3726
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3727
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> EndGetUserCheckList(System.IAsyncResult result) {
3728
            return base.Channel.EndGetUserCheckList(result);
3729
        }
3730
        
3731
        private System.IAsyncResult OnBeginGetUserCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
3732
            string project_no = ((string)(inValues[0]));
3733
            string user_id = ((string)(inValues[1]));
3734
            string doc_no = ((string)(inValues[2]));
3735
            return this.BeginGetUserCheckList(project_no, user_id, doc_no, callback, asyncState);
3736
        }
3737
        
3738
        private object[] OnEndGetUserCheckList(System.IAsyncResult result) {
3739
            System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> retVal = this.EndGetUserCheckList(result);
3740
            return new object[] {
3741
                    retVal};
3742
        }
3743
        
3744
        private void OnGetUserCheckListCompleted(object state) {
3745
            if ((this.GetUserCheckListCompleted != null)) {
3746
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3747
                this.GetUserCheckListCompleted(this, new GetUserCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3748
            }
3749
        }
3750
        
3751
        public void GetUserCheckListAsync(string project_no, string user_id, string doc_no) {
3752
            this.GetUserCheckListAsync(project_no, user_id, doc_no, null);
3753
        }
3754
        
3755
        public void GetUserCheckListAsync(string project_no, string user_id, string doc_no, object userState) {
3756
            if ((this.onBeginGetUserCheckListDelegate == null)) {
3757
                this.onBeginGetUserCheckListDelegate = new BeginOperationDelegate(this.OnBeginGetUserCheckList);
3758
            }
3759
            if ((this.onEndGetUserCheckListDelegate == null)) {
3760
                this.onEndGetUserCheckListDelegate = new EndOperationDelegate(this.OnEndGetUserCheckList);
3761
            }
3762
            if ((this.onGetUserCheckListCompletedDelegate == null)) {
3763
                this.onGetUserCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetUserCheckListCompleted);
3764
            }
3765
            base.InvokeAsync(this.onBeginGetUserCheckListDelegate, new object[] {
3766
                        project_no,
3767
                        user_id,
3768
                        doc_no}, this.onEndGetUserCheckListDelegate, this.onGetUserCheckListCompletedDelegate, userState);
3769
        }
3770
        
3771
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> GetCheckListHistory(string project_no, string _id) {
3772
            return base.Channel.GetCheckListHistory(project_no, _id);
3773
        }
3774
        
3775
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3776
        public System.IAsyncResult BeginGetCheckListHistory(string project_no, string _id, System.AsyncCallback callback, object asyncState) {
3777
            return base.Channel.BeginGetCheckListHistory(project_no, _id, callback, asyncState);
3778
        }
3779
        
3780
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3781
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> EndGetCheckListHistory(System.IAsyncResult result) {
3782
            return base.Channel.EndGetCheckListHistory(result);
3783
        }
3784
        
3785
        private System.IAsyncResult OnBeginGetCheckListHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
3786
            string project_no = ((string)(inValues[0]));
3787
            string _id = ((string)(inValues[1]));
3788
            return this.BeginGetCheckListHistory(project_no, _id, callback, asyncState);
3789
        }
3790
        
3791
        private object[] OnEndGetCheckListHistory(System.IAsyncResult result) {
3792
            System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> retVal = this.EndGetCheckListHistory(result);
3793
            return new object[] {
3794
                    retVal};
3795
        }
3796
        
3797
        private void OnGetCheckListHistoryCompleted(object state) {
3798
            if ((this.GetCheckListHistoryCompleted != null)) {
3799
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3800
                this.GetCheckListHistoryCompleted(this, new GetCheckListHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3801
            }
3802
        }
3803
        
3804
        public void GetCheckListHistoryAsync(string project_no, string _id) {
3805
            this.GetCheckListHistoryAsync(project_no, _id, null);
3806
        }
3807
        
3808
        public void GetCheckListHistoryAsync(string project_no, string _id, object userState) {
3809
            if ((this.onBeginGetCheckListHistoryDelegate == null)) {
3810
                this.onBeginGetCheckListHistoryDelegate = new BeginOperationDelegate(this.OnBeginGetCheckListHistory);
3811
            }
3812
            if ((this.onEndGetCheckListHistoryDelegate == null)) {
3813
                this.onEndGetCheckListHistoryDelegate = new EndOperationDelegate(this.OnEndGetCheckListHistory);
3814
            }
3815
            if ((this.onGetCheckListHistoryCompletedDelegate == null)) {
3816
                this.onGetCheckListHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckListHistoryCompleted);
3817
            }
3818
            base.InvokeAsync(this.onBeginGetCheckListHistoryDelegate, new object[] {
3819
                        project_no,
3820
                        _id}, this.onEndGetCheckListHistoryDelegate, this.onGetCheckListHistoryCompletedDelegate, userState);
3821
        }
3822
        
3823
        public KCOMDataModel.DataModel.CHECK_LIST_HISTORY GetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev) {
3824
            return base.Channel.GetCheckListHistoryFirstOrDefault(project_no, checklist_id, rev);
3825
        }
3826
        
3827
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3828
        public System.IAsyncResult BeginGetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev, System.AsyncCallback callback, object asyncState) {
3829
            return base.Channel.BeginGetCheckListHistoryFirstOrDefault(project_no, checklist_id, rev, callback, asyncState);
3830
        }
3831
        
3832
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3833
        public KCOMDataModel.DataModel.CHECK_LIST_HISTORY EndGetCheckListHistoryFirstOrDefault(System.IAsyncResult result) {
3834
            return base.Channel.EndGetCheckListHistoryFirstOrDefault(result);
3835
        }
3836
        
3837
        private System.IAsyncResult OnBeginGetCheckListHistoryFirstOrDefault(object[] inValues, System.AsyncCallback callback, object asyncState) {
3838
            string project_no = ((string)(inValues[0]));
3839
            string checklist_id = ((string)(inValues[1]));
3840
            string rev = ((string)(inValues[2]));
3841
            return this.BeginGetCheckListHistoryFirstOrDefault(project_no, checklist_id, rev, callback, asyncState);
3842
        }
3843
        
3844
        private object[] OnEndGetCheckListHistoryFirstOrDefault(System.IAsyncResult result) {
3845
            KCOMDataModel.DataModel.CHECK_LIST_HISTORY retVal = this.EndGetCheckListHistoryFirstOrDefault(result);
3846
            return new object[] {
3847
                    retVal};
3848
        }
3849
        
3850
        private void OnGetCheckListHistoryFirstOrDefaultCompleted(object state) {
3851
            if ((this.GetCheckListHistoryFirstOrDefaultCompleted != null)) {
3852
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3853
                this.GetCheckListHistoryFirstOrDefaultCompleted(this, new GetCheckListHistoryFirstOrDefaultCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3854
            }
3855
        }
3856
        
3857
        public void GetCheckListHistoryFirstOrDefaultAsync(string project_no, string checklist_id, string rev) {
3858
            this.GetCheckListHistoryFirstOrDefaultAsync(project_no, checklist_id, rev, null);
3859
        }
3860
        
3861
        public void GetCheckListHistoryFirstOrDefaultAsync(string project_no, string checklist_id, string rev, object userState) {
3862
            if ((this.onBeginGetCheckListHistoryFirstOrDefaultDelegate == null)) {
3863
                this.onBeginGetCheckListHistoryFirstOrDefaultDelegate = new BeginOperationDelegate(this.OnBeginGetCheckListHistoryFirstOrDefault);
3864
            }
3865
            if ((this.onEndGetCheckListHistoryFirstOrDefaultDelegate == null)) {
3866
                this.onEndGetCheckListHistoryFirstOrDefaultDelegate = new EndOperationDelegate(this.OnEndGetCheckListHistoryFirstOrDefault);
3867
            }
3868
            if ((this.onGetCheckListHistoryFirstOrDefaultCompletedDelegate == null)) {
3869
                this.onGetCheckListHistoryFirstOrDefaultCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckListHistoryFirstOrDefaultCompleted);
3870
            }
3871
            base.InvokeAsync(this.onBeginGetCheckListHistoryFirstOrDefaultDelegate, new object[] {
3872
                        project_no,
3873
                        checklist_id,
3874
                        rev}, this.onEndGetCheckListHistoryFirstOrDefaultDelegate, this.onGetCheckListHistoryFirstOrDefaultCompletedDelegate, userState);
3875
        }
3876
        
3877
        public bool SavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage) {
3878
            return base.Channel.SavePageAngle(project_no, _mldocpage);
3879
        }
3880
        
3881
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3882
        public System.IAsyncResult BeginSavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage, System.AsyncCallback callback, object asyncState) {
3883
            return base.Channel.BeginSavePageAngle(project_no, _mldocpage, callback, asyncState);
3884
        }
3885
        
3886
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3887
        public bool EndSavePageAngle(System.IAsyncResult result) {
3888
            return base.Channel.EndSavePageAngle(result);
3889
        }
3890
        
3891
        private System.IAsyncResult OnBeginSavePageAngle(object[] inValues, System.AsyncCallback callback, object asyncState) {
3892
            string project_no = ((string)(inValues[0]));
3893
            System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage = ((System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE>)(inValues[1]));
3894
            return this.BeginSavePageAngle(project_no, _mldocpage, callback, asyncState);
3895
        }
3896
        
3897
        private object[] OnEndSavePageAngle(System.IAsyncResult result) {
3898
            bool retVal = this.EndSavePageAngle(result);
3899
            return new object[] {
3900
                    retVal};
3901
        }
3902
        
3903
        private void OnSavePageAngleCompleted(object state) {
3904
            if ((this.SavePageAngleCompleted != null)) {
3905
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3906
                this.SavePageAngleCompleted(this, new SavePageAngleCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3907
            }
3908
        }
3909
        
3910
        public void SavePageAngleAsync(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage) {
3911
            this.SavePageAngleAsync(project_no, _mldocpage, null);
3912
        }
3913
        
3914
        public void SavePageAngleAsync(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage, object userState) {
3915
            if ((this.onBeginSavePageAngleDelegate == null)) {
3916
                this.onBeginSavePageAngleDelegate = new BeginOperationDelegate(this.OnBeginSavePageAngle);
3917
            }
3918
            if ((this.onEndSavePageAngleDelegate == null)) {
3919
                this.onEndSavePageAngleDelegate = new EndOperationDelegate(this.OnEndSavePageAngle);
3920
            }
3921
            if ((this.onSavePageAngleCompletedDelegate == null)) {
3922
                this.onSavePageAngleCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSavePageAngleCompleted);
3923
            }
3924
            base.InvokeAsync(this.onBeginSavePageAngleDelegate, new object[] {
3925
                        project_no,
3926
                        _mldocpage}, this.onEndSavePageAngleDelegate, this.onSavePageAngleCompletedDelegate, userState);
3927
        }
3928
        
3929
        public KCOMDataModel.DataModel.MARKUP_INFO GetMarkupInfo(string project_no, string _id) {
3930
            return base.Channel.GetMarkupInfo(project_no, _id);
3931
        }
3932
        
3933
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3934
        public System.IAsyncResult BeginGetMarkupInfo(string project_no, string _id, System.AsyncCallback callback, object asyncState) {
3935
            return base.Channel.BeginGetMarkupInfo(project_no, _id, callback, asyncState);
3936
        }
3937
        
3938
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3939
        public KCOMDataModel.DataModel.MARKUP_INFO EndGetMarkupInfo(System.IAsyncResult result) {
3940
            return base.Channel.EndGetMarkupInfo(result);
3941
        }
3942
        
3943
        private System.IAsyncResult OnBeginGetMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
3944
            string project_no = ((string)(inValues[0]));
3945
            string _id = ((string)(inValues[1]));
3946
            return this.BeginGetMarkupInfo(project_no, _id, callback, asyncState);
3947
        }
3948
        
3949
        private object[] OnEndGetMarkupInfo(System.IAsyncResult result) {
3950
            KCOMDataModel.DataModel.MARKUP_INFO retVal = this.EndGetMarkupInfo(result);
3951
            return new object[] {
3952
                    retVal};
3953
        }
3954
        
3955
        private void OnGetMarkupInfoCompleted(object state) {
3956
            if ((this.GetMarkupInfoCompleted != null)) {
3957
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3958
                this.GetMarkupInfoCompleted(this, new GetMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3959
            }
3960
        }
3961
        
3962
        public void GetMarkupInfoAsync(string project_no, string _id) {
3963
            this.GetMarkupInfoAsync(project_no, _id, null);
3964
        }
3965
        
3966
        public void GetMarkupInfoAsync(string project_no, string _id, object userState) {
3967
            if ((this.onBeginGetMarkupInfoDelegate == null)) {
3968
                this.onBeginGetMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupInfo);
3969
            }
3970
            if ((this.onEndGetMarkupInfoDelegate == null)) {
3971
                this.onEndGetMarkupInfoDelegate = new EndOperationDelegate(this.OnEndGetMarkupInfo);
3972
            }
3973
            if ((this.onGetMarkupInfoCompletedDelegate == null)) {
3974
                this.onGetMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupInfoCompleted);
3975
            }
3976
            base.InvokeAsync(this.onBeginGetMarkupInfoDelegate, new object[] {
3977
                        project_no,
3978
                        _id}, this.onEndGetMarkupInfoDelegate, this.onGetMarkupInfoCompletedDelegate, userState);
3979
        }
3980
        
3981
        public System.Collections.Generic.List<string> GetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo) {
3982
            return base.Channel.GetMarkupDataListperPage(project_no, _markupinfoid, _pageNo);
3983
        }
3984
        
3985
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3986
        public System.IAsyncResult BeginGetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo, System.AsyncCallback callback, object asyncState) {
3987
            return base.Channel.BeginGetMarkupDataListperPage(project_no, _markupinfoid, _pageNo, callback, asyncState);
3988
        }
3989
        
3990
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3991
        public System.Collections.Generic.List<string> EndGetMarkupDataListperPage(System.IAsyncResult result) {
3992
            return base.Channel.EndGetMarkupDataListperPage(result);
3993
        }
3994
        
3995
        private System.IAsyncResult OnBeginGetMarkupDataListperPage(object[] inValues, System.AsyncCallback callback, object asyncState) {
3996
            string project_no = ((string)(inValues[0]));
3997
            string _markupinfoid = ((string)(inValues[1]));
3998
            int _pageNo = ((int)(inValues[2]));
3999
            return this.BeginGetMarkupDataListperPage(project_no, _markupinfoid, _pageNo, callback, asyncState);
4000
        }
4001
        
4002
        private object[] OnEndGetMarkupDataListperPage(System.IAsyncResult result) {
4003
            System.Collections.Generic.List<string> retVal = this.EndGetMarkupDataListperPage(result);
4004
            return new object[] {
4005
                    retVal};
4006
        }
4007
        
4008
        private void OnGetMarkupDataListperPageCompleted(object state) {
4009
            if ((this.GetMarkupDataListperPageCompleted != null)) {
4010
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4011
                this.GetMarkupDataListperPageCompleted(this, new GetMarkupDataListperPageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4012
            }
4013
        }
4014
        
4015
        public void GetMarkupDataListperPageAsync(string project_no, string _markupinfoid, int _pageNo) {
4016
            this.GetMarkupDataListperPageAsync(project_no, _markupinfoid, _pageNo, null);
4017
        }
4018
        
4019
        public void GetMarkupDataListperPageAsync(string project_no, string _markupinfoid, int _pageNo, object userState) {
4020
            if ((this.onBeginGetMarkupDataListperPageDelegate == null)) {
4021
                this.onBeginGetMarkupDataListperPageDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupDataListperPage);
4022
            }
4023
            if ((this.onEndGetMarkupDataListperPageDelegate == null)) {
4024
                this.onEndGetMarkupDataListperPageDelegate = new EndOperationDelegate(this.OnEndGetMarkupDataListperPage);
4025
            }
4026
            if ((this.onGetMarkupDataListperPageCompletedDelegate == null)) {
4027
                this.onGetMarkupDataListperPageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupDataListperPageCompleted);
4028
            }
4029
            base.InvokeAsync(this.onBeginGetMarkupDataListperPageDelegate, new object[] {
4030
                        project_no,
4031
                        _markupinfoid,
4032
                        _pageNo}, this.onEndGetMarkupDataListperPageDelegate, this.onGetMarkupDataListperPageCompletedDelegate, userState);
4033
        }
4034
        
4035
        public bool AddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value) {
4036
            return base.Channel.AddMarkupInfo(project_no, value);
4037
        }
4038
        
4039
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4040
        public System.IAsyncResult BeginAddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState) {
4041
            return base.Channel.BeginAddMarkupInfo(project_no, value, callback, asyncState);
4042
        }
4043
        
4044
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4045
        public bool EndAddMarkupInfo(System.IAsyncResult result) {
4046
            return base.Channel.EndAddMarkupInfo(result);
4047
        }
4048
        
4049
        private System.IAsyncResult OnBeginAddMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
4050
            string project_no = ((string)(inValues[0]));
4051
            KCOMDataModel.DataModel.MARKUP_INFO value = ((KCOMDataModel.DataModel.MARKUP_INFO)(inValues[1]));
4052
            return this.BeginAddMarkupInfo(project_no, value, callback, asyncState);
4053
        }
4054
        
4055
        private object[] OnEndAddMarkupInfo(System.IAsyncResult result) {
4056
            bool retVal = this.EndAddMarkupInfo(result);
4057
            return new object[] {
4058
                    retVal};
4059
        }
4060
        
4061
        private void OnAddMarkupInfoCompleted(object state) {
4062
            if ((this.AddMarkupInfoCompleted != null)) {
4063
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4064
                this.AddMarkupInfoCompleted(this, new AddMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4065
            }
4066
        }
4067
        
4068
        public void AddMarkupInfoAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value) {
4069
            this.AddMarkupInfoAsync(project_no, value, null);
4070
        }
4071
        
4072
        public void AddMarkupInfoAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value, object userState) {
4073
            if ((this.onBeginAddMarkupInfoDelegate == null)) {
4074
                this.onBeginAddMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginAddMarkupInfo);
4075
            }
4076
            if ((this.onEndAddMarkupInfoDelegate == null)) {
4077
                this.onEndAddMarkupInfoDelegate = new EndOperationDelegate(this.OnEndAddMarkupInfo);
4078
            }
4079
            if ((this.onAddMarkupInfoCompletedDelegate == null)) {
4080
                this.onAddMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMarkupInfoCompleted);
4081
            }
4082
            base.InvokeAsync(this.onBeginAddMarkupInfoDelegate, new object[] {
4083
                        project_no,
4084
                        value}, this.onEndAddMarkupInfoDelegate, this.onAddMarkupInfoCompletedDelegate, userState);
4085
        }
4086
        
4087
        public bool AddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value) {
4088
            return base.Channel.AddMarkupInfoVersion(project_no, value);
4089
        }
4090
        
4091
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4092
        public System.IAsyncResult BeginAddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value, System.AsyncCallback callback, object asyncState) {
4093
            return base.Channel.BeginAddMarkupInfoVersion(project_no, value, callback, asyncState);
4094
        }
4095
        
4096
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4097
        public bool EndAddMarkupInfoVersion(System.IAsyncResult result) {
4098
            return base.Channel.EndAddMarkupInfoVersion(result);
4099
        }
4100
        
4101
        private System.IAsyncResult OnBeginAddMarkupInfoVersion(object[] inValues, System.AsyncCallback callback, object asyncState) {
4102
            string project_no = ((string)(inValues[0]));
4103
            KCOMDataModel.DataModel.MARKUP_INFO_VERSION value = ((KCOMDataModel.DataModel.MARKUP_INFO_VERSION)(inValues[1]));
4104
            return this.BeginAddMarkupInfoVersion(project_no, value, callback, asyncState);
4105
        }
4106
        
4107
        private object[] OnEndAddMarkupInfoVersion(System.IAsyncResult result) {
4108
            bool retVal = this.EndAddMarkupInfoVersion(result);
4109
            return new object[] {
4110
                    retVal};
4111
        }
4112
        
4113
        private void OnAddMarkupInfoVersionCompleted(object state) {
4114
            if ((this.AddMarkupInfoVersionCompleted != null)) {
4115
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4116
                this.AddMarkupInfoVersionCompleted(this, new AddMarkupInfoVersionCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4117
            }
4118
        }
4119
        
4120
        public void AddMarkupInfoVersionAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value) {
4121
            this.AddMarkupInfoVersionAsync(project_no, value, null);
4122
        }
4123
        
4124
        public void AddMarkupInfoVersionAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value, object userState) {
4125
            if ((this.onBeginAddMarkupInfoVersionDelegate == null)) {
4126
                this.onBeginAddMarkupInfoVersionDelegate = new BeginOperationDelegate(this.OnBeginAddMarkupInfoVersion);
4127
            }
4128
            if ((this.onEndAddMarkupInfoVersionDelegate == null)) {
4129
                this.onEndAddMarkupInfoVersionDelegate = new EndOperationDelegate(this.OnEndAddMarkupInfoVersion);
4130
            }
4131
            if ((this.onAddMarkupInfoVersionCompletedDelegate == null)) {
4132
                this.onAddMarkupInfoVersionCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMarkupInfoVersionCompleted);
4133
            }
4134
            base.InvokeAsync(this.onBeginAddMarkupInfoVersionDelegate, new object[] {
4135
                        project_no,
4136
                        value}, this.onEndAddMarkupInfoVersionDelegate, this.onAddMarkupInfoVersionCompletedDelegate, userState);
4137
        }
4138
        
4139
        public bool AddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value) {
4140
            return base.Channel.AddMarkupData(project_no, value);
4141
        }
4142
        
4143
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4144
        public System.IAsyncResult BeginAddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value, System.AsyncCallback callback, object asyncState) {
4145
            return base.Channel.BeginAddMarkupData(project_no, value, callback, asyncState);
4146
        }
4147
        
4148
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4149
        public bool EndAddMarkupData(System.IAsyncResult result) {
4150
            return base.Channel.EndAddMarkupData(result);
4151
        }
4152
        
4153
        private System.IAsyncResult OnBeginAddMarkupData(object[] inValues, System.AsyncCallback callback, object asyncState) {
4154
            string project_no = ((string)(inValues[0]));
4155
            KCOMDataModel.DataModel.MARKUP_DATA value = ((KCOMDataModel.DataModel.MARKUP_DATA)(inValues[1]));
4156
            return this.BeginAddMarkupData(project_no, value, callback, asyncState);
4157
        }
4158
        
4159
        private object[] OnEndAddMarkupData(System.IAsyncResult result) {
4160
            bool retVal = this.EndAddMarkupData(result);
4161
            return new object[] {
4162
                    retVal};
4163
        }
4164
        
4165
        private void OnAddMarkupDataCompleted(object state) {
4166
            if ((this.AddMarkupDataCompleted != null)) {
4167
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4168
                this.AddMarkupDataCompleted(this, new AddMarkupDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4169
            }
4170
        }
4171
        
4172
        public void AddMarkupDataAsync(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value) {
4173
            this.AddMarkupDataAsync(project_no, value, null);
4174
        }
4175
        
4176
        public void AddMarkupDataAsync(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value, object userState) {
4177
            if ((this.onBeginAddMarkupDataDelegate == null)) {
4178
                this.onBeginAddMarkupDataDelegate = new BeginOperationDelegate(this.OnBeginAddMarkupData);
4179
            }
4180
            if ((this.onEndAddMarkupDataDelegate == null)) {
4181
                this.onEndAddMarkupDataDelegate = new EndOperationDelegate(this.OnEndAddMarkupData);
4182
            }
4183
            if ((this.onAddMarkupDataCompletedDelegate == null)) {
4184
                this.onAddMarkupDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMarkupDataCompleted);
4185
            }
4186
            base.InvokeAsync(this.onBeginAddMarkupDataDelegate, new object[] {
4187
                        project_no,
4188
                        value}, this.onEndAddMarkupDataDelegate, this.onAddMarkupDataCompletedDelegate, userState);
4189
        }
4190
        
4191
        public bool AvoidMarkupInfo(string project_no, string _doc_id) {
4192
            return base.Channel.AvoidMarkupInfo(project_no, _doc_id);
4193
        }
4194
        
4195
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4196
        public System.IAsyncResult BeginAvoidMarkupInfo(string project_no, string _doc_id, System.AsyncCallback callback, object asyncState) {
4197
            return base.Channel.BeginAvoidMarkupInfo(project_no, _doc_id, callback, asyncState);
4198
        }
4199
        
4200
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4201
        public bool EndAvoidMarkupInfo(System.IAsyncResult result) {
4202
            return base.Channel.EndAvoidMarkupInfo(result);
4203
        }
4204
        
4205
        private System.IAsyncResult OnBeginAvoidMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
4206
            string project_no = ((string)(inValues[0]));
4207
            string _doc_id = ((string)(inValues[1]));
4208
            return this.BeginAvoidMarkupInfo(project_no, _doc_id, callback, asyncState);
4209
        }
4210
        
4211
        private object[] OnEndAvoidMarkupInfo(System.IAsyncResult result) {
4212
            bool retVal = this.EndAvoidMarkupInfo(result);
4213
            return new object[] {
4214
                    retVal};
4215
        }
4216
        
4217
        private void OnAvoidMarkupInfoCompleted(object state) {
4218
            if ((this.AvoidMarkupInfoCompleted != null)) {
4219
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4220
                this.AvoidMarkupInfoCompleted(this, new AvoidMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4221
            }
4222
        }
4223
        
4224
        public void AvoidMarkupInfoAsync(string project_no, string _doc_id) {
4225
            this.AvoidMarkupInfoAsync(project_no, _doc_id, null);
4226
        }
4227
        
4228
        public void AvoidMarkupInfoAsync(string project_no, string _doc_id, object userState) {
4229
            if ((this.onBeginAvoidMarkupInfoDelegate == null)) {
4230
                this.onBeginAvoidMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginAvoidMarkupInfo);
4231
            }
4232
            if ((this.onEndAvoidMarkupInfoDelegate == null)) {
4233
                this.onEndAvoidMarkupInfoDelegate = new EndOperationDelegate(this.OnEndAvoidMarkupInfo);
4234
            }
4235
            if ((this.onAvoidMarkupInfoCompletedDelegate == null)) {
4236
                this.onAvoidMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAvoidMarkupInfoCompleted);
4237
            }
4238
            base.InvokeAsync(this.onBeginAvoidMarkupInfoDelegate, new object[] {
4239
                        project_no,
4240
                        _doc_id}, this.onEndAvoidMarkupInfoDelegate, this.onAvoidMarkupInfoCompletedDelegate, userState);
4241
        }
4242
        
4243
        public bool SaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value) {
4244
            return base.Channel.SaveMarkupInfo(project_no, _id, value);
4245
        }
4246
        
4247
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4248
        public System.IAsyncResult BeginSaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState) {
4249
            return base.Channel.BeginSaveMarkupInfo(project_no, _id, value, callback, asyncState);
4250
        }
4251
        
4252
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4253
        public bool EndSaveMarkupInfo(System.IAsyncResult result) {
4254
            return base.Channel.EndSaveMarkupInfo(result);
4255
        }
4256
        
4257
        private System.IAsyncResult OnBeginSaveMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
4258
            string project_no = ((string)(inValues[0]));
4259
            string _id = ((string)(inValues[1]));
4260
            KCOMDataModel.DataModel.MARKUP_INFO value = ((KCOMDataModel.DataModel.MARKUP_INFO)(inValues[2]));
4261
            return this.BeginSaveMarkupInfo(project_no, _id, value, callback, asyncState);
4262
        }
4263
        
4264
        private object[] OnEndSaveMarkupInfo(System.IAsyncResult result) {
4265
            bool retVal = this.EndSaveMarkupInfo(result);
4266
            return new object[] {
4267
                    retVal};
4268
        }
4269
        
4270
        private void OnSaveMarkupInfoCompleted(object state) {
4271
            if ((this.SaveMarkupInfoCompleted != null)) {
4272
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4273
                this.SaveMarkupInfoCompleted(this, new SaveMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4274
            }
4275
        }
4276
        
4277
        public void SaveMarkupInfoAsync(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value) {
4278
            this.SaveMarkupInfoAsync(project_no, _id, value, null);
4279
        }
4280
        
4281
        public void SaveMarkupInfoAsync(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value, object userState) {
4282
            if ((this.onBeginSaveMarkupInfoDelegate == null)) {
4283
                this.onBeginSaveMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginSaveMarkupInfo);
4284
            }
4285
            if ((this.onEndSaveMarkupInfoDelegate == null)) {
4286
                this.onEndSaveMarkupInfoDelegate = new EndOperationDelegate(this.OnEndSaveMarkupInfo);
4287
            }
4288
            if ((this.onSaveMarkupInfoCompletedDelegate == null)) {
4289
                this.onSaveMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveMarkupInfoCompleted);
4290
            }
4291
            base.InvokeAsync(this.onBeginSaveMarkupInfoDelegate, new object[] {
4292
                        project_no,
4293
                        _id,
4294
                        value}, this.onEndSaveMarkupInfoDelegate, this.onSaveMarkupInfoCompletedDelegate, userState);
4295
        }
4296
        
4297
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> GetMarkupDataList(string project_no, string _versionid) {
4298
            return base.Channel.GetMarkupDataList(project_no, _versionid);
4299
        }
4300
        
4301
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4302
        public System.IAsyncResult BeginGetMarkupDataList(string project_no, string _versionid, System.AsyncCallback callback, object asyncState) {
4303
            return base.Channel.BeginGetMarkupDataList(project_no, _versionid, callback, asyncState);
4304
        }
4305
        
4306
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4307
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndGetMarkupDataList(System.IAsyncResult result) {
4308
            return base.Channel.EndGetMarkupDataList(result);
4309
        }
4310
        
4311
        private System.IAsyncResult OnBeginGetMarkupDataList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4312
            string project_no = ((string)(inValues[0]));
4313
            string _versionid = ((string)(inValues[1]));
4314
            return this.BeginGetMarkupDataList(project_no, _versionid, callback, asyncState);
4315
        }
4316
        
4317
        private object[] OnEndGetMarkupDataList(System.IAsyncResult result) {
4318
            System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> retVal = this.EndGetMarkupDataList(result);
4319
            return new object[] {
4320
                    retVal};
4321
        }
4322
        
4323
        private void OnGetMarkupDataListCompleted(object state) {
4324
            if ((this.GetMarkupDataListCompleted != null)) {
4325
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4326
                this.GetMarkupDataListCompleted(this, new GetMarkupDataListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4327
            }
4328
        }
4329
        
4330
        public void GetMarkupDataListAsync(string project_no, string _versionid) {
4331
            this.GetMarkupDataListAsync(project_no, _versionid, null);
4332
        }
4333
        
4334
        public void GetMarkupDataListAsync(string project_no, string _versionid, object userState) {
4335
            if ((this.onBeginGetMarkupDataListDelegate == null)) {
4336
                this.onBeginGetMarkupDataListDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupDataList);
4337
            }
4338
            if ((this.onEndGetMarkupDataListDelegate == null)) {
4339
                this.onEndGetMarkupDataListDelegate = new EndOperationDelegate(this.OnEndGetMarkupDataList);
4340
            }
4341
            if ((this.onGetMarkupDataListCompletedDelegate == null)) {
4342
                this.onGetMarkupDataListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupDataListCompleted);
4343
            }
4344
            base.InvokeAsync(this.onBeginGetMarkupDataListDelegate, new object[] {
4345
                        project_no,
4346
                        _versionid}, this.onEndGetMarkupDataListDelegate, this.onGetMarkupDataListCompletedDelegate, userState);
4347
        }
4348
        
4349
        public bool Consolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
4350
            return base.Channel.Consolidate(project_no, _user_id, _doc_id, markupInfoItems);
4351
        }
4352
        
4353
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4354
        public System.IAsyncResult BeginConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, System.AsyncCallback callback, object asyncState) {
4355
            return base.Channel.BeginConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
4356
        }
4357
        
4358
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4359
        public bool EndConsolidate(System.IAsyncResult result) {
4360
            return base.Channel.EndConsolidate(result);
4361
        }
4362
        
4363
        private System.IAsyncResult OnBeginConsolidate(object[] inValues, System.AsyncCallback callback, object asyncState) {
4364
            string project_no = ((string)(inValues[0]));
4365
            string _user_id = ((string)(inValues[1]));
4366
            string _doc_id = ((string)(inValues[2]));
4367
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems = ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(inValues[3]));
4368
            return this.BeginConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
4369
        }
4370
        
4371
        private object[] OnEndConsolidate(System.IAsyncResult result) {
4372
            bool retVal = this.EndConsolidate(result);
4373
            return new object[] {
4374
                    retVal};
4375
        }
4376
        
4377
        private void OnConsolidateCompleted(object state) {
4378
            if ((this.ConsolidateCompleted != null)) {
4379
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4380
                this.ConsolidateCompleted(this, new ConsolidateCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4381
            }
4382
        }
4383
        
4384
        public void ConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
4385
            this.ConsolidateAsync(project_no, _user_id, _doc_id, markupInfoItems, null);
4386
        }
4387
        
4388
        public void ConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, object userState) {
4389
            if ((this.onBeginConsolidateDelegate == null)) {
4390
                this.onBeginConsolidateDelegate = new BeginOperationDelegate(this.OnBeginConsolidate);
4391
            }
4392
            if ((this.onEndConsolidateDelegate == null)) {
4393
                this.onEndConsolidateDelegate = new EndOperationDelegate(this.OnEndConsolidate);
4394
            }
4395
            if ((this.onConsolidateCompletedDelegate == null)) {
4396
                this.onConsolidateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnConsolidateCompleted);
4397
            }
4398
            base.InvokeAsync(this.onBeginConsolidateDelegate, new object[] {
4399
                        project_no,
4400
                        _user_id,
4401
                        _doc_id,
4402
                        markupInfoItems}, this.onEndConsolidateDelegate, this.onConsolidateCompletedDelegate, userState);
4403
        }
4404
        
4405
        public KCOMDataModel.DataModel.MEMBER GetMember(string project_no, string user_id) {
4406
            return base.Channel.GetMember(project_no, user_id);
4407
        }
4408
        
4409
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4410
        public System.IAsyncResult BeginGetMember(string project_no, string user_id, System.AsyncCallback callback, object asyncState) {
4411
            return base.Channel.BeginGetMember(project_no, user_id, callback, asyncState);
4412
        }
4413
        
4414
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4415
        public KCOMDataModel.DataModel.MEMBER EndGetMember(System.IAsyncResult result) {
4416
            return base.Channel.EndGetMember(result);
4417
        }
4418
        
4419
        private System.IAsyncResult OnBeginGetMember(object[] inValues, System.AsyncCallback callback, object asyncState) {
4420
            string project_no = ((string)(inValues[0]));
4421
            string user_id = ((string)(inValues[1]));
4422
            return this.BeginGetMember(project_no, user_id, callback, asyncState);
4423
        }
4424
        
4425
        private object[] OnEndGetMember(System.IAsyncResult result) {
4426
            KCOMDataModel.DataModel.MEMBER retVal = this.EndGetMember(result);
4427
            return new object[] {
4428
                    retVal};
4429
        }
4430
        
4431
        private void OnGetMemberCompleted(object state) {
4432
            if ((this.GetMemberCompleted != null)) {
4433
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4434
                this.GetMemberCompleted(this, new GetMemberCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4435
            }
4436
        }
4437
        
4438
        public void GetMemberAsync(string project_no, string user_id) {
4439
            this.GetMemberAsync(project_no, user_id, null);
4440
        }
4441
        
4442
        public void GetMemberAsync(string project_no, string user_id, object userState) {
4443
            if ((this.onBeginGetMemberDelegate == null)) {
4444
                this.onBeginGetMemberDelegate = new BeginOperationDelegate(this.OnBeginGetMember);
4445
            }
4446
            if ((this.onEndGetMemberDelegate == null)) {
4447
                this.onEndGetMemberDelegate = new EndOperationDelegate(this.OnEndGetMember);
4448
            }
4449
            if ((this.onGetMemberCompletedDelegate == null)) {
4450
                this.onGetMemberCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMemberCompleted);
4451
            }
4452
            base.InvokeAsync(this.onBeginGetMemberDelegate, new object[] {
4453
                        project_no,
4454
                        user_id}, this.onEndGetMemberDelegate, this.onGetMemberCompletedDelegate, userState);
4455
        }
4456
        
4457
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> GetSymbolList(string user_id) {
4458
            return base.Channel.GetSymbolList(user_id);
4459
        }
4460
        
4461
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4462
        public System.IAsyncResult BeginGetSymbolList(string user_id, System.AsyncCallback callback, object asyncState) {
4463
            return base.Channel.BeginGetSymbolList(user_id, callback, asyncState);
4464
        }
4465
        
4466
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4467
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> EndGetSymbolList(System.IAsyncResult result) {
4468
            return base.Channel.EndGetSymbolList(result);
4469
        }
4470
        
4471
        private System.IAsyncResult OnBeginGetSymbolList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4472
            string user_id = ((string)(inValues[0]));
4473
            return this.BeginGetSymbolList(user_id, callback, asyncState);
4474
        }
4475
        
4476
        private object[] OnEndGetSymbolList(System.IAsyncResult result) {
4477
            System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> retVal = this.EndGetSymbolList(result);
4478
            return new object[] {
4479
                    retVal};
4480
        }
4481
        
4482
        private void OnGetSymbolListCompleted(object state) {
4483
            if ((this.GetSymbolListCompleted != null)) {
4484
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4485
                this.GetSymbolListCompleted(this, new GetSymbolListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4486
            }
4487
        }
4488
        
4489
        public void GetSymbolListAsync(string user_id) {
4490
            this.GetSymbolListAsync(user_id, null);
4491
        }
4492
        
4493
        public void GetSymbolListAsync(string user_id, object userState) {
4494
            if ((this.onBeginGetSymbolListDelegate == null)) {
4495
                this.onBeginGetSymbolListDelegate = new BeginOperationDelegate(this.OnBeginGetSymbolList);
4496
            }
4497
            if ((this.onEndGetSymbolListDelegate == null)) {
4498
                this.onEndGetSymbolListDelegate = new EndOperationDelegate(this.OnEndGetSymbolList);
4499
            }
4500
            if ((this.onGetSymbolListCompletedDelegate == null)) {
4501
                this.onGetSymbolListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSymbolListCompleted);
4502
            }
4503
            base.InvokeAsync(this.onBeginGetSymbolListDelegate, new object[] {
4504
                        user_id}, this.onEndGetSymbolListDelegate, this.onGetSymbolListCompletedDelegate, userState);
4505
        }
4506
        
4507
        public System.Collections.Generic.List<string> GetPublicSymbolDeptList() {
4508
            return base.Channel.GetPublicSymbolDeptList();
4509
        }
4510
        
4511
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4512
        public System.IAsyncResult BeginGetPublicSymbolDeptList(System.AsyncCallback callback, object asyncState) {
4513
            return base.Channel.BeginGetPublicSymbolDeptList(callback, asyncState);
4514
        }
4515
        
4516
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4517
        public System.Collections.Generic.List<string> EndGetPublicSymbolDeptList(System.IAsyncResult result) {
4518
            return base.Channel.EndGetPublicSymbolDeptList(result);
4519
        }
4520
        
4521
        private System.IAsyncResult OnBeginGetPublicSymbolDeptList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4522
            return this.BeginGetPublicSymbolDeptList(callback, asyncState);
4523
        }
4524
        
4525
        private object[] OnEndGetPublicSymbolDeptList(System.IAsyncResult result) {
4526
            System.Collections.Generic.List<string> retVal = this.EndGetPublicSymbolDeptList(result);
4527
            return new object[] {
4528
                    retVal};
4529
        }
4530
        
4531
        private void OnGetPublicSymbolDeptListCompleted(object state) {
4532
            if ((this.GetPublicSymbolDeptListCompleted != null)) {
4533
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4534
                this.GetPublicSymbolDeptListCompleted(this, new GetPublicSymbolDeptListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4535
            }
4536
        }
4537
        
4538
        public void GetPublicSymbolDeptListAsync() {
4539
            this.GetPublicSymbolDeptListAsync(null);
4540
        }
4541
        
4542
        public void GetPublicSymbolDeptListAsync(object userState) {
4543
            if ((this.onBeginGetPublicSymbolDeptListDelegate == null)) {
4544
                this.onBeginGetPublicSymbolDeptListDelegate = new BeginOperationDelegate(this.OnBeginGetPublicSymbolDeptList);
4545
            }
4546
            if ((this.onEndGetPublicSymbolDeptListDelegate == null)) {
4547
                this.onEndGetPublicSymbolDeptListDelegate = new EndOperationDelegate(this.OnEndGetPublicSymbolDeptList);
4548
            }
4549
            if ((this.onGetPublicSymbolDeptListCompletedDelegate == null)) {
4550
                this.onGetPublicSymbolDeptListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPublicSymbolDeptListCompleted);
4551
            }
4552
            base.InvokeAsync(this.onBeginGetPublicSymbolDeptListDelegate, null, this.onEndGetPublicSymbolDeptListDelegate, this.onGetPublicSymbolDeptListCompletedDelegate, userState);
4553
        }
4554
        
4555
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> GetPublicSymbolList(string dept) {
4556
            return base.Channel.GetPublicSymbolList(dept);
4557
        }
4558
        
4559
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4560
        public System.IAsyncResult BeginGetPublicSymbolList(string dept, System.AsyncCallback callback, object asyncState) {
4561
            return base.Channel.BeginGetPublicSymbolList(dept, callback, asyncState);
4562
        }
4563
        
4564
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4565
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> EndGetPublicSymbolList(System.IAsyncResult result) {
4566
            return base.Channel.EndGetPublicSymbolList(result);
4567
        }
4568
        
4569
        private System.IAsyncResult OnBeginGetPublicSymbolList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4570
            string dept = ((string)(inValues[0]));
4571
            return this.BeginGetPublicSymbolList(dept, callback, asyncState);
4572
        }
4573
        
4574
        private object[] OnEndGetPublicSymbolList(System.IAsyncResult result) {
4575
            System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> retVal = this.EndGetPublicSymbolList(result);
4576
            return new object[] {
4577
                    retVal};
4578
        }
4579
        
4580
        private void OnGetPublicSymbolListCompleted(object state) {
4581
            if ((this.GetPublicSymbolListCompleted != null)) {
4582
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4583
                this.GetPublicSymbolListCompleted(this, new GetPublicSymbolListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4584
            }
4585
        }
4586
        
4587
        public void GetPublicSymbolListAsync(string dept) {
4588
            this.GetPublicSymbolListAsync(dept, null);
4589
        }
4590
        
4591
        public void GetPublicSymbolListAsync(string dept, object userState) {
4592
            if ((this.onBeginGetPublicSymbolListDelegate == null)) {
4593
                this.onBeginGetPublicSymbolListDelegate = new BeginOperationDelegate(this.OnBeginGetPublicSymbolList);
4594
            }
4595
            if ((this.onEndGetPublicSymbolListDelegate == null)) {
4596
                this.onEndGetPublicSymbolListDelegate = new EndOperationDelegate(this.OnEndGetPublicSymbolList);
4597
            }
4598
            if ((this.onGetPublicSymbolListCompletedDelegate == null)) {
4599
                this.onGetPublicSymbolListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPublicSymbolListCompleted);
4600
            }
4601
            base.InvokeAsync(this.onBeginGetPublicSymbolListDelegate, new object[] {
4602
                        dept}, this.onEndGetPublicSymbolListDelegate, this.onGetPublicSymbolListCompletedDelegate, userState);
4603
        }
4604
        
4605
        public string GetSymbolData(string id, int type) {
4606
            return base.Channel.GetSymbolData(id, type);
4607
        }
4608
        
4609
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4610
        public System.IAsyncResult BeginGetSymbolData(string id, int type, System.AsyncCallback callback, object asyncState) {
4611
            return base.Channel.BeginGetSymbolData(id, type, callback, asyncState);
4612
        }
4613
        
4614
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4615
        public string EndGetSymbolData(System.IAsyncResult result) {
4616
            return base.Channel.EndGetSymbolData(result);
4617
        }
4618
        
4619
        private System.IAsyncResult OnBeginGetSymbolData(object[] inValues, System.AsyncCallback callback, object asyncState) {
4620
            string id = ((string)(inValues[0]));
4621
            int type = ((int)(inValues[1]));
4622
            return this.BeginGetSymbolData(id, type, callback, asyncState);
4623
        }
4624
        
4625
        private object[] OnEndGetSymbolData(System.IAsyncResult result) {
4626
            string retVal = this.EndGetSymbolData(result);
4627
            return new object[] {
4628
                    retVal};
4629
        }
4630
        
4631
        private void OnGetSymbolDataCompleted(object state) {
4632
            if ((this.GetSymbolDataCompleted != null)) {
4633
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4634
                this.GetSymbolDataCompleted(this, new GetSymbolDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4635
            }
4636
        }
4637
        
4638
        public void GetSymbolDataAsync(string id, int type) {
4639
            this.GetSymbolDataAsync(id, type, null);
4640
        }
4641
        
4642
        public void GetSymbolDataAsync(string id, int type, object userState) {
4643
            if ((this.onBeginGetSymbolDataDelegate == null)) {
4644
                this.onBeginGetSymbolDataDelegate = new BeginOperationDelegate(this.OnBeginGetSymbolData);
4645
            }
4646
            if ((this.onEndGetSymbolDataDelegate == null)) {
4647
                this.onEndGetSymbolDataDelegate = new EndOperationDelegate(this.OnEndGetSymbolData);
4648
            }
4649
            if ((this.onGetSymbolDataCompletedDelegate == null)) {
4650
                this.onGetSymbolDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSymbolDataCompleted);
4651
            }
4652
            base.InvokeAsync(this.onBeginGetSymbolDataDelegate, new object[] {
4653
                        id,
4654
                        type}, this.onEndGetSymbolDataDelegate, this.onGetSymbolDataCompletedDelegate, userState);
4655
        }
4656
        
4657
        public string GetSignData(string project_no, string user_id) {
4658
            return base.Channel.GetSignData(project_no, user_id);
4659
        }
4660
        
4661
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4662
        public System.IAsyncResult BeginGetSignData(string project_no, string user_id, System.AsyncCallback callback, object asyncState) {
4663
            return base.Channel.BeginGetSignData(project_no, user_id, callback, asyncState);
4664
        }
4665
        
4666
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4667
        public string EndGetSignData(System.IAsyncResult result) {
4668
            return base.Channel.EndGetSignData(result);
4669
        }
4670
        
4671
        private System.IAsyncResult OnBeginGetSignData(object[] inValues, System.AsyncCallback callback, object asyncState) {
4672
            string project_no = ((string)(inValues[0]));
4673
            string user_id = ((string)(inValues[1]));
4674
            return this.BeginGetSignData(project_no, user_id, callback, asyncState);
4675
        }
4676
        
4677
        private object[] OnEndGetSignData(System.IAsyncResult result) {
4678
            string retVal = this.EndGetSignData(result);
4679
            return new object[] {
4680
                    retVal};
4681
        }
4682
        
4683
        private void OnGetSignDataCompleted(object state) {
4684
            if ((this.GetSignDataCompleted != null)) {
4685
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4686
                this.GetSignDataCompleted(this, new GetSignDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4687
            }
4688
        }
4689
        
4690
        public void GetSignDataAsync(string project_no, string user_id) {
4691
            this.GetSignDataAsync(project_no, user_id, null);
4692
        }
4693
        
4694
        public void GetSignDataAsync(string project_no, string user_id, object userState) {
4695
            if ((this.onBeginGetSignDataDelegate == null)) {
4696
                this.onBeginGetSignDataDelegate = new BeginOperationDelegate(this.OnBeginGetSignData);
4697
            }
4698
            if ((this.onEndGetSignDataDelegate == null)) {
4699
                this.onEndGetSignDataDelegate = new EndOperationDelegate(this.OnEndGetSignData);
4700
            }
4701
            if ((this.onGetSignDataCompletedDelegate == null)) {
4702
                this.onGetSignDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSignDataCompleted);
4703
            }
4704
            base.InvokeAsync(this.onBeginGetSignDataDelegate, new object[] {
4705
                        project_no,
4706
                        user_id}, this.onEndGetSignDataDelegate, this.onGetSignDataCompletedDelegate, userState);
4707
        }
4708
        
4709
        public string GetProjectName(string project_no) {
4710
            return base.Channel.GetProjectName(project_no);
4711
        }
4712
        
4713
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4714
        public System.IAsyncResult BeginGetProjectName(string project_no, System.AsyncCallback callback, object asyncState) {
4715
            return base.Channel.BeginGetProjectName(project_no, callback, asyncState);
4716
        }
4717
        
4718
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4719
        public string EndGetProjectName(System.IAsyncResult result) {
4720
            return base.Channel.EndGetProjectName(result);
4721
        }
4722
        
4723
        private System.IAsyncResult OnBeginGetProjectName(object[] inValues, System.AsyncCallback callback, object asyncState) {
4724
            string project_no = ((string)(inValues[0]));
4725
            return this.BeginGetProjectName(project_no, callback, asyncState);
4726
        }
4727
        
4728
        private object[] OnEndGetProjectName(System.IAsyncResult result) {
4729
            string retVal = this.EndGetProjectName(result);
4730
            return new object[] {
4731
                    retVal};
4732
        }
4733
        
4734
        private void OnGetProjectNameCompleted(object state) {
4735
            if ((this.GetProjectNameCompleted != null)) {
4736
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4737
                this.GetProjectNameCompleted(this, new GetProjectNameCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4738
            }
4739
        }
4740
        
4741
        public void GetProjectNameAsync(string project_no) {
4742
            this.GetProjectNameAsync(project_no, null);
4743
        }
4744
        
4745
        public void GetProjectNameAsync(string project_no, object userState) {
4746
            if ((this.onBeginGetProjectNameDelegate == null)) {
4747
                this.onBeginGetProjectNameDelegate = new BeginOperationDelegate(this.OnBeginGetProjectName);
4748
            }
4749
            if ((this.onEndGetProjectNameDelegate == null)) {
4750
                this.onEndGetProjectNameDelegate = new EndOperationDelegate(this.OnEndGetProjectName);
4751
            }
4752
            if ((this.onGetProjectNameCompletedDelegate == null)) {
4753
                this.onGetProjectNameCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetProjectNameCompleted);
4754
            }
4755
            base.InvokeAsync(this.onBeginGetProjectNameDelegate, new object[] {
4756
                        project_no}, this.onEndGetProjectNameDelegate, this.onGetProjectNameCompletedDelegate, userState);
4757
        }
4758
        
4759
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> GetPreRevSelect(string project_no, string doc_no, string current_rev) {
4760
            return base.Channel.GetPreRevSelect(project_no, doc_no, current_rev);
4761
        }
4762
        
4763
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4764
        public System.IAsyncResult BeginGetPreRevSelect(string project_no, string doc_no, string current_rev, System.AsyncCallback callback, object asyncState) {
4765
            return base.Channel.BeginGetPreRevSelect(project_no, doc_no, current_rev, callback, asyncState);
4766
        }
4767
        
4768
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4769
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> EndGetPreRevSelect(System.IAsyncResult result) {
4770
            return base.Channel.EndGetPreRevSelect(result);
4771
        }
4772
        
4773
        private System.IAsyncResult OnBeginGetPreRevSelect(object[] inValues, System.AsyncCallback callback, object asyncState) {
4774
            string project_no = ((string)(inValues[0]));
4775
            string doc_no = ((string)(inValues[1]));
4776
            string current_rev = ((string)(inValues[2]));
4777
            return this.BeginGetPreRevSelect(project_no, doc_no, current_rev, callback, asyncState);
4778
        }
4779
        
4780
        private object[] OnEndGetPreRevSelect(System.IAsyncResult result) {
4781
            System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> retVal = this.EndGetPreRevSelect(result);
4782
            return new object[] {
4783
                    retVal};
4784
        }
4785
        
4786
        private void OnGetPreRevSelectCompleted(object state) {
4787
            if ((this.GetPreRevSelectCompleted != null)) {
4788
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4789
                this.GetPreRevSelectCompleted(this, new GetPreRevSelectCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4790
            }
4791
        }
4792
        
4793
        public void GetPreRevSelectAsync(string project_no, string doc_no, string current_rev) {
4794
            this.GetPreRevSelectAsync(project_no, doc_no, current_rev, null);
4795
        }
4796
        
4797
        public void GetPreRevSelectAsync(string project_no, string doc_no, string current_rev, object userState) {
4798
            if ((this.onBeginGetPreRevSelectDelegate == null)) {
4799
                this.onBeginGetPreRevSelectDelegate = new BeginOperationDelegate(this.OnBeginGetPreRevSelect);
4800
            }
4801
            if ((this.onEndGetPreRevSelectDelegate == null)) {
4802
                this.onEndGetPreRevSelectDelegate = new EndOperationDelegate(this.OnEndGetPreRevSelect);
4803
            }
4804
            if ((this.onGetPreRevSelectCompletedDelegate == null)) {
4805
                this.onGetPreRevSelectCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPreRevSelectCompleted);
4806
            }
4807
            base.InvokeAsync(this.onBeginGetPreRevSelectDelegate, new object[] {
4808
                        project_no,
4809
                        doc_no,
4810
                        current_rev}, this.onEndGetPreRevSelectDelegate, this.onGetPreRevSelectCompletedDelegate, userState);
4811
        }
4812
        
4813
        public KCOMDataModel.DataModel.DOCINFO GetDocInfoOneSelect(string project_no, string doc_id) {
4814
            return base.Channel.GetDocInfoOneSelect(project_no, doc_id);
4815
        }
4816
        
4817
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4818
        public System.IAsyncResult BeginGetDocInfoOneSelect(string project_no, string doc_id, System.AsyncCallback callback, object asyncState) {
4819
            return base.Channel.BeginGetDocInfoOneSelect(project_no, doc_id, callback, asyncState);
4820
        }
4821
        
4822
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4823
        public KCOMDataModel.DataModel.DOCINFO EndGetDocInfoOneSelect(System.IAsyncResult result) {
4824
            return base.Channel.EndGetDocInfoOneSelect(result);
4825
        }
4826
        
4827
        private System.IAsyncResult OnBeginGetDocInfoOneSelect(object[] inValues, System.AsyncCallback callback, object asyncState) {
4828
            string project_no = ((string)(inValues[0]));
4829
            string doc_id = ((string)(inValues[1]));
4830
            return this.BeginGetDocInfoOneSelect(project_no, doc_id, callback, asyncState);
4831
        }
4832
        
4833
        private object[] OnEndGetDocInfoOneSelect(System.IAsyncResult result) {
4834
            KCOMDataModel.DataModel.DOCINFO retVal = this.EndGetDocInfoOneSelect(result);
4835
            return new object[] {
4836
                    retVal};
4837
        }
4838
        
4839
        private void OnGetDocInfoOneSelectCompleted(object state) {
4840
            if ((this.GetDocInfoOneSelectCompleted != null)) {
4841
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4842
                this.GetDocInfoOneSelectCompleted(this, new GetDocInfoOneSelectCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4843
            }
4844
        }
4845
        
4846
        public void GetDocInfoOneSelectAsync(string project_no, string doc_id) {
4847
            this.GetDocInfoOneSelectAsync(project_no, doc_id, null);
4848
        }
4849
        
4850
        public void GetDocInfoOneSelectAsync(string project_no, string doc_id, object userState) {
4851
            if ((this.onBeginGetDocInfoOneSelectDelegate == null)) {
4852
                this.onBeginGetDocInfoOneSelectDelegate = new BeginOperationDelegate(this.OnBeginGetDocInfoOneSelect);
4853
            }
4854
            if ((this.onEndGetDocInfoOneSelectDelegate == null)) {
4855
                this.onEndGetDocInfoOneSelectDelegate = new EndOperationDelegate(this.OnEndGetDocInfoOneSelect);
4856
            }
4857
            if ((this.onGetDocInfoOneSelectCompletedDelegate == null)) {
4858
                this.onGetDocInfoOneSelectCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocInfoOneSelectCompleted);
4859
            }
4860
            base.InvokeAsync(this.onBeginGetDocInfoOneSelectDelegate, new object[] {
4861
                        project_no,
4862
                        doc_id}, this.onEndGetDocInfoOneSelectDelegate, this.onGetDocInfoOneSelectCompletedDelegate, userState);
4863
        }
4864
        
4865
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList) {
4866
            return base.Channel.GetPrintDocItemList(project_no, doc_id, _markupInfoList);
4867
        }
4868
        
4869
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4870
        public System.IAsyncResult BeginGetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList, System.AsyncCallback callback, object asyncState) {
4871
            return base.Channel.BeginGetPrintDocItemList(project_no, doc_id, _markupInfoList, callback, asyncState);
4872
        }
4873
        
4874
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4875
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetPrintDocItemList(System.IAsyncResult result) {
4876
            return base.Channel.EndGetPrintDocItemList(result);
4877
        }
4878
        
4879
        private System.IAsyncResult OnBeginGetPrintDocItemList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4880
            string project_no = ((string)(inValues[0]));
4881
            string doc_id = ((string)(inValues[1]));
4882
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList = ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(inValues[2]));
4883
            return this.BeginGetPrintDocItemList(project_no, doc_id, _markupInfoList, callback, asyncState);
4884
        }
4885
        
4886
        private object[] OnEndGetPrintDocItemList(System.IAsyncResult result) {
4887
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> retVal = this.EndGetPrintDocItemList(result);
4888
            return new object[] {
4889
                    retVal};
4890
        }
4891
        
4892
        private void OnGetPrintDocItemListCompleted(object state) {
4893
            if ((this.GetPrintDocItemListCompleted != null)) {
4894
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4895
                this.GetPrintDocItemListCompleted(this, new GetPrintDocItemListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4896
            }
4897
        }
4898
        
4899
        public void GetPrintDocItemListAsync(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList) {
4900
            this.GetPrintDocItemListAsync(project_no, doc_id, _markupInfoList, null);
4901
        }
4902
        
4903
        public void GetPrintDocItemListAsync(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList, object userState) {
4904
            if ((this.onBeginGetPrintDocItemListDelegate == null)) {
4905
                this.onBeginGetPrintDocItemListDelegate = new BeginOperationDelegate(this.OnBeginGetPrintDocItemList);
4906
            }
4907
            if ((this.onEndGetPrintDocItemListDelegate == null)) {
4908
                this.onEndGetPrintDocItemListDelegate = new EndOperationDelegate(this.OnEndGetPrintDocItemList);
4909
            }
4910
            if ((this.onGetPrintDocItemListCompletedDelegate == null)) {
4911
                this.onGetPrintDocItemListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPrintDocItemListCompleted);
4912
            }
4913
            base.InvokeAsync(this.onBeginGetPrintDocItemListDelegate, new object[] {
4914
                        project_no,
4915
                        doc_id,
4916
                        _markupInfoList}, this.onEndGetPrintDocItemListDelegate, this.onGetPrintDocItemListCompletedDelegate, userState);
4917
        }
4918
    }
4919
}
클립보드 이미지 추가 (최대 크기: 500 MB)