프로젝트

일반

사용자정보

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

markus / KCOM / Connected Services / ServiceDeepView / Reference.cs @ 8118ba81

이력 | 보기 | 이력해설 | 다운로드 (387 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="FinalPDFResult", Namespace="http://schemas.datacontract.org/2004/07/IFinalPDF")]
19
    [System.SerializableAttribute()]
20
    public partial struct FinalPDFResult : System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
21
        
22
        [System.NonSerializedAttribute()]
23
        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
24
        
25
        private int CurrentPageField;
26
        
27
        private string ExceptionField;
28
        
29
        private string FinalIDField;
30
        
31
        private string ProjectNoField;
32
        
33
        private KCOM.ServiceDeepView.FinalStatus StatusField;
34
        
35
        public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
36
            get {
37
                return this.extensionDataField;
38
            }
39
            set {
40
                this.extensionDataField = value;
41
            }
42
        }
43
        
44
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
45
        public int CurrentPage {
46
            get {
47
                return this.CurrentPageField;
48
            }
49
            set {
50
                if ((this.CurrentPageField.Equals(value) != true)) {
51
                    this.CurrentPageField = value;
52
                    this.RaisePropertyChanged("CurrentPage");
53
                }
54
            }
55
        }
56
        
57
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
58
        public string Exception {
59
            get {
60
                return this.ExceptionField;
61
            }
62
            set {
63
                if ((object.ReferenceEquals(this.ExceptionField, value) != true)) {
64
                    this.ExceptionField = value;
65
                    this.RaisePropertyChanged("Exception");
66
                }
67
            }
68
        }
69
        
70
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
71
        public string FinalID {
72
            get {
73
                return this.FinalIDField;
74
            }
75
            set {
76
                if ((object.ReferenceEquals(this.FinalIDField, value) != true)) {
77
                    this.FinalIDField = value;
78
                    this.RaisePropertyChanged("FinalID");
79
                }
80
            }
81
        }
82
        
83
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
84
        public string ProjectNo {
85
            get {
86
                return this.ProjectNoField;
87
            }
88
            set {
89
                if ((object.ReferenceEquals(this.ProjectNoField, value) != true)) {
90
                    this.ProjectNoField = value;
91
                    this.RaisePropertyChanged("ProjectNo");
92
                }
93
            }
94
        }
95
        
96
        [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
97
        public KCOM.ServiceDeepView.FinalStatus Status {
98
            get {
99
                return this.StatusField;
100
            }
101
            set {
102
                if ((this.StatusField.Equals(value) != true)) {
103
                    this.StatusField = value;
104
                    this.RaisePropertyChanged("Status");
105
                }
106
            }
107
        }
108
        
109
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
110
        
111
        void RaisePropertyChanged(string propertyName) {
112
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
113
            if ((propertyChanged != null)) {
114
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
115
            }
116
        }
117
    }
118
    
119
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
120
    [System.Runtime.Serialization.DataContractAttribute(Name="FinalStatus", Namespace="http://schemas.datacontract.org/2004/07/IFinalPDF")]
121
    public enum FinalStatus : int {
122
        
123
        [System.Runtime.Serialization.EnumMemberAttribute()]
124
        Insert = 0,
125
        
126
        [System.Runtime.Serialization.EnumMemberAttribute()]
127
        Wait = 1,
128
        
129
        [System.Runtime.Serialization.EnumMemberAttribute()]
130
        Create = 2,
131
        
132
        [System.Runtime.Serialization.EnumMemberAttribute()]
133
        PdfStamp = 3,
134
        
135
        [System.Runtime.Serialization.EnumMemberAttribute()]
136
        Success = 4,
137
        
138
        [System.Runtime.Serialization.EnumMemberAttribute()]
139
        Error = 5,
140
    }
141
    
142
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
143
    [System.ServiceModel.ServiceContractAttribute(Namespace="", ConfigurationName="ServiceDeepView.ServiceDeepView")]
144
    public interface ServiceDeepView {
145
        
146
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetVersionData", ReplyAction="urn:ServiceDeepView/GetVersionDataResponse")]
147
        string GetVersionData(bool is64BitProcess, string markusVer);
148
        
149
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetVersionData", ReplyAction="urn:ServiceDeepView/GetVersionDataResponse")]
150
        System.IAsyncResult BeginGetVersionData(bool is64BitProcess, string markusVer, System.AsyncCallback callback, object asyncState);
151
        
152
        string EndGetVersionData(System.IAsyncResult result);
153
        
154
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSystemData", ReplyAction="urn:ServiceDeepView/GetSystemDataResponse")]
155
        IKCOM.KCOM_SystemInfo GetSystemData();
156
        
157
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSystemData", ReplyAction="urn:ServiceDeepView/GetSystemDataResponse")]
158
        System.IAsyncResult BeginGetSystemData(System.AsyncCallback callback, object asyncState);
159
        
160
        IKCOM.KCOM_SystemInfo EndGetSystemData(System.IAsyncResult result);
161
        
162
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetFavoriteVP", ReplyAction="urn:ServiceDeepView/GetFavoriteVPResponse")]
163
        System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> GetFavoriteVP(string PrjNo, string userID, string sharepointItemID);
164
        
165
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetFavoriteVP", ReplyAction="urn:ServiceDeepView/GetFavoriteVPResponse")]
166
        System.IAsyncResult BeginGetFavoriteVP(string PrjNo, string userID, string sharepointItemID, System.AsyncCallback callback, object asyncState);
167
        
168
        System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> EndGetFavoriteVP(System.IAsyncResult result);
169
        
170
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/EditFavoriteVP", ReplyAction="urn:ServiceDeepView/EditFavoriteVPResponse")]
171
        bool EditFavoriteVP(string prjNo, string userID, string docID, int state, string description);
172
        
173
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/EditFavoriteVP", ReplyAction="urn:ServiceDeepView/EditFavoriteVPResponse")]
174
        System.IAsyncResult BeginEditFavoriteVP(string prjNo, string userID, string docID, int state, string description, System.AsyncCallback callback, object asyncState);
175
        
176
        bool EndEditFavoriteVP(System.IAsyncResult result);
177
        
178
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/DelFavoriteVP", ReplyAction="urn:ServiceDeepView/DelFavoriteVPResponse")]
179
        bool DelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID);
180
        
181
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/DelFavoriteVP", ReplyAction="urn:ServiceDeepView/DelFavoriteVPResponse")]
182
        System.IAsyncResult BeginDelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID, System.AsyncCallback callback, object asyncState);
183
        
184
        bool EndDelFavoriteVP(System.IAsyncResult result);
185
        
186
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCompareRect", ReplyAction="urn:ServiceDeepView/GetCompareRectResponse")]
187
        System.Collections.Generic.List<System.Windows.Rect> GetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress);
188
        
189
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCompareRect", ReplyAction="urn:ServiceDeepView/GetCompareRectResponse")]
190
        System.IAsyncResult BeginGetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress, System.AsyncCallback callback, object asyncState);
191
        
192
        System.Collections.Generic.List<System.Windows.Rect> EndGetCompareRect(System.IAsyncResult result);
193
        
194
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetComparefixSize", ReplyAction="urn:ServiceDeepView/GetComparefixSizeResponse")]
195
        System.Collections.Generic.List<System.Windows.Rect> GetComparefixSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, System.Windows.Size FixSize, string isInternalAddress);
196
        
197
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetComparefixSize", ReplyAction="urn:ServiceDeepView/GetComparefixSizeResponse")]
198
        System.IAsyncResult BeginGetComparefixSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, System.Windows.Size FixSize, string isInternalAddress, System.AsyncCallback callback, object asyncState);
199
        
200
        System.Collections.Generic.List<System.Windows.Rect> EndGetComparefixSize(System.IAsyncResult result);
201
        
202
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetFinalPDF", ReplyAction="urn:ServiceDeepView/SetFinalPDFResponse")]
203
        KCOM.ServiceDeepView.FinalPDFResult SetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID);
204
        
205
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SetFinalPDF", ReplyAction="urn:ServiceDeepView/SetFinalPDFResponse")]
206
        System.IAsyncResult BeginSetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState);
207
        
208
        KCOM.ServiceDeepView.FinalPDFResult EndSetFinalPDF(System.IAsyncResult result);
209
        
210
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetConversionState", ReplyAction="urn:ServiceDeepView/GetConversionStateResponse")]
211
        bool GetConversionState(IKCOM.KCOM_BasicParam param);
212
        
213
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetConversionState", ReplyAction="urn:ServiceDeepView/GetConversionStateResponse")]
214
        System.IAsyncResult BeginGetConversionState(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState);
215
        
216
        bool EndGetConversionState(System.IAsyncResult result);
217
        
218
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetVPRevisionHistory", ReplyAction="urn:ServiceDeepView/GetVPRevisionHistoryResponse")]
219
        System.Collections.Generic.List<IKCOM.VPRevision> GetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId);
220
        
221
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetVPRevisionHistory", ReplyAction="urn:ServiceDeepView/GetVPRevisionHistoryResponse")]
222
        System.IAsyncResult BeginGetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId, System.AsyncCallback callback, object asyncState);
223
        
224
        System.Collections.Generic.List<IKCOM.VPRevision> EndGetVPRevisionHistory(System.IAsyncResult result);
225
        
226
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetVPRevisionFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetVPRevisionFirstOrDefaultResponse")]
227
        IKCOM.VPRevision GetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId);
228
        
229
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetVPRevisionFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetVPRevisionFirstOrDefaultResponse")]
230
        System.IAsyncResult BeginGetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId, System.AsyncCallback callback, object asyncState);
231
        
232
        IKCOM.VPRevision EndGetVPRevisionFirstOrDefault(System.IAsyncResult result);
233
        
234
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocInfo", ReplyAction="urn:ServiceDeepView/GetDocInfoResponse")]
235
        KCOMDataModel.DataModel.DOCINFO GetDocInfo(IKCOM.KCOM_BasicParam param);
236
        
237
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocInfo", ReplyAction="urn:ServiceDeepView/GetDocInfoResponse")]
238
        System.IAsyncResult BeginGetDocInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState);
239
        
240
        KCOMDataModel.DataModel.DOCINFO EndGetDocInfo(System.IAsyncResult result);
241
        
242
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckSystemAdmin", ReplyAction="urn:ServiceDeepView/GetCheckSystemAdminResponse")]
243
        bool GetCheckSystemAdmin(string UserID);
244
        
245
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckSystemAdmin", ReplyAction="urn:ServiceDeepView/GetCheckSystemAdminResponse")]
246
        System.IAsyncResult BeginGetCheckSystemAdmin(string UserID, System.AsyncCallback callback, object asyncState);
247
        
248
        bool EndGetCheckSystemAdmin(System.IAsyncResult result);
249
        
250
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocumentItemInfo", ReplyAction="urn:ServiceDeepView/GetDocumentItemInfoResponse")]
251
        KCOMDataModel.DataModel.DOCUMENT_ITEM GetDocumentItemInfo(IKCOM.KCOM_BasicParam param);
252
        
253
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocumentItemInfo", ReplyAction="urn:ServiceDeepView/GetDocumentItemInfoResponse")]
254
        System.IAsyncResult BeginGetDocumentItemInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState);
255
        
256
        KCOMDataModel.DataModel.DOCUMENT_ITEM EndGetDocumentItemInfo(System.IAsyncResult result);
257
        
258
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocItemID", ReplyAction="urn:ServiceDeepView/GetDocItemIDResponse")]
259
        string GetDocItemID(string ensemble_id);
260
        
261
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocItemID", ReplyAction="urn:ServiceDeepView/GetDocItemIDResponse")]
262
        System.IAsyncResult BeginGetDocItemID(string ensemble_id, System.AsyncCallback callback, object asyncState);
263
        
264
        string EndGetDocItemID(System.IAsyncResult result);
265
        
266
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsResponse")]
267
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId);
268
        
269
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetMarkupInfoItemsResponse")]
270
        System.IAsyncResult BeginGetMarkupInfoItems(string ProjectNo, string DocInfoId, System.AsyncCallback callback, object asyncState);
271
        
272
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetMarkupInfoItems(System.IAsyncResult result);
273
        
274
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSyncMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetSyncMarkupInfoItemsResponse")]
275
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser);
276
        
277
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSyncMarkupInfoItems", ReplyAction="urn:ServiceDeepView/GetSyncMarkupInfoItemsResponse")]
278
        System.IAsyncResult BeginGetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser, System.AsyncCallback callback, object asyncState);
279
        
280
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetSyncMarkupInfoItems(System.IAsyncResult result);
281
        
282
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetUserData", ReplyAction="urn:ServiceDeepView/GetUserDataResponse")]
283
        System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> GetUserData(string ProjectNo, string UserID);
284
        
285
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetUserData", ReplyAction="urn:ServiceDeepView/GetUserDataResponse")]
286
        System.IAsyncResult BeginGetUserData(string ProjectNo, string UserID, System.AsyncCallback callback, object asyncState);
287
        
288
        System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> EndGetUserData(System.IAsyncResult result);
289
        
290
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDeptData", ReplyAction="urn:ServiceDeepView/GetDeptDataResponse")]
291
        System.Collections.Generic.List<string> GetDeptData(string UserDept);
292
        
293
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDeptData", ReplyAction="urn:ServiceDeepView/GetDeptDataResponse")]
294
        System.IAsyncResult BeginGetDeptData(string UserDept, System.AsyncCallback callback, object asyncState);
295
        
296
        System.Collections.Generic.List<string> EndGetDeptData(System.IAsyncResult result);
297
        
298
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/DeleteMarkup", ReplyAction="urn:ServiceDeepView/DeleteMarkupResponse")]
299
        bool DeleteMarkup(string ProjectNo, string MarkupInfoID);
300
        
301
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/DeleteMarkup", ReplyAction="urn:ServiceDeepView/DeleteMarkupResponse")]
302
        System.IAsyncResult BeginDeleteMarkup(string ProjectNo, string MarkupInfoID, System.AsyncCallback callback, object asyncState);
303
        
304
        bool EndDeleteMarkup(System.IAsyncResult result);
305
        
306
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetFavoriteVP", ReplyAction="urn:ServiceDeepView/SetFavoriteVPResponse")]
307
        bool SetFavoriteVP(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag);
308
        
309
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SetFavoriteVP", ReplyAction="urn:ServiceDeepView/SetFavoriteVPResponse")]
310
        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);
311
        
312
        bool EndSetFavoriteVP(System.IAsyncResult result);
313
        
314
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveMarkupData", ReplyAction="urn:ServiceDeepView/SaveMarkupDataResponse")]
315
        bool SaveMarkupData(IKCOM.MarkupInfoItem UserState, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data);
316
        
317
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveMarkupData", ReplyAction="urn:ServiceDeepView/SaveMarkupDataResponse")]
318
        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);
319
        
320
        bool EndSaveMarkupData(System.IAsyncResult result);
321
        
322
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SavePageMarkupData", ReplyAction="urn:ServiceDeepView/SavePageMarkupDataResponse")]
323
        bool SavePageMarkupData(IKCOM.MarkupInfoItem UserState, int PageNo, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data);
324
        
325
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SavePageMarkupData", ReplyAction="urn:ServiceDeepView/SavePageMarkupDataResponse")]
326
        System.IAsyncResult BeginSavePageMarkupData(IKCOM.MarkupInfoItem UserState, int PageNo, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data, System.AsyncCallback callback, object asyncState);
327
        
328
        bool EndSavePageMarkupData(System.IAsyncResult result);
329
        
330
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/UpdateMarkupData", ReplyAction="urn:ServiceDeepView/UpdateMarkupDataResponse")]
331
        bool UpdateMarkupData(string CommentID, long Group_ID, string ProjectNo);
332
        
333
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/UpdateMarkupData", ReplyAction="urn:ServiceDeepView/UpdateMarkupDataResponse")]
334
        System.IAsyncResult BeginUpdateMarkupData(string CommentID, long Group_ID, string ProjectNo, System.AsyncCallback callback, object asyncState);
335
        
336
        bool EndUpdateMarkupData(System.IAsyncResult result);
337
        
338
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveSymbol", ReplyAction="urn:ServiceDeepView/SaveSymbolResponse")]
339
        bool SaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private);
340
        
341
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveSymbol", ReplyAction="urn:ServiceDeepView/SaveSymbolResponse")]
342
        System.IAsyncResult BeginSaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private, System.AsyncCallback callback, object asyncState);
343
        
344
        bool EndSaveSymbol(System.IAsyncResult result);
345
        
346
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddPublicSymbol", ReplyAction="urn:ServiceDeepView/AddPublicSymbolResponse")]
347
        bool AddPublicSymbol(KCOMDataModel.DataModel.SYMBOL_PUBLIC symbol);
348
        
349
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddPublicSymbol", ReplyAction="urn:ServiceDeepView/AddPublicSymbolResponse")]
350
        System.IAsyncResult BeginAddPublicSymbol(KCOMDataModel.DataModel.SYMBOL_PUBLIC symbol, System.AsyncCallback callback, object asyncState);
351
        
352
        bool EndAddPublicSymbol(System.IAsyncResult result);
353
        
354
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/DeleteSymbol", ReplyAction="urn:ServiceDeepView/DeleteSymbolResponse")]
355
        bool DeleteSymbol(string symbol_id, int type);
356
        
357
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/DeleteSymbol", ReplyAction="urn:ServiceDeepView/DeleteSymbolResponse")]
358
        System.IAsyncResult BeginDeleteSymbol(string symbol_id, int type, System.AsyncCallback callback, object asyncState);
359
        
360
        bool EndDeleteSymbol(System.IAsyncResult result);
361
        
362
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/RenameSymbol", ReplyAction="urn:ServiceDeepView/RenameSymbolResponse")]
363
        bool RenameSymbol(string symbol_id, string name, int type);
364
        
365
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/RenameSymbol", ReplyAction="urn:ServiceDeepView/RenameSymbolResponse")]
366
        System.IAsyncResult BeginRenameSymbol(string symbol_id, string name, int type, System.AsyncCallback callback, object asyncState);
367
        
368
        bool EndRenameSymbol(System.IAsyncResult result);
369
        
370
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddCheckListHistory", ReplyAction="urn:ServiceDeepView/AddCheckListHistoryResponse")]
371
        bool AddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History);
372
        
373
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddCheckListHistory", ReplyAction="urn:ServiceDeepView/AddCheckListHistoryResponse")]
374
        System.IAsyncResult BeginAddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState);
375
        
376
        bool EndAddCheckListHistory(System.IAsyncResult result);
377
        
378
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveCheckListHistory", ReplyAction="urn:ServiceDeepView/SaveCheckListHistoryResponse")]
379
        bool SaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History);
380
        
381
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveCheckListHistory", ReplyAction="urn:ServiceDeepView/SaveCheckListHistoryResponse")]
382
        System.IAsyncResult BeginSaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState);
383
        
384
        bool EndSaveCheckListHistory(System.IAsyncResult result);
385
        
386
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveCheckList", ReplyAction="urn:ServiceDeepView/SaveCheckListResponse")]
387
        bool SaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value);
388
        
389
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveCheckList", ReplyAction="urn:ServiceDeepView/SaveCheckListResponse")]
390
        System.IAsyncResult BeginSaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState);
391
        
392
        bool EndSaveCheckList(System.IAsyncResult result);
393
        
394
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddCheckList", ReplyAction="urn:ServiceDeepView/AddCheckListResponse")]
395
        bool AddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value);
396
        
397
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddCheckList", ReplyAction="urn:ServiceDeepView/AddCheckListResponse")]
398
        System.IAsyncResult BeginAddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState);
399
        
400
        bool EndAddCheckList(System.IAsyncResult result);
401
        
402
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckList", ReplyAction="urn:ServiceDeepView/GetCheckListResponse")]
403
        KCOMDataModel.DataModel.CHECK_LIST GetCheckList(string project_no, string _id);
404
        
405
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckList", ReplyAction="urn:ServiceDeepView/GetCheckListResponse")]
406
        System.IAsyncResult BeginGetCheckList(string project_no, string _id, System.AsyncCallback callback, object asyncState);
407
        
408
        KCOMDataModel.DataModel.CHECK_LIST EndGetCheckList(System.IAsyncResult result);
409
        
410
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetUserCheckList", ReplyAction="urn:ServiceDeepView/GetUserCheckListResponse")]
411
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> GetUserCheckList(string project_no, string user_id, string doc_no);
412
        
413
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetUserCheckList", ReplyAction="urn:ServiceDeepView/GetUserCheckListResponse")]
414
        System.IAsyncResult BeginGetUserCheckList(string project_no, string user_id, string doc_no, System.AsyncCallback callback, object asyncState);
415
        
416
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> EndGetUserCheckList(System.IAsyncResult result);
417
        
418
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckListHistory", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryResponse")]
419
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> GetCheckListHistory(string project_no, string _id);
420
        
421
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckListHistory", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryResponse")]
422
        System.IAsyncResult BeginGetCheckListHistory(string project_no, string _id, System.AsyncCallback callback, object asyncState);
423
        
424
        System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> EndGetCheckListHistory(System.IAsyncResult result);
425
        
426
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefaultResponse")]
427
        KCOMDataModel.DataModel.CHECK_LIST_HISTORY GetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev);
428
        
429
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefault", ReplyAction="urn:ServiceDeepView/GetCheckListHistoryFirstOrDefaultResponse")]
430
        System.IAsyncResult BeginGetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev, System.AsyncCallback callback, object asyncState);
431
        
432
        KCOMDataModel.DataModel.CHECK_LIST_HISTORY EndGetCheckListHistoryFirstOrDefault(System.IAsyncResult result);
433
        
434
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SavePageAngle", ReplyAction="urn:ServiceDeepView/SavePageAngleResponse")]
435
        bool SavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage);
436
        
437
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SavePageAngle", ReplyAction="urn:ServiceDeepView/SavePageAngleResponse")]
438
        System.IAsyncResult BeginSavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage, System.AsyncCallback callback, object asyncState);
439
        
440
        bool EndSavePageAngle(System.IAsyncResult result);
441
        
442
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupInfo", ReplyAction="urn:ServiceDeepView/GetMarkupInfoResponse")]
443
        KCOMDataModel.DataModel.MARKUP_INFO GetMarkupInfo(string project_no, string _id);
444
        
445
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupInfo", ReplyAction="urn:ServiceDeepView/GetMarkupInfoResponse")]
446
        System.IAsyncResult BeginGetMarkupInfo(string project_no, string _id, System.AsyncCallback callback, object asyncState);
447
        
448
        KCOMDataModel.DataModel.MARKUP_INFO EndGetMarkupInfo(System.IAsyncResult result);
449
        
450
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupDataListperPage", ReplyAction="urn:ServiceDeepView/GetMarkupDataListperPageResponse")]
451
        System.Collections.Generic.List<string> GetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo);
452
        
453
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupDataListperPage", ReplyAction="urn:ServiceDeepView/GetMarkupDataListperPageResponse")]
454
        System.IAsyncResult BeginGetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo, System.AsyncCallback callback, object asyncState);
455
        
456
        System.Collections.Generic.List<string> EndGetMarkupDataListperPage(System.IAsyncResult result);
457
        
458
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMarkupInfo", ReplyAction="urn:ServiceDeepView/AddMarkupInfoResponse")]
459
        bool AddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value);
460
        
461
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMarkupInfo", ReplyAction="urn:ServiceDeepView/AddMarkupInfoResponse")]
462
        System.IAsyncResult BeginAddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState);
463
        
464
        bool EndAddMarkupInfo(System.IAsyncResult result);
465
        
466
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMarkupInfoVersion", ReplyAction="urn:ServiceDeepView/AddMarkupInfoVersionResponse")]
467
        bool AddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value);
468
        
469
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMarkupInfoVersion", ReplyAction="urn:ServiceDeepView/AddMarkupInfoVersionResponse")]
470
        System.IAsyncResult BeginAddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value, System.AsyncCallback callback, object asyncState);
471
        
472
        bool EndAddMarkupInfoVersion(System.IAsyncResult result);
473
        
474
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMarkupData", ReplyAction="urn:ServiceDeepView/AddMarkupDataResponse")]
475
        bool AddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value);
476
        
477
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMarkupData", ReplyAction="urn:ServiceDeepView/AddMarkupDataResponse")]
478
        System.IAsyncResult BeginAddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value, System.AsyncCallback callback, object asyncState);
479
        
480
        bool EndAddMarkupData(System.IAsyncResult result);
481
        
482
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AvoidMarkupInfo", ReplyAction="urn:ServiceDeepView/AvoidMarkupInfoResponse")]
483
        bool AvoidMarkupInfo(string project_no, string _doc_id);
484
        
485
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AvoidMarkupInfo", ReplyAction="urn:ServiceDeepView/AvoidMarkupInfoResponse")]
486
        System.IAsyncResult BeginAvoidMarkupInfo(string project_no, string _doc_id, System.AsyncCallback callback, object asyncState);
487
        
488
        bool EndAvoidMarkupInfo(System.IAsyncResult result);
489
        
490
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveMarkupInfo", ReplyAction="urn:ServiceDeepView/SaveMarkupInfoResponse")]
491
        bool SaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value);
492
        
493
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveMarkupInfo", ReplyAction="urn:ServiceDeepView/SaveMarkupInfoResponse")]
494
        System.IAsyncResult BeginSaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState);
495
        
496
        bool EndSaveMarkupInfo(System.IAsyncResult result);
497
        
498
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMarkupDataList", ReplyAction="urn:ServiceDeepView/GetMarkupDataListResponse")]
499
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> GetMarkupDataList(string project_no, string _versionid);
500
        
501
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMarkupDataList", ReplyAction="urn:ServiceDeepView/GetMarkupDataListResponse")]
502
        System.IAsyncResult BeginGetMarkupDataList(string project_no, string _versionid, System.AsyncCallback callback, object asyncState);
503
        
504
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndGetMarkupDataList(System.IAsyncResult result);
505
        
506
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/Consolidate", ReplyAction="urn:ServiceDeepView/ConsolidateResponse")]
507
        bool Consolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems);
508
        
509
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/Consolidate", ReplyAction="urn:ServiceDeepView/ConsolidateResponse")]
510
        System.IAsyncResult BeginConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, System.AsyncCallback callback, object asyncState);
511
        
512
        bool EndConsolidate(System.IAsyncResult result);
513
        
514
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/ConsolidateMergedPDF", ReplyAction="urn:ServiceDeepView/ConsolidateMergedPDFResponse")]
515
        KCOM.ServiceDeepView.FinalPDFResult ConsolidateMergedPDF(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, string ProjectNo, string DocInfoID, string CreateUserID);
516
        
517
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/ConsolidateMergedPDF", ReplyAction="urn:ServiceDeepView/ConsolidateMergedPDFResponse")]
518
        System.IAsyncResult BeginConsolidateMergedPDF(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, string ProjectNo, string DocInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState);
519
        
520
        KCOM.ServiceDeepView.FinalPDFResult EndConsolidateMergedPDF(System.IAsyncResult result);
521
        
522
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/TeamConsolidate", ReplyAction="urn:ServiceDeepView/TeamConsolidateResponse")]
523
        bool TeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems);
524
        
525
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/TeamConsolidate", ReplyAction="urn:ServiceDeepView/TeamConsolidateResponse")]
526
        System.IAsyncResult BeginTeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, System.AsyncCallback callback, object asyncState);
527
        
528
        bool EndTeamConsolidate(System.IAsyncResult result);
529
        
530
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMember", ReplyAction="urn:ServiceDeepView/GetMemberResponse")]
531
        KCOMDataModel.DataModel.MEMBER GetMember(string project_no, string user_id);
532
        
533
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMember", ReplyAction="urn:ServiceDeepView/GetMemberResponse")]
534
        System.IAsyncResult BeginGetMember(string project_no, string user_id, System.AsyncCallback callback, object asyncState);
535
        
536
        KCOMDataModel.DataModel.MEMBER EndGetMember(System.IAsyncResult result);
537
        
538
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSymbolList", ReplyAction="urn:ServiceDeepView/GetSymbolListResponse")]
539
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> GetSymbolList(string user_id);
540
        
541
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSymbolList", ReplyAction="urn:ServiceDeepView/GetSymbolListResponse")]
542
        System.IAsyncResult BeginGetSymbolList(string user_id, System.AsyncCallback callback, object asyncState);
543
        
544
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> EndGetSymbolList(System.IAsyncResult result);
545
        
546
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPublicSymbolDeptList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolDeptListResponse")]
547
        System.Collections.Generic.List<string> GetPublicSymbolDeptList();
548
        
549
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPublicSymbolDeptList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolDeptListResponse")]
550
        System.IAsyncResult BeginGetPublicSymbolDeptList(System.AsyncCallback callback, object asyncState);
551
        
552
        System.Collections.Generic.List<string> EndGetPublicSymbolDeptList(System.IAsyncResult result);
553
        
554
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPublicSymbolList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolListResponse")]
555
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> GetPublicSymbolList(string dept);
556
        
557
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPublicSymbolList", ReplyAction="urn:ServiceDeepView/GetPublicSymbolListResponse")]
558
        System.IAsyncResult BeginGetPublicSymbolList(string dept, System.AsyncCallback callback, object asyncState);
559
        
560
        System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> EndGetPublicSymbolList(System.IAsyncResult result);
561
        
562
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSymbolData", ReplyAction="urn:ServiceDeepView/GetSymbolDataResponse")]
563
        string GetSymbolData(string id, int type);
564
        
565
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSymbolData", ReplyAction="urn:ServiceDeepView/GetSymbolDataResponse")]
566
        System.IAsyncResult BeginGetSymbolData(string id, int type, System.AsyncCallback callback, object asyncState);
567
        
568
        string EndGetSymbolData(System.IAsyncResult result);
569
        
570
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSymbolImageURL", ReplyAction="urn:ServiceDeepView/GetSymbolImageURLResponse")]
571
        string GetSymbolImageURL(string id, int type);
572
        
573
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSymbolImageURL", ReplyAction="urn:ServiceDeepView/GetSymbolImageURLResponse")]
574
        System.IAsyncResult BeginGetSymbolImageURL(string id, int type, System.AsyncCallback callback, object asyncState);
575
        
576
        string EndGetSymbolImageURL(System.IAsyncResult result);
577
        
578
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSignData", ReplyAction="urn:ServiceDeepView/GetSignDataResponse")]
579
        string GetSignData(string project_no, string user_id);
580
        
581
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSignData", ReplyAction="urn:ServiceDeepView/GetSignDataResponse")]
582
        System.IAsyncResult BeginGetSignData(string project_no, string user_id, System.AsyncCallback callback, object asyncState);
583
        
584
        string EndGetSignData(System.IAsyncResult result);
585
        
586
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetSignStrokes", ReplyAction="urn:ServiceDeepView/GetSignStrokesResponse")]
587
        string GetSignStrokes(string project_no, string user_id);
588
        
589
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetSignStrokes", ReplyAction="urn:ServiceDeepView/GetSignStrokesResponse")]
590
        System.IAsyncResult BeginGetSignStrokes(string project_no, string user_id, System.AsyncCallback callback, object asyncState);
591
        
592
        string EndGetSignStrokes(System.IAsyncResult result);
593
        
594
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetSignData", ReplyAction="urn:ServiceDeepView/SetSignDataResponse")]
595
        int SetSignData(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight);
596
        
597
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SetSignData", ReplyAction="urn:ServiceDeepView/SetSignDataResponse")]
598
        System.IAsyncResult BeginSetSignData(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight, System.AsyncCallback callback, object asyncState);
599
        
600
        int EndSetSignData(System.IAsyncResult result);
601
        
602
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SetSignStrokes", ReplyAction="urn:ServiceDeepView/SetSignStrokesResponse")]
603
        int SetSignStrokes(string user_id, string strokesData);
604
        
605
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SetSignStrokes", ReplyAction="urn:ServiceDeepView/SetSignStrokesResponse")]
606
        System.IAsyncResult BeginSetSignStrokes(string user_id, string strokesData, System.AsyncCallback callback, object asyncState);
607
        
608
        int EndSetSignStrokes(System.IAsyncResult result);
609
        
610
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetProjectName", ReplyAction="urn:ServiceDeepView/GetProjectNameResponse")]
611
        string GetProjectName(string project_no);
612
        
613
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetProjectName", ReplyAction="urn:ServiceDeepView/GetProjectNameResponse")]
614
        System.IAsyncResult BeginGetProjectName(string project_no, System.AsyncCallback callback, object asyncState);
615
        
616
        string EndGetProjectName(System.IAsyncResult result);
617
        
618
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPreRevSelect", ReplyAction="urn:ServiceDeepView/GetPreRevSelectResponse")]
619
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> GetPreRevSelect(string project_no, string doc_no, string current_rev);
620
        
621
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPreRevSelect", ReplyAction="urn:ServiceDeepView/GetPreRevSelectResponse")]
622
        System.IAsyncResult BeginGetPreRevSelect(string project_no, string doc_no, string current_rev, System.AsyncCallback callback, object asyncState);
623
        
624
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> EndGetPreRevSelect(System.IAsyncResult result);
625
        
626
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetDocInfoOneSelect", ReplyAction="urn:ServiceDeepView/GetDocInfoOneSelectResponse")]
627
        KCOMDataModel.DataModel.DOCINFO GetDocInfoOneSelect(string project_no, string doc_id);
628
        
629
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetDocInfoOneSelect", ReplyAction="urn:ServiceDeepView/GetDocInfoOneSelectResponse")]
630
        System.IAsyncResult BeginGetDocInfoOneSelect(string project_no, string doc_id, System.AsyncCallback callback, object asyncState);
631
        
632
        KCOMDataModel.DataModel.DOCINFO EndGetDocInfoOneSelect(System.IAsyncResult result);
633
        
634
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetPrintDocItemList", ReplyAction="urn:ServiceDeepView/GetPrintDocItemListResponse")]
635
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList);
636
        
637
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetPrintDocItemList", ReplyAction="urn:ServiceDeepView/GetPrintDocItemListResponse")]
638
        System.IAsyncResult BeginGetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList, System.AsyncCallback callback, object asyncState);
639
        
640
        System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetPrintDocItemList(System.IAsyncResult result);
641
        
642
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/AddMessage", ReplyAction="urn:ServiceDeepView/AddMessageResponse")]
643
        bool AddMessage(string project_no, KCOMDataModel.DataModel.TALK value);
644
        
645
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/AddMessage", ReplyAction="urn:ServiceDeepView/AddMessageResponse")]
646
        System.IAsyncResult BeginAddMessage(string project_no, KCOMDataModel.DataModel.TALK value, System.AsyncCallback callback, object asyncState);
647
        
648
        bool EndAddMessage(System.IAsyncResult result);
649
        
650
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/GetMessage", ReplyAction="urn:ServiceDeepView/GetMessageResponse")]
651
        System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> GetMessage(string project_no, string doc_id);
652
        
653
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/GetMessage", ReplyAction="urn:ServiceDeepView/GetMessageResponse")]
654
        System.IAsyncResult BeginGetMessage(string project_no, string doc_id, System.AsyncCallback callback, object asyncState);
655
        
656
        System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> EndGetMessage(System.IAsyncResult result);
657
        
658
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetDocinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocinfoResponse")]
659
        KCOMDataModel.DataModel.DOCINFO FinalPDF_GetDocinfo(string project_no, string docinfo_id);
660
        
661
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetDocinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocinfoResponse")]
662
        System.IAsyncResult BeginFinalPDF_GetDocinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
663
        
664
        KCOMDataModel.DataModel.DOCINFO EndFinalPDF_GetDocinfo(System.IAsyncResult result);
665
        
666
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetDocumentItem", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocumentItemResponse")]
667
        KCOMDataModel.DataModel.DOCUMENT_ITEM FinalPDF_GetDocumentItem(string project_no, string document_id);
668
        
669
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetDocumentItem", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocumentItemResponse")]
670
        System.IAsyncResult BeginFinalPDF_GetDocumentItem(string project_no, string document_id, System.AsyncCallback callback, object asyncState);
671
        
672
        KCOMDataModel.DataModel.DOCUMENT_ITEM EndFinalPDF_GetDocumentItem(System.IAsyncResult result);
673
        
674
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetMarkupdata", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupdataResponse")]
675
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> FinalPDF_GetMarkupdata(string project_no, string docinfo_id);
676
        
677
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetMarkupdata", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupdataResponse")]
678
        System.IAsyncResult BeginFinalPDF_GetMarkupdata(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
679
        
680
        System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndFinalPDF_GetMarkupdata(System.IAsyncResult result);
681
        
682
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetMarkupinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupinfoResponse")]
683
        KCOMDataModel.DataModel.MARKUP_INFO FinalPDF_GetMarkupinfo(string project_no, string docinfo_id);
684
        
685
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetMarkupinfo", ReplyAction="urn:ServiceDeepView/FinalPDF_GetMarkupinfoResponse")]
686
        System.IAsyncResult BeginFinalPDF_GetMarkupinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
687
        
688
        KCOMDataModel.DataModel.MARKUP_INFO EndFinalPDF_GetMarkupinfo(System.IAsyncResult result);
689
        
690
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetFinalPDFs", ReplyAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFsResponse")]
691
        System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> FinalPDF_GetFinalPDFs(string final_id);
692
        
693
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetFinalPDFs", ReplyAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFsResponse")]
694
        System.IAsyncResult BeginFinalPDF_GetFinalPDFs(string final_id, System.AsyncCallback callback, object asyncState);
695
        
696
        System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> EndFinalPDF_GetFinalPDFs(System.IAsyncResult result);
697
        
698
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetDocpage", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocpageResponse")]
699
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> FinalPDF_GetDocpage(string project_no, string docinfo_id);
700
        
701
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetDocpage", ReplyAction="urn:ServiceDeepView/FinalPDF_GetDocpageResponse")]
702
        System.IAsyncResult BeginFinalPDF_GetDocpage(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState);
703
        
704
        System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> EndFinalPDF_GetDocpage(System.IAsyncResult result);
705
        
706
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatus", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatusResponse")]
707
        bool FinalPDF_SetFinalPDFStatus(string final_id, KCOM.ServiceDeepView.FinalStatus status);
708
        
709
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatus", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalPDFStatusResponse")]
710
        System.IAsyncResult BeginFinalPDF_SetFinalPDFStatus(string final_id, KCOM.ServiceDeepView.FinalStatus status, System.AsyncCallback callback, object asyncState);
711
        
712
        bool EndFinalPDF_SetFinalPDFStatus(System.IAsyncResult result);
713
        
714
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetFinalPDFStatus", ReplyAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFStatusResponse")]
715
        bool FinalPDF_GetFinalPDFStatus(string DocInfoID, string MarkupInfoID, string CreateUserID);
716
        
717
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetFinalPDFStatus", ReplyAction="urn:ServiceDeepView/FinalPDF_GetFinalPDFStatusResponse")]
718
        System.IAsyncResult BeginFinalPDF_GetFinalPDFStatus(string DocInfoID, string MarkupInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState);
719
        
720
        bool EndFinalPDF_GetFinalPDFStatus(System.IAsyncResult result);
721
        
722
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetCurrentPage", ReplyAction="urn:ServiceDeepView/FinalPDF_SetCurrentPageResponse")]
723
        bool FinalPDF_SetCurrentPage(string final_id, int currentpage);
724
        
725
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetCurrentPage", ReplyAction="urn:ServiceDeepView/FinalPDF_SetCurrentPageResponse")]
726
        System.IAsyncResult BeginFinalPDF_SetCurrentPage(string final_id, int currentpage, System.AsyncCallback callback, object asyncState);
727
        
728
        bool EndFinalPDF_SetCurrentPage(System.IAsyncResult result);
729
        
730
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetError", ReplyAction="urn:ServiceDeepView/FinalPDF_SetErrorResponse")]
731
        bool FinalPDF_SetError(string final_id, string msg);
732
        
733
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetError", ReplyAction="urn:ServiceDeepView/FinalPDF_SetErrorResponse")]
734
        System.IAsyncResult BeginFinalPDF_SetError(string final_id, string msg, System.AsyncCallback callback, object asyncState);
735
        
736
        bool EndFinalPDF_SetError(System.IAsyncResult result);
737
        
738
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_SetFinalResultPath", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalResultPathResponse")]
739
        bool FinalPDF_SetFinalResultPath(string project_no, string document_id, string url);
740
        
741
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_SetFinalResultPath", ReplyAction="urn:ServiceDeepView/FinalPDF_SetFinalResultPathResponse")]
742
        System.IAsyncResult BeginFinalPDF_SetFinalResultPath(string project_no, string document_id, string url, System.AsyncCallback callback, object asyncState);
743
        
744
        bool EndFinalPDF_SetFinalResultPath(System.IAsyncResult result);
745
        
746
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/SaveLog", ReplyAction="urn:ServiceDeepView/SaveLogResponse")]
747
        bool SaveLog(string project_no, string document_id, string Log);
748
        
749
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/SaveLog", ReplyAction="urn:ServiceDeepView/SaveLogResponse")]
750
        System.IAsyncResult BeginSaveLog(string project_no, string document_id, string Log, System.AsyncCallback callback, object asyncState);
751
        
752
        bool EndSaveLog(System.IAsyncResult result);
753
        
754
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetCommentMember", ReplyAction="urn:ServiceDeepView/FinalPDF_GetCommentMemberResponse")]
755
        KCOMDataModel.DataModel.MEMBER FinalPDF_GetCommentMember(string project_no, string markupdata_id);
756
        
757
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetCommentMember", ReplyAction="urn:ServiceDeepView/FinalPDF_GetCommentMemberResponse")]
758
        System.IAsyncResult BeginFinalPDF_GetCommentMember(string project_no, string markupdata_id, System.AsyncCallback callback, object asyncState);
759
        
760
        KCOMDataModel.DataModel.MEMBER EndFinalPDF_GetCommentMember(System.IAsyncResult result);
761
        
762
        [System.ServiceModel.OperationContractAttribute(Action="urn:ServiceDeepView/FinalPDF_GetProperties", ReplyAction="urn:ServiceDeepView/FinalPDF_GetPropertiesResponse")]
763
        System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> FinalPDF_GetProperties(string project_no);
764
        
765
        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="urn:ServiceDeepView/FinalPDF_GetProperties", ReplyAction="urn:ServiceDeepView/FinalPDF_GetPropertiesResponse")]
766
        System.IAsyncResult BeginFinalPDF_GetProperties(string project_no, System.AsyncCallback callback, object asyncState);
767
        
768
        System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> EndFinalPDF_GetProperties(System.IAsyncResult result);
769
    }
770
    
771
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
772
    public interface ServiceDeepViewChannel : KCOM.ServiceDeepView.ServiceDeepView, System.ServiceModel.IClientChannel {
773
    }
774
    
775
    [System.Diagnostics.DebuggerStepThroughAttribute()]
776
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
777
    public partial class GetVersionDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
778
        
779
        private object[] results;
780
        
781
        public GetVersionDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
782
                base(exception, cancelled, userState) {
783
            this.results = results;
784
        }
785
        
786
        public string Result {
787
            get {
788
                base.RaiseExceptionIfNecessary();
789
                return ((string)(this.results[0]));
790
            }
791
        }
792
    }
793
    
794
    [System.Diagnostics.DebuggerStepThroughAttribute()]
795
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
796
    public partial class GetSystemDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
797
        
798
        private object[] results;
799
        
800
        public GetSystemDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
801
                base(exception, cancelled, userState) {
802
            this.results = results;
803
        }
804
        
805
        public IKCOM.KCOM_SystemInfo Result {
806
            get {
807
                base.RaiseExceptionIfNecessary();
808
                return ((IKCOM.KCOM_SystemInfo)(this.results[0]));
809
            }
810
        }
811
    }
812
    
813
    [System.Diagnostics.DebuggerStepThroughAttribute()]
814
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
815
    public partial class GetFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
816
        
817
        private object[] results;
818
        
819
        public GetFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
820
                base(exception, cancelled, userState) {
821
            this.results = results;
822
        }
823
        
824
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> Result {
825
            get {
826
                base.RaiseExceptionIfNecessary();
827
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC>)(this.results[0]));
828
            }
829
        }
830
    }
831
    
832
    [System.Diagnostics.DebuggerStepThroughAttribute()]
833
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
834
    public partial class EditFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
835
        
836
        private object[] results;
837
        
838
        public EditFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
839
                base(exception, cancelled, userState) {
840
            this.results = results;
841
        }
842
        
843
        public bool Result {
844
            get {
845
                base.RaiseExceptionIfNecessary();
846
                return ((bool)(this.results[0]));
847
            }
848
        }
849
    }
850
    
851
    [System.Diagnostics.DebuggerStepThroughAttribute()]
852
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
853
    public partial class DelFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
854
        
855
        private object[] results;
856
        
857
        public DelFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
858
                base(exception, cancelled, userState) {
859
            this.results = results;
860
        }
861
        
862
        public bool Result {
863
            get {
864
                base.RaiseExceptionIfNecessary();
865
                return ((bool)(this.results[0]));
866
            }
867
        }
868
    }
869
    
870
    [System.Diagnostics.DebuggerStepThroughAttribute()]
871
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
872
    public partial class GetCompareRectCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
873
        
874
        private object[] results;
875
        
876
        public GetCompareRectCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
877
                base(exception, cancelled, userState) {
878
            this.results = results;
879
        }
880
        
881
        public System.Collections.Generic.List<System.Windows.Rect> Result {
882
            get {
883
                base.RaiseExceptionIfNecessary();
884
                return ((System.Collections.Generic.List<System.Windows.Rect>)(this.results[0]));
885
            }
886
        }
887
    }
888
    
889
    [System.Diagnostics.DebuggerStepThroughAttribute()]
890
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
891
    public partial class GetComparefixSizeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
892
        
893
        private object[] results;
894
        
895
        public GetComparefixSizeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
896
                base(exception, cancelled, userState) {
897
            this.results = results;
898
        }
899
        
900
        public System.Collections.Generic.List<System.Windows.Rect> Result {
901
            get {
902
                base.RaiseExceptionIfNecessary();
903
                return ((System.Collections.Generic.List<System.Windows.Rect>)(this.results[0]));
904
            }
905
        }
906
    }
907
    
908
    [System.Diagnostics.DebuggerStepThroughAttribute()]
909
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
910
    public partial class SetFinalPDFCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
911
        
912
        private object[] results;
913
        
914
        public SetFinalPDFCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
915
                base(exception, cancelled, userState) {
916
            this.results = results;
917
        }
918
        
919
        public KCOM.ServiceDeepView.FinalPDFResult Result {
920
            get {
921
                base.RaiseExceptionIfNecessary();
922
                return ((KCOM.ServiceDeepView.FinalPDFResult)(this.results[0]));
923
            }
924
        }
925
    }
926
    
927
    [System.Diagnostics.DebuggerStepThroughAttribute()]
928
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
929
    public partial class GetConversionStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
930
        
931
        private object[] results;
932
        
933
        public GetConversionStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
934
                base(exception, cancelled, userState) {
935
            this.results = results;
936
        }
937
        
938
        public bool Result {
939
            get {
940
                base.RaiseExceptionIfNecessary();
941
                return ((bool)(this.results[0]));
942
            }
943
        }
944
    }
945
    
946
    [System.Diagnostics.DebuggerStepThroughAttribute()]
947
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
948
    public partial class GetVPRevisionHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
949
        
950
        private object[] results;
951
        
952
        public GetVPRevisionHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
953
                base(exception, cancelled, userState) {
954
            this.results = results;
955
        }
956
        
957
        public System.Collections.Generic.List<IKCOM.VPRevision> Result {
958
            get {
959
                base.RaiseExceptionIfNecessary();
960
                return ((System.Collections.Generic.List<IKCOM.VPRevision>)(this.results[0]));
961
            }
962
        }
963
    }
964
    
965
    [System.Diagnostics.DebuggerStepThroughAttribute()]
966
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
967
    public partial class GetVPRevisionFirstOrDefaultCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
968
        
969
        private object[] results;
970
        
971
        public GetVPRevisionFirstOrDefaultCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
972
                base(exception, cancelled, userState) {
973
            this.results = results;
974
        }
975
        
976
        public IKCOM.VPRevision Result {
977
            get {
978
                base.RaiseExceptionIfNecessary();
979
                return ((IKCOM.VPRevision)(this.results[0]));
980
            }
981
        }
982
    }
983
    
984
    [System.Diagnostics.DebuggerStepThroughAttribute()]
985
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
986
    public partial class GetDocInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
987
        
988
        private object[] results;
989
        
990
        public GetDocInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
991
                base(exception, cancelled, userState) {
992
            this.results = results;
993
        }
994
        
995
        public KCOMDataModel.DataModel.DOCINFO Result {
996
            get {
997
                base.RaiseExceptionIfNecessary();
998
                return ((KCOMDataModel.DataModel.DOCINFO)(this.results[0]));
999
            }
1000
        }
1001
    }
1002
    
1003
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1004
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1005
    public partial class GetCheckSystemAdminCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1006
        
1007
        private object[] results;
1008
        
1009
        public GetCheckSystemAdminCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1010
                base(exception, cancelled, userState) {
1011
            this.results = results;
1012
        }
1013
        
1014
        public bool Result {
1015
            get {
1016
                base.RaiseExceptionIfNecessary();
1017
                return ((bool)(this.results[0]));
1018
            }
1019
        }
1020
    }
1021
    
1022
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1023
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1024
    public partial class GetDocumentItemInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1025
        
1026
        private object[] results;
1027
        
1028
        public GetDocumentItemInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1029
                base(exception, cancelled, userState) {
1030
            this.results = results;
1031
        }
1032
        
1033
        public KCOMDataModel.DataModel.DOCUMENT_ITEM Result {
1034
            get {
1035
                base.RaiseExceptionIfNecessary();
1036
                return ((KCOMDataModel.DataModel.DOCUMENT_ITEM)(this.results[0]));
1037
            }
1038
        }
1039
    }
1040
    
1041
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1042
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1043
    public partial class GetDocItemIDCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1044
        
1045
        private object[] results;
1046
        
1047
        public GetDocItemIDCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1048
                base(exception, cancelled, userState) {
1049
            this.results = results;
1050
        }
1051
        
1052
        public string Result {
1053
            get {
1054
                base.RaiseExceptionIfNecessary();
1055
                return ((string)(this.results[0]));
1056
            }
1057
        }
1058
    }
1059
    
1060
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1061
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1062
    public partial class GetMarkupInfoItemsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1063
        
1064
        private object[] results;
1065
        
1066
        public GetMarkupInfoItemsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1067
                base(exception, cancelled, userState) {
1068
            this.results = results;
1069
        }
1070
        
1071
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> Result {
1072
            get {
1073
                base.RaiseExceptionIfNecessary();
1074
                return ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(this.results[0]));
1075
            }
1076
        }
1077
    }
1078
    
1079
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1080
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1081
    public partial class GetSyncMarkupInfoItemsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1082
        
1083
        private object[] results;
1084
        
1085
        public GetSyncMarkupInfoItemsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1086
                base(exception, cancelled, userState) {
1087
            this.results = results;
1088
        }
1089
        
1090
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> Result {
1091
            get {
1092
                base.RaiseExceptionIfNecessary();
1093
                return ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(this.results[0]));
1094
            }
1095
        }
1096
    }
1097
    
1098
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1099
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1100
    public partial class GetUserDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1101
        
1102
        private object[] results;
1103
        
1104
        public GetUserDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1105
                base(exception, cancelled, userState) {
1106
            this.results = results;
1107
        }
1108
        
1109
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> Result {
1110
            get {
1111
                base.RaiseExceptionIfNecessary();
1112
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER>)(this.results[0]));
1113
            }
1114
        }
1115
    }
1116
    
1117
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1118
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1119
    public partial class GetDeptDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1120
        
1121
        private object[] results;
1122
        
1123
        public GetDeptDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1124
                base(exception, cancelled, userState) {
1125
            this.results = results;
1126
        }
1127
        
1128
        public System.Collections.Generic.List<string> Result {
1129
            get {
1130
                base.RaiseExceptionIfNecessary();
1131
                return ((System.Collections.Generic.List<string>)(this.results[0]));
1132
            }
1133
        }
1134
    }
1135
    
1136
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1137
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1138
    public partial class DeleteMarkupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1139
        
1140
        private object[] results;
1141
        
1142
        public DeleteMarkupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1143
                base(exception, cancelled, userState) {
1144
            this.results = results;
1145
        }
1146
        
1147
        public bool Result {
1148
            get {
1149
                base.RaiseExceptionIfNecessary();
1150
                return ((bool)(this.results[0]));
1151
            }
1152
        }
1153
    }
1154
    
1155
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1156
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1157
    public partial class SetFavoriteVPCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1158
        
1159
        private object[] results;
1160
        
1161
        public SetFavoriteVPCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1162
                base(exception, cancelled, userState) {
1163
            this.results = results;
1164
        }
1165
        
1166
        public bool Result {
1167
            get {
1168
                base.RaiseExceptionIfNecessary();
1169
                return ((bool)(this.results[0]));
1170
            }
1171
        }
1172
    }
1173
    
1174
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1175
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1176
    public partial class SaveMarkupDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1177
        
1178
        private object[] results;
1179
        
1180
        public SaveMarkupDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1181
                base(exception, cancelled, userState) {
1182
            this.results = results;
1183
        }
1184
        
1185
        public bool Result {
1186
            get {
1187
                base.RaiseExceptionIfNecessary();
1188
                return ((bool)(this.results[0]));
1189
            }
1190
        }
1191
    }
1192
    
1193
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1194
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1195
    public partial class SavePageMarkupDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1196
        
1197
        private object[] results;
1198
        
1199
        public SavePageMarkupDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1200
                base(exception, cancelled, userState) {
1201
            this.results = results;
1202
        }
1203
        
1204
        public bool Result {
1205
            get {
1206
                base.RaiseExceptionIfNecessary();
1207
                return ((bool)(this.results[0]));
1208
            }
1209
        }
1210
    }
1211
    
1212
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1213
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1214
    public partial class UpdateMarkupDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1215
        
1216
        private object[] results;
1217
        
1218
        public UpdateMarkupDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1219
                base(exception, cancelled, userState) {
1220
            this.results = results;
1221
        }
1222
        
1223
        public bool Result {
1224
            get {
1225
                base.RaiseExceptionIfNecessary();
1226
                return ((bool)(this.results[0]));
1227
            }
1228
        }
1229
    }
1230
    
1231
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1232
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1233
    public partial class SaveSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1234
        
1235
        private object[] results;
1236
        
1237
        public SaveSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1238
                base(exception, cancelled, userState) {
1239
            this.results = results;
1240
        }
1241
        
1242
        public bool Result {
1243
            get {
1244
                base.RaiseExceptionIfNecessary();
1245
                return ((bool)(this.results[0]));
1246
            }
1247
        }
1248
    }
1249
    
1250
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1251
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1252
    public partial class AddPublicSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1253
        
1254
        private object[] results;
1255
        
1256
        public AddPublicSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1257
                base(exception, cancelled, userState) {
1258
            this.results = results;
1259
        }
1260
        
1261
        public bool Result {
1262
            get {
1263
                base.RaiseExceptionIfNecessary();
1264
                return ((bool)(this.results[0]));
1265
            }
1266
        }
1267
    }
1268
    
1269
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1270
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1271
    public partial class DeleteSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1272
        
1273
        private object[] results;
1274
        
1275
        public DeleteSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1276
                base(exception, cancelled, userState) {
1277
            this.results = results;
1278
        }
1279
        
1280
        public bool Result {
1281
            get {
1282
                base.RaiseExceptionIfNecessary();
1283
                return ((bool)(this.results[0]));
1284
            }
1285
        }
1286
    }
1287
    
1288
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1289
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1290
    public partial class RenameSymbolCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1291
        
1292
        private object[] results;
1293
        
1294
        public RenameSymbolCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1295
                base(exception, cancelled, userState) {
1296
            this.results = results;
1297
        }
1298
        
1299
        public bool Result {
1300
            get {
1301
                base.RaiseExceptionIfNecessary();
1302
                return ((bool)(this.results[0]));
1303
            }
1304
        }
1305
    }
1306
    
1307
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1308
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1309
    public partial class AddCheckListHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1310
        
1311
        private object[] results;
1312
        
1313
        public AddCheckListHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1314
                base(exception, cancelled, userState) {
1315
            this.results = results;
1316
        }
1317
        
1318
        public bool Result {
1319
            get {
1320
                base.RaiseExceptionIfNecessary();
1321
                return ((bool)(this.results[0]));
1322
            }
1323
        }
1324
    }
1325
    
1326
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1327
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1328
    public partial class SaveCheckListHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1329
        
1330
        private object[] results;
1331
        
1332
        public SaveCheckListHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1333
                base(exception, cancelled, userState) {
1334
            this.results = results;
1335
        }
1336
        
1337
        public bool Result {
1338
            get {
1339
                base.RaiseExceptionIfNecessary();
1340
                return ((bool)(this.results[0]));
1341
            }
1342
        }
1343
    }
1344
    
1345
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1346
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1347
    public partial class SaveCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1348
        
1349
        private object[] results;
1350
        
1351
        public SaveCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1352
                base(exception, cancelled, userState) {
1353
            this.results = results;
1354
        }
1355
        
1356
        public bool Result {
1357
            get {
1358
                base.RaiseExceptionIfNecessary();
1359
                return ((bool)(this.results[0]));
1360
            }
1361
        }
1362
    }
1363
    
1364
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1365
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1366
    public partial class AddCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1367
        
1368
        private object[] results;
1369
        
1370
        public AddCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1371
                base(exception, cancelled, userState) {
1372
            this.results = results;
1373
        }
1374
        
1375
        public bool Result {
1376
            get {
1377
                base.RaiseExceptionIfNecessary();
1378
                return ((bool)(this.results[0]));
1379
            }
1380
        }
1381
    }
1382
    
1383
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1384
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1385
    public partial class GetCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1386
        
1387
        private object[] results;
1388
        
1389
        public GetCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1390
                base(exception, cancelled, userState) {
1391
            this.results = results;
1392
        }
1393
        
1394
        public KCOMDataModel.DataModel.CHECK_LIST Result {
1395
            get {
1396
                base.RaiseExceptionIfNecessary();
1397
                return ((KCOMDataModel.DataModel.CHECK_LIST)(this.results[0]));
1398
            }
1399
        }
1400
    }
1401
    
1402
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1403
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1404
    public partial class GetUserCheckListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1405
        
1406
        private object[] results;
1407
        
1408
        public GetUserCheckListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1409
                base(exception, cancelled, userState) {
1410
            this.results = results;
1411
        }
1412
        
1413
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> Result {
1414
            get {
1415
                base.RaiseExceptionIfNecessary();
1416
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST>)(this.results[0]));
1417
            }
1418
        }
1419
    }
1420
    
1421
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1422
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1423
    public partial class GetCheckListHistoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1424
        
1425
        private object[] results;
1426
        
1427
        public GetCheckListHistoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1428
                base(exception, cancelled, userState) {
1429
            this.results = results;
1430
        }
1431
        
1432
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> Result {
1433
            get {
1434
                base.RaiseExceptionIfNecessary();
1435
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY>)(this.results[0]));
1436
            }
1437
        }
1438
    }
1439
    
1440
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1441
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1442
    public partial class GetCheckListHistoryFirstOrDefaultCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1443
        
1444
        private object[] results;
1445
        
1446
        public GetCheckListHistoryFirstOrDefaultCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1447
                base(exception, cancelled, userState) {
1448
            this.results = results;
1449
        }
1450
        
1451
        public KCOMDataModel.DataModel.CHECK_LIST_HISTORY Result {
1452
            get {
1453
                base.RaiseExceptionIfNecessary();
1454
                return ((KCOMDataModel.DataModel.CHECK_LIST_HISTORY)(this.results[0]));
1455
            }
1456
        }
1457
    }
1458
    
1459
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1460
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1461
    public partial class SavePageAngleCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1462
        
1463
        private object[] results;
1464
        
1465
        public SavePageAngleCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1466
                base(exception, cancelled, userState) {
1467
            this.results = results;
1468
        }
1469
        
1470
        public bool Result {
1471
            get {
1472
                base.RaiseExceptionIfNecessary();
1473
                return ((bool)(this.results[0]));
1474
            }
1475
        }
1476
    }
1477
    
1478
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1479
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1480
    public partial class GetMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1481
        
1482
        private object[] results;
1483
        
1484
        public GetMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1485
                base(exception, cancelled, userState) {
1486
            this.results = results;
1487
        }
1488
        
1489
        public KCOMDataModel.DataModel.MARKUP_INFO Result {
1490
            get {
1491
                base.RaiseExceptionIfNecessary();
1492
                return ((KCOMDataModel.DataModel.MARKUP_INFO)(this.results[0]));
1493
            }
1494
        }
1495
    }
1496
    
1497
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1498
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1499
    public partial class GetMarkupDataListperPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1500
        
1501
        private object[] results;
1502
        
1503
        public GetMarkupDataListperPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1504
                base(exception, cancelled, userState) {
1505
            this.results = results;
1506
        }
1507
        
1508
        public System.Collections.Generic.List<string> Result {
1509
            get {
1510
                base.RaiseExceptionIfNecessary();
1511
                return ((System.Collections.Generic.List<string>)(this.results[0]));
1512
            }
1513
        }
1514
    }
1515
    
1516
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1517
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1518
    public partial class AddMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1519
        
1520
        private object[] results;
1521
        
1522
        public AddMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1523
                base(exception, cancelled, userState) {
1524
            this.results = results;
1525
        }
1526
        
1527
        public bool Result {
1528
            get {
1529
                base.RaiseExceptionIfNecessary();
1530
                return ((bool)(this.results[0]));
1531
            }
1532
        }
1533
    }
1534
    
1535
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1536
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1537
    public partial class AddMarkupInfoVersionCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1538
        
1539
        private object[] results;
1540
        
1541
        public AddMarkupInfoVersionCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1542
                base(exception, cancelled, userState) {
1543
            this.results = results;
1544
        }
1545
        
1546
        public bool Result {
1547
            get {
1548
                base.RaiseExceptionIfNecessary();
1549
                return ((bool)(this.results[0]));
1550
            }
1551
        }
1552
    }
1553
    
1554
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1555
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1556
    public partial class AddMarkupDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1557
        
1558
        private object[] results;
1559
        
1560
        public AddMarkupDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1561
                base(exception, cancelled, userState) {
1562
            this.results = results;
1563
        }
1564
        
1565
        public bool Result {
1566
            get {
1567
                base.RaiseExceptionIfNecessary();
1568
                return ((bool)(this.results[0]));
1569
            }
1570
        }
1571
    }
1572
    
1573
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1574
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1575
    public partial class AvoidMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1576
        
1577
        private object[] results;
1578
        
1579
        public AvoidMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1580
                base(exception, cancelled, userState) {
1581
            this.results = results;
1582
        }
1583
        
1584
        public bool Result {
1585
            get {
1586
                base.RaiseExceptionIfNecessary();
1587
                return ((bool)(this.results[0]));
1588
            }
1589
        }
1590
    }
1591
    
1592
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1593
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1594
    public partial class SaveMarkupInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1595
        
1596
        private object[] results;
1597
        
1598
        public SaveMarkupInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1599
                base(exception, cancelled, userState) {
1600
            this.results = results;
1601
        }
1602
        
1603
        public bool Result {
1604
            get {
1605
                base.RaiseExceptionIfNecessary();
1606
                return ((bool)(this.results[0]));
1607
            }
1608
        }
1609
    }
1610
    
1611
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1612
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1613
    public partial class GetMarkupDataListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1614
        
1615
        private object[] results;
1616
        
1617
        public GetMarkupDataListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1618
                base(exception, cancelled, userState) {
1619
            this.results = results;
1620
        }
1621
        
1622
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> Result {
1623
            get {
1624
                base.RaiseExceptionIfNecessary();
1625
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>)(this.results[0]));
1626
            }
1627
        }
1628
    }
1629
    
1630
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1631
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1632
    public partial class ConsolidateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1633
        
1634
        private object[] results;
1635
        
1636
        public ConsolidateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1637
                base(exception, cancelled, userState) {
1638
            this.results = results;
1639
        }
1640
        
1641
        public bool Result {
1642
            get {
1643
                base.RaiseExceptionIfNecessary();
1644
                return ((bool)(this.results[0]));
1645
            }
1646
        }
1647
    }
1648
    
1649
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1650
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1651
    public partial class ConsolidateMergedPDFCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1652
        
1653
        private object[] results;
1654
        
1655
        public ConsolidateMergedPDFCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1656
                base(exception, cancelled, userState) {
1657
            this.results = results;
1658
        }
1659
        
1660
        public KCOM.ServiceDeepView.FinalPDFResult Result {
1661
            get {
1662
                base.RaiseExceptionIfNecessary();
1663
                return ((KCOM.ServiceDeepView.FinalPDFResult)(this.results[0]));
1664
            }
1665
        }
1666
    }
1667
    
1668
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1669
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1670
    public partial class TeamConsolidateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1671
        
1672
        private object[] results;
1673
        
1674
        public TeamConsolidateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1675
                base(exception, cancelled, userState) {
1676
            this.results = results;
1677
        }
1678
        
1679
        public bool Result {
1680
            get {
1681
                base.RaiseExceptionIfNecessary();
1682
                return ((bool)(this.results[0]));
1683
            }
1684
        }
1685
    }
1686
    
1687
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1688
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1689
    public partial class GetMemberCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1690
        
1691
        private object[] results;
1692
        
1693
        public GetMemberCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1694
                base(exception, cancelled, userState) {
1695
            this.results = results;
1696
        }
1697
        
1698
        public KCOMDataModel.DataModel.MEMBER Result {
1699
            get {
1700
                base.RaiseExceptionIfNecessary();
1701
                return ((KCOMDataModel.DataModel.MEMBER)(this.results[0]));
1702
            }
1703
        }
1704
    }
1705
    
1706
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1707
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1708
    public partial class GetSymbolListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1709
        
1710
        private object[] results;
1711
        
1712
        public GetSymbolListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1713
                base(exception, cancelled, userState) {
1714
            this.results = results;
1715
        }
1716
        
1717
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> Result {
1718
            get {
1719
                base.RaiseExceptionIfNecessary();
1720
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE>)(this.results[0]));
1721
            }
1722
        }
1723
    }
1724
    
1725
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1726
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1727
    public partial class GetPublicSymbolDeptListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1728
        
1729
        private object[] results;
1730
        
1731
        public GetPublicSymbolDeptListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1732
                base(exception, cancelled, userState) {
1733
            this.results = results;
1734
        }
1735
        
1736
        public System.Collections.Generic.List<string> Result {
1737
            get {
1738
                base.RaiseExceptionIfNecessary();
1739
                return ((System.Collections.Generic.List<string>)(this.results[0]));
1740
            }
1741
        }
1742
    }
1743
    
1744
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1745
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1746
    public partial class GetPublicSymbolListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1747
        
1748
        private object[] results;
1749
        
1750
        public GetPublicSymbolListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1751
                base(exception, cancelled, userState) {
1752
            this.results = results;
1753
        }
1754
        
1755
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> Result {
1756
            get {
1757
                base.RaiseExceptionIfNecessary();
1758
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC>)(this.results[0]));
1759
            }
1760
        }
1761
    }
1762
    
1763
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1764
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1765
    public partial class GetSymbolDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1766
        
1767
        private object[] results;
1768
        
1769
        public GetSymbolDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1770
                base(exception, cancelled, userState) {
1771
            this.results = results;
1772
        }
1773
        
1774
        public string Result {
1775
            get {
1776
                base.RaiseExceptionIfNecessary();
1777
                return ((string)(this.results[0]));
1778
            }
1779
        }
1780
    }
1781
    
1782
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1783
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1784
    public partial class GetSymbolImageURLCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1785
        
1786
        private object[] results;
1787
        
1788
        public GetSymbolImageURLCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1789
                base(exception, cancelled, userState) {
1790
            this.results = results;
1791
        }
1792
        
1793
        public string Result {
1794
            get {
1795
                base.RaiseExceptionIfNecessary();
1796
                return ((string)(this.results[0]));
1797
            }
1798
        }
1799
    }
1800
    
1801
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1802
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1803
    public partial class GetSignDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1804
        
1805
        private object[] results;
1806
        
1807
        public GetSignDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1808
                base(exception, cancelled, userState) {
1809
            this.results = results;
1810
        }
1811
        
1812
        public string Result {
1813
            get {
1814
                base.RaiseExceptionIfNecessary();
1815
                return ((string)(this.results[0]));
1816
            }
1817
        }
1818
    }
1819
    
1820
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1821
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1822
    public partial class GetSignStrokesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1823
        
1824
        private object[] results;
1825
        
1826
        public GetSignStrokesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1827
                base(exception, cancelled, userState) {
1828
            this.results = results;
1829
        }
1830
        
1831
        public string Result {
1832
            get {
1833
                base.RaiseExceptionIfNecessary();
1834
                return ((string)(this.results[0]));
1835
            }
1836
        }
1837
    }
1838
    
1839
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1840
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1841
    public partial class SetSignDataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1842
        
1843
        private object[] results;
1844
        
1845
        public SetSignDataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1846
                base(exception, cancelled, userState) {
1847
            this.results = results;
1848
        }
1849
        
1850
        public int Result {
1851
            get {
1852
                base.RaiseExceptionIfNecessary();
1853
                return ((int)(this.results[0]));
1854
            }
1855
        }
1856
    }
1857
    
1858
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1859
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1860
    public partial class SetSignStrokesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1861
        
1862
        private object[] results;
1863
        
1864
        public SetSignStrokesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1865
                base(exception, cancelled, userState) {
1866
            this.results = results;
1867
        }
1868
        
1869
        public int Result {
1870
            get {
1871
                base.RaiseExceptionIfNecessary();
1872
                return ((int)(this.results[0]));
1873
            }
1874
        }
1875
    }
1876
    
1877
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1878
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1879
    public partial class GetProjectNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1880
        
1881
        private object[] results;
1882
        
1883
        public GetProjectNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1884
                base(exception, cancelled, userState) {
1885
            this.results = results;
1886
        }
1887
        
1888
        public string Result {
1889
            get {
1890
                base.RaiseExceptionIfNecessary();
1891
                return ((string)(this.results[0]));
1892
            }
1893
        }
1894
    }
1895
    
1896
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1897
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1898
    public partial class GetPreRevSelectCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1899
        
1900
        private object[] results;
1901
        
1902
        public GetPreRevSelectCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1903
                base(exception, cancelled, userState) {
1904
            this.results = results;
1905
        }
1906
        
1907
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> Result {
1908
            get {
1909
                base.RaiseExceptionIfNecessary();
1910
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM>)(this.results[0]));
1911
            }
1912
        }
1913
    }
1914
    
1915
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1916
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1917
    public partial class GetDocInfoOneSelectCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1918
        
1919
        private object[] results;
1920
        
1921
        public GetDocInfoOneSelectCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1922
                base(exception, cancelled, userState) {
1923
            this.results = results;
1924
        }
1925
        
1926
        public KCOMDataModel.DataModel.DOCINFO Result {
1927
            get {
1928
                base.RaiseExceptionIfNecessary();
1929
                return ((KCOMDataModel.DataModel.DOCINFO)(this.results[0]));
1930
            }
1931
        }
1932
    }
1933
    
1934
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1935
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1936
    public partial class GetPrintDocItemListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1937
        
1938
        private object[] results;
1939
        
1940
        public GetPrintDocItemListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1941
                base(exception, cancelled, userState) {
1942
            this.results = results;
1943
        }
1944
        
1945
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> Result {
1946
            get {
1947
                base.RaiseExceptionIfNecessary();
1948
                return ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(this.results[0]));
1949
            }
1950
        }
1951
    }
1952
    
1953
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1954
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1955
    public partial class AddMessageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1956
        
1957
        private object[] results;
1958
        
1959
        public AddMessageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1960
                base(exception, cancelled, userState) {
1961
            this.results = results;
1962
        }
1963
        
1964
        public bool Result {
1965
            get {
1966
                base.RaiseExceptionIfNecessary();
1967
                return ((bool)(this.results[0]));
1968
            }
1969
        }
1970
    }
1971
    
1972
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1973
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1974
    public partial class GetMessageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1975
        
1976
        private object[] results;
1977
        
1978
        public GetMessageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1979
                base(exception, cancelled, userState) {
1980
            this.results = results;
1981
        }
1982
        
1983
        public System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> Result {
1984
            get {
1985
                base.RaiseExceptionIfNecessary();
1986
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.TALK>)(this.results[0]));
1987
            }
1988
        }
1989
    }
1990
    
1991
    [System.Diagnostics.DebuggerStepThroughAttribute()]
1992
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1993
    public partial class FinalPDF_GetDocinfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
1994
        
1995
        private object[] results;
1996
        
1997
        public FinalPDF_GetDocinfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
1998
                base(exception, cancelled, userState) {
1999
            this.results = results;
2000
        }
2001
        
2002
        public KCOMDataModel.DataModel.DOCINFO Result {
2003
            get {
2004
                base.RaiseExceptionIfNecessary();
2005
                return ((KCOMDataModel.DataModel.DOCINFO)(this.results[0]));
2006
            }
2007
        }
2008
    }
2009
    
2010
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2011
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2012
    public partial class FinalPDF_GetDocumentItemCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2013
        
2014
        private object[] results;
2015
        
2016
        public FinalPDF_GetDocumentItemCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2017
                base(exception, cancelled, userState) {
2018
            this.results = results;
2019
        }
2020
        
2021
        public KCOMDataModel.DataModel.DOCUMENT_ITEM Result {
2022
            get {
2023
                base.RaiseExceptionIfNecessary();
2024
                return ((KCOMDataModel.DataModel.DOCUMENT_ITEM)(this.results[0]));
2025
            }
2026
        }
2027
    }
2028
    
2029
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2030
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2031
    public partial class FinalPDF_GetMarkupdataCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2032
        
2033
        private object[] results;
2034
        
2035
        public FinalPDF_GetMarkupdataCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2036
                base(exception, cancelled, userState) {
2037
            this.results = results;
2038
        }
2039
        
2040
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> Result {
2041
            get {
2042
                base.RaiseExceptionIfNecessary();
2043
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>)(this.results[0]));
2044
            }
2045
        }
2046
    }
2047
    
2048
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2049
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2050
    public partial class FinalPDF_GetMarkupinfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2051
        
2052
        private object[] results;
2053
        
2054
        public FinalPDF_GetMarkupinfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2055
                base(exception, cancelled, userState) {
2056
            this.results = results;
2057
        }
2058
        
2059
        public KCOMDataModel.DataModel.MARKUP_INFO Result {
2060
            get {
2061
                base.RaiseExceptionIfNecessary();
2062
                return ((KCOMDataModel.DataModel.MARKUP_INFO)(this.results[0]));
2063
            }
2064
        }
2065
    }
2066
    
2067
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2068
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2069
    public partial class FinalPDF_GetFinalPDFsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2070
        
2071
        private object[] results;
2072
        
2073
        public FinalPDF_GetFinalPDFsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2074
                base(exception, cancelled, userState) {
2075
            this.results = results;
2076
        }
2077
        
2078
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> Result {
2079
            get {
2080
                base.RaiseExceptionIfNecessary();
2081
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF>)(this.results[0]));
2082
            }
2083
        }
2084
    }
2085
    
2086
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2087
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2088
    public partial class FinalPDF_GetDocpageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2089
        
2090
        private object[] results;
2091
        
2092
        public FinalPDF_GetDocpageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2093
                base(exception, cancelled, userState) {
2094
            this.results = results;
2095
        }
2096
        
2097
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> Result {
2098
            get {
2099
                base.RaiseExceptionIfNecessary();
2100
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE>)(this.results[0]));
2101
            }
2102
        }
2103
    }
2104
    
2105
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2106
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2107
    public partial class FinalPDF_SetFinalPDFStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2108
        
2109
        private object[] results;
2110
        
2111
        public FinalPDF_SetFinalPDFStatusCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2112
                base(exception, cancelled, userState) {
2113
            this.results = results;
2114
        }
2115
        
2116
        public bool Result {
2117
            get {
2118
                base.RaiseExceptionIfNecessary();
2119
                return ((bool)(this.results[0]));
2120
            }
2121
        }
2122
    }
2123
    
2124
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2125
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2126
    public partial class FinalPDF_GetFinalPDFStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2127
        
2128
        private object[] results;
2129
        
2130
        public FinalPDF_GetFinalPDFStatusCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2131
                base(exception, cancelled, userState) {
2132
            this.results = results;
2133
        }
2134
        
2135
        public bool Result {
2136
            get {
2137
                base.RaiseExceptionIfNecessary();
2138
                return ((bool)(this.results[0]));
2139
            }
2140
        }
2141
    }
2142
    
2143
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2144
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2145
    public partial class FinalPDF_SetCurrentPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2146
        
2147
        private object[] results;
2148
        
2149
        public FinalPDF_SetCurrentPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2150
                base(exception, cancelled, userState) {
2151
            this.results = results;
2152
        }
2153
        
2154
        public bool Result {
2155
            get {
2156
                base.RaiseExceptionIfNecessary();
2157
                return ((bool)(this.results[0]));
2158
            }
2159
        }
2160
    }
2161
    
2162
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2163
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2164
    public partial class FinalPDF_SetErrorCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2165
        
2166
        private object[] results;
2167
        
2168
        public FinalPDF_SetErrorCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2169
                base(exception, cancelled, userState) {
2170
            this.results = results;
2171
        }
2172
        
2173
        public bool Result {
2174
            get {
2175
                base.RaiseExceptionIfNecessary();
2176
                return ((bool)(this.results[0]));
2177
            }
2178
        }
2179
    }
2180
    
2181
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2182
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2183
    public partial class FinalPDF_SetFinalResultPathCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2184
        
2185
        private object[] results;
2186
        
2187
        public FinalPDF_SetFinalResultPathCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2188
                base(exception, cancelled, userState) {
2189
            this.results = results;
2190
        }
2191
        
2192
        public bool Result {
2193
            get {
2194
                base.RaiseExceptionIfNecessary();
2195
                return ((bool)(this.results[0]));
2196
            }
2197
        }
2198
    }
2199
    
2200
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2201
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2202
    public partial class SaveLogCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2203
        
2204
        private object[] results;
2205
        
2206
        public SaveLogCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2207
                base(exception, cancelled, userState) {
2208
            this.results = results;
2209
        }
2210
        
2211
        public bool Result {
2212
            get {
2213
                base.RaiseExceptionIfNecessary();
2214
                return ((bool)(this.results[0]));
2215
            }
2216
        }
2217
    }
2218
    
2219
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2220
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2221
    public partial class FinalPDF_GetCommentMemberCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2222
        
2223
        private object[] results;
2224
        
2225
        public FinalPDF_GetCommentMemberCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2226
                base(exception, cancelled, userState) {
2227
            this.results = results;
2228
        }
2229
        
2230
        public KCOMDataModel.DataModel.MEMBER Result {
2231
            get {
2232
                base.RaiseExceptionIfNecessary();
2233
                return ((KCOMDataModel.DataModel.MEMBER)(this.results[0]));
2234
            }
2235
        }
2236
    }
2237
    
2238
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2239
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2240
    public partial class FinalPDF_GetPropertiesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
2241
        
2242
        private object[] results;
2243
        
2244
        public FinalPDF_GetPropertiesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : 
2245
                base(exception, cancelled, userState) {
2246
            this.results = results;
2247
        }
2248
        
2249
        public System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> Result {
2250
            get {
2251
                base.RaiseExceptionIfNecessary();
2252
                return ((System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES>)(this.results[0]));
2253
            }
2254
        }
2255
    }
2256
    
2257
    [System.Diagnostics.DebuggerStepThroughAttribute()]
2258
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
2259
    public partial class ServiceDeepViewClient : System.ServiceModel.ClientBase<KCOM.ServiceDeepView.ServiceDeepView>, KCOM.ServiceDeepView.ServiceDeepView {
2260
        
2261
        private BeginOperationDelegate onBeginGetVersionDataDelegate;
2262
        
2263
        private EndOperationDelegate onEndGetVersionDataDelegate;
2264
        
2265
        private System.Threading.SendOrPostCallback onGetVersionDataCompletedDelegate;
2266
        
2267
        private BeginOperationDelegate onBeginGetSystemDataDelegate;
2268
        
2269
        private EndOperationDelegate onEndGetSystemDataDelegate;
2270
        
2271
        private System.Threading.SendOrPostCallback onGetSystemDataCompletedDelegate;
2272
        
2273
        private BeginOperationDelegate onBeginGetFavoriteVPDelegate;
2274
        
2275
        private EndOperationDelegate onEndGetFavoriteVPDelegate;
2276
        
2277
        private System.Threading.SendOrPostCallback onGetFavoriteVPCompletedDelegate;
2278
        
2279
        private BeginOperationDelegate onBeginEditFavoriteVPDelegate;
2280
        
2281
        private EndOperationDelegate onEndEditFavoriteVPDelegate;
2282
        
2283
        private System.Threading.SendOrPostCallback onEditFavoriteVPCompletedDelegate;
2284
        
2285
        private BeginOperationDelegate onBeginDelFavoriteVPDelegate;
2286
        
2287
        private EndOperationDelegate onEndDelFavoriteVPDelegate;
2288
        
2289
        private System.Threading.SendOrPostCallback onDelFavoriteVPCompletedDelegate;
2290
        
2291
        private BeginOperationDelegate onBeginGetCompareRectDelegate;
2292
        
2293
        private EndOperationDelegate onEndGetCompareRectDelegate;
2294
        
2295
        private System.Threading.SendOrPostCallback onGetCompareRectCompletedDelegate;
2296
        
2297
        private BeginOperationDelegate onBeginGetComparefixSizeDelegate;
2298
        
2299
        private EndOperationDelegate onEndGetComparefixSizeDelegate;
2300
        
2301
        private System.Threading.SendOrPostCallback onGetComparefixSizeCompletedDelegate;
2302
        
2303
        private BeginOperationDelegate onBeginSetFinalPDFDelegate;
2304
        
2305
        private EndOperationDelegate onEndSetFinalPDFDelegate;
2306
        
2307
        private System.Threading.SendOrPostCallback onSetFinalPDFCompletedDelegate;
2308
        
2309
        private BeginOperationDelegate onBeginGetConversionStateDelegate;
2310
        
2311
        private EndOperationDelegate onEndGetConversionStateDelegate;
2312
        
2313
        private System.Threading.SendOrPostCallback onGetConversionStateCompletedDelegate;
2314
        
2315
        private BeginOperationDelegate onBeginGetVPRevisionHistoryDelegate;
2316
        
2317
        private EndOperationDelegate onEndGetVPRevisionHistoryDelegate;
2318
        
2319
        private System.Threading.SendOrPostCallback onGetVPRevisionHistoryCompletedDelegate;
2320
        
2321
        private BeginOperationDelegate onBeginGetVPRevisionFirstOrDefaultDelegate;
2322
        
2323
        private EndOperationDelegate onEndGetVPRevisionFirstOrDefaultDelegate;
2324
        
2325
        private System.Threading.SendOrPostCallback onGetVPRevisionFirstOrDefaultCompletedDelegate;
2326
        
2327
        private BeginOperationDelegate onBeginGetDocInfoDelegate;
2328
        
2329
        private EndOperationDelegate onEndGetDocInfoDelegate;
2330
        
2331
        private System.Threading.SendOrPostCallback onGetDocInfoCompletedDelegate;
2332
        
2333
        private BeginOperationDelegate onBeginGetCheckSystemAdminDelegate;
2334
        
2335
        private EndOperationDelegate onEndGetCheckSystemAdminDelegate;
2336
        
2337
        private System.Threading.SendOrPostCallback onGetCheckSystemAdminCompletedDelegate;
2338
        
2339
        private BeginOperationDelegate onBeginGetDocumentItemInfoDelegate;
2340
        
2341
        private EndOperationDelegate onEndGetDocumentItemInfoDelegate;
2342
        
2343
        private System.Threading.SendOrPostCallback onGetDocumentItemInfoCompletedDelegate;
2344
        
2345
        private BeginOperationDelegate onBeginGetDocItemIDDelegate;
2346
        
2347
        private EndOperationDelegate onEndGetDocItemIDDelegate;
2348
        
2349
        private System.Threading.SendOrPostCallback onGetDocItemIDCompletedDelegate;
2350
        
2351
        private BeginOperationDelegate onBeginGetMarkupInfoItemsDelegate;
2352
        
2353
        private EndOperationDelegate onEndGetMarkupInfoItemsDelegate;
2354
        
2355
        private System.Threading.SendOrPostCallback onGetMarkupInfoItemsCompletedDelegate;
2356
        
2357
        private BeginOperationDelegate onBeginGetSyncMarkupInfoItemsDelegate;
2358
        
2359
        private EndOperationDelegate onEndGetSyncMarkupInfoItemsDelegate;
2360
        
2361
        private System.Threading.SendOrPostCallback onGetSyncMarkupInfoItemsCompletedDelegate;
2362
        
2363
        private BeginOperationDelegate onBeginGetUserDataDelegate;
2364
        
2365
        private EndOperationDelegate onEndGetUserDataDelegate;
2366
        
2367
        private System.Threading.SendOrPostCallback onGetUserDataCompletedDelegate;
2368
        
2369
        private BeginOperationDelegate onBeginGetDeptDataDelegate;
2370
        
2371
        private EndOperationDelegate onEndGetDeptDataDelegate;
2372
        
2373
        private System.Threading.SendOrPostCallback onGetDeptDataCompletedDelegate;
2374
        
2375
        private BeginOperationDelegate onBeginDeleteMarkupDelegate;
2376
        
2377
        private EndOperationDelegate onEndDeleteMarkupDelegate;
2378
        
2379
        private System.Threading.SendOrPostCallback onDeleteMarkupCompletedDelegate;
2380
        
2381
        private BeginOperationDelegate onBeginSetFavoriteVPDelegate;
2382
        
2383
        private EndOperationDelegate onEndSetFavoriteVPDelegate;
2384
        
2385
        private System.Threading.SendOrPostCallback onSetFavoriteVPCompletedDelegate;
2386
        
2387
        private BeginOperationDelegate onBeginSaveMarkupDataDelegate;
2388
        
2389
        private EndOperationDelegate onEndSaveMarkupDataDelegate;
2390
        
2391
        private System.Threading.SendOrPostCallback onSaveMarkupDataCompletedDelegate;
2392
        
2393
        private BeginOperationDelegate onBeginSavePageMarkupDataDelegate;
2394
        
2395
        private EndOperationDelegate onEndSavePageMarkupDataDelegate;
2396
        
2397
        private System.Threading.SendOrPostCallback onSavePageMarkupDataCompletedDelegate;
2398
        
2399
        private BeginOperationDelegate onBeginUpdateMarkupDataDelegate;
2400
        
2401
        private EndOperationDelegate onEndUpdateMarkupDataDelegate;
2402
        
2403
        private System.Threading.SendOrPostCallback onUpdateMarkupDataCompletedDelegate;
2404
        
2405
        private BeginOperationDelegate onBeginSaveSymbolDelegate;
2406
        
2407
        private EndOperationDelegate onEndSaveSymbolDelegate;
2408
        
2409
        private System.Threading.SendOrPostCallback onSaveSymbolCompletedDelegate;
2410
        
2411
        private BeginOperationDelegate onBeginAddPublicSymbolDelegate;
2412
        
2413
        private EndOperationDelegate onEndAddPublicSymbolDelegate;
2414
        
2415
        private System.Threading.SendOrPostCallback onAddPublicSymbolCompletedDelegate;
2416
        
2417
        private BeginOperationDelegate onBeginDeleteSymbolDelegate;
2418
        
2419
        private EndOperationDelegate onEndDeleteSymbolDelegate;
2420
        
2421
        private System.Threading.SendOrPostCallback onDeleteSymbolCompletedDelegate;
2422
        
2423
        private BeginOperationDelegate onBeginRenameSymbolDelegate;
2424
        
2425
        private EndOperationDelegate onEndRenameSymbolDelegate;
2426
        
2427
        private System.Threading.SendOrPostCallback onRenameSymbolCompletedDelegate;
2428
        
2429
        private BeginOperationDelegate onBeginAddCheckListHistoryDelegate;
2430
        
2431
        private EndOperationDelegate onEndAddCheckListHistoryDelegate;
2432
        
2433
        private System.Threading.SendOrPostCallback onAddCheckListHistoryCompletedDelegate;
2434
        
2435
        private BeginOperationDelegate onBeginSaveCheckListHistoryDelegate;
2436
        
2437
        private EndOperationDelegate onEndSaveCheckListHistoryDelegate;
2438
        
2439
        private System.Threading.SendOrPostCallback onSaveCheckListHistoryCompletedDelegate;
2440
        
2441
        private BeginOperationDelegate onBeginSaveCheckListDelegate;
2442
        
2443
        private EndOperationDelegate onEndSaveCheckListDelegate;
2444
        
2445
        private System.Threading.SendOrPostCallback onSaveCheckListCompletedDelegate;
2446
        
2447
        private BeginOperationDelegate onBeginAddCheckListDelegate;
2448
        
2449
        private EndOperationDelegate onEndAddCheckListDelegate;
2450
        
2451
        private System.Threading.SendOrPostCallback onAddCheckListCompletedDelegate;
2452
        
2453
        private BeginOperationDelegate onBeginGetCheckListDelegate;
2454
        
2455
        private EndOperationDelegate onEndGetCheckListDelegate;
2456
        
2457
        private System.Threading.SendOrPostCallback onGetCheckListCompletedDelegate;
2458
        
2459
        private BeginOperationDelegate onBeginGetUserCheckListDelegate;
2460
        
2461
        private EndOperationDelegate onEndGetUserCheckListDelegate;
2462
        
2463
        private System.Threading.SendOrPostCallback onGetUserCheckListCompletedDelegate;
2464
        
2465
        private BeginOperationDelegate onBeginGetCheckListHistoryDelegate;
2466
        
2467
        private EndOperationDelegate onEndGetCheckListHistoryDelegate;
2468
        
2469
        private System.Threading.SendOrPostCallback onGetCheckListHistoryCompletedDelegate;
2470
        
2471
        private BeginOperationDelegate onBeginGetCheckListHistoryFirstOrDefaultDelegate;
2472
        
2473
        private EndOperationDelegate onEndGetCheckListHistoryFirstOrDefaultDelegate;
2474
        
2475
        private System.Threading.SendOrPostCallback onGetCheckListHistoryFirstOrDefaultCompletedDelegate;
2476
        
2477
        private BeginOperationDelegate onBeginSavePageAngleDelegate;
2478
        
2479
        private EndOperationDelegate onEndSavePageAngleDelegate;
2480
        
2481
        private System.Threading.SendOrPostCallback onSavePageAngleCompletedDelegate;
2482
        
2483
        private BeginOperationDelegate onBeginGetMarkupInfoDelegate;
2484
        
2485
        private EndOperationDelegate onEndGetMarkupInfoDelegate;
2486
        
2487
        private System.Threading.SendOrPostCallback onGetMarkupInfoCompletedDelegate;
2488
        
2489
        private BeginOperationDelegate onBeginGetMarkupDataListperPageDelegate;
2490
        
2491
        private EndOperationDelegate onEndGetMarkupDataListperPageDelegate;
2492
        
2493
        private System.Threading.SendOrPostCallback onGetMarkupDataListperPageCompletedDelegate;
2494
        
2495
        private BeginOperationDelegate onBeginAddMarkupInfoDelegate;
2496
        
2497
        private EndOperationDelegate onEndAddMarkupInfoDelegate;
2498
        
2499
        private System.Threading.SendOrPostCallback onAddMarkupInfoCompletedDelegate;
2500
        
2501
        private BeginOperationDelegate onBeginAddMarkupInfoVersionDelegate;
2502
        
2503
        private EndOperationDelegate onEndAddMarkupInfoVersionDelegate;
2504
        
2505
        private System.Threading.SendOrPostCallback onAddMarkupInfoVersionCompletedDelegate;
2506
        
2507
        private BeginOperationDelegate onBeginAddMarkupDataDelegate;
2508
        
2509
        private EndOperationDelegate onEndAddMarkupDataDelegate;
2510
        
2511
        private System.Threading.SendOrPostCallback onAddMarkupDataCompletedDelegate;
2512
        
2513
        private BeginOperationDelegate onBeginAvoidMarkupInfoDelegate;
2514
        
2515
        private EndOperationDelegate onEndAvoidMarkupInfoDelegate;
2516
        
2517
        private System.Threading.SendOrPostCallback onAvoidMarkupInfoCompletedDelegate;
2518
        
2519
        private BeginOperationDelegate onBeginSaveMarkupInfoDelegate;
2520
        
2521
        private EndOperationDelegate onEndSaveMarkupInfoDelegate;
2522
        
2523
        private System.Threading.SendOrPostCallback onSaveMarkupInfoCompletedDelegate;
2524
        
2525
        private BeginOperationDelegate onBeginGetMarkupDataListDelegate;
2526
        
2527
        private EndOperationDelegate onEndGetMarkupDataListDelegate;
2528
        
2529
        private System.Threading.SendOrPostCallback onGetMarkupDataListCompletedDelegate;
2530
        
2531
        private BeginOperationDelegate onBeginConsolidateDelegate;
2532
        
2533
        private EndOperationDelegate onEndConsolidateDelegate;
2534
        
2535
        private System.Threading.SendOrPostCallback onConsolidateCompletedDelegate;
2536
        
2537
        private BeginOperationDelegate onBeginConsolidateMergedPDFDelegate;
2538
        
2539
        private EndOperationDelegate onEndConsolidateMergedPDFDelegate;
2540
        
2541
        private System.Threading.SendOrPostCallback onConsolidateMergedPDFCompletedDelegate;
2542
        
2543
        private BeginOperationDelegate onBeginTeamConsolidateDelegate;
2544
        
2545
        private EndOperationDelegate onEndTeamConsolidateDelegate;
2546
        
2547
        private System.Threading.SendOrPostCallback onTeamConsolidateCompletedDelegate;
2548
        
2549
        private BeginOperationDelegate onBeginGetMemberDelegate;
2550
        
2551
        private EndOperationDelegate onEndGetMemberDelegate;
2552
        
2553
        private System.Threading.SendOrPostCallback onGetMemberCompletedDelegate;
2554
        
2555
        private BeginOperationDelegate onBeginGetSymbolListDelegate;
2556
        
2557
        private EndOperationDelegate onEndGetSymbolListDelegate;
2558
        
2559
        private System.Threading.SendOrPostCallback onGetSymbolListCompletedDelegate;
2560
        
2561
        private BeginOperationDelegate onBeginGetPublicSymbolDeptListDelegate;
2562
        
2563
        private EndOperationDelegate onEndGetPublicSymbolDeptListDelegate;
2564
        
2565
        private System.Threading.SendOrPostCallback onGetPublicSymbolDeptListCompletedDelegate;
2566
        
2567
        private BeginOperationDelegate onBeginGetPublicSymbolListDelegate;
2568
        
2569
        private EndOperationDelegate onEndGetPublicSymbolListDelegate;
2570
        
2571
        private System.Threading.SendOrPostCallback onGetPublicSymbolListCompletedDelegate;
2572
        
2573
        private BeginOperationDelegate onBeginGetSymbolDataDelegate;
2574
        
2575
        private EndOperationDelegate onEndGetSymbolDataDelegate;
2576
        
2577
        private System.Threading.SendOrPostCallback onGetSymbolDataCompletedDelegate;
2578
        
2579
        private BeginOperationDelegate onBeginGetSymbolImageURLDelegate;
2580
        
2581
        private EndOperationDelegate onEndGetSymbolImageURLDelegate;
2582
        
2583
        private System.Threading.SendOrPostCallback onGetSymbolImageURLCompletedDelegate;
2584
        
2585
        private BeginOperationDelegate onBeginGetSignDataDelegate;
2586
        
2587
        private EndOperationDelegate onEndGetSignDataDelegate;
2588
        
2589
        private System.Threading.SendOrPostCallback onGetSignDataCompletedDelegate;
2590
        
2591
        private BeginOperationDelegate onBeginGetSignStrokesDelegate;
2592
        
2593
        private EndOperationDelegate onEndGetSignStrokesDelegate;
2594
        
2595
        private System.Threading.SendOrPostCallback onGetSignStrokesCompletedDelegate;
2596
        
2597
        private BeginOperationDelegate onBeginSetSignDataDelegate;
2598
        
2599
        private EndOperationDelegate onEndSetSignDataDelegate;
2600
        
2601
        private System.Threading.SendOrPostCallback onSetSignDataCompletedDelegate;
2602
        
2603
        private BeginOperationDelegate onBeginSetSignStrokesDelegate;
2604
        
2605
        private EndOperationDelegate onEndSetSignStrokesDelegate;
2606
        
2607
        private System.Threading.SendOrPostCallback onSetSignStrokesCompletedDelegate;
2608
        
2609
        private BeginOperationDelegate onBeginGetProjectNameDelegate;
2610
        
2611
        private EndOperationDelegate onEndGetProjectNameDelegate;
2612
        
2613
        private System.Threading.SendOrPostCallback onGetProjectNameCompletedDelegate;
2614
        
2615
        private BeginOperationDelegate onBeginGetPreRevSelectDelegate;
2616
        
2617
        private EndOperationDelegate onEndGetPreRevSelectDelegate;
2618
        
2619
        private System.Threading.SendOrPostCallback onGetPreRevSelectCompletedDelegate;
2620
        
2621
        private BeginOperationDelegate onBeginGetDocInfoOneSelectDelegate;
2622
        
2623
        private EndOperationDelegate onEndGetDocInfoOneSelectDelegate;
2624
        
2625
        private System.Threading.SendOrPostCallback onGetDocInfoOneSelectCompletedDelegate;
2626
        
2627
        private BeginOperationDelegate onBeginGetPrintDocItemListDelegate;
2628
        
2629
        private EndOperationDelegate onEndGetPrintDocItemListDelegate;
2630
        
2631
        private System.Threading.SendOrPostCallback onGetPrintDocItemListCompletedDelegate;
2632
        
2633
        private BeginOperationDelegate onBeginAddMessageDelegate;
2634
        
2635
        private EndOperationDelegate onEndAddMessageDelegate;
2636
        
2637
        private System.Threading.SendOrPostCallback onAddMessageCompletedDelegate;
2638
        
2639
        private BeginOperationDelegate onBeginGetMessageDelegate;
2640
        
2641
        private EndOperationDelegate onEndGetMessageDelegate;
2642
        
2643
        private System.Threading.SendOrPostCallback onGetMessageCompletedDelegate;
2644
        
2645
        private BeginOperationDelegate onBeginFinalPDF_GetDocinfoDelegate;
2646
        
2647
        private EndOperationDelegate onEndFinalPDF_GetDocinfoDelegate;
2648
        
2649
        private System.Threading.SendOrPostCallback onFinalPDF_GetDocinfoCompletedDelegate;
2650
        
2651
        private BeginOperationDelegate onBeginFinalPDF_GetDocumentItemDelegate;
2652
        
2653
        private EndOperationDelegate onEndFinalPDF_GetDocumentItemDelegate;
2654
        
2655
        private System.Threading.SendOrPostCallback onFinalPDF_GetDocumentItemCompletedDelegate;
2656
        
2657
        private BeginOperationDelegate onBeginFinalPDF_GetMarkupdataDelegate;
2658
        
2659
        private EndOperationDelegate onEndFinalPDF_GetMarkupdataDelegate;
2660
        
2661
        private System.Threading.SendOrPostCallback onFinalPDF_GetMarkupdataCompletedDelegate;
2662
        
2663
        private BeginOperationDelegate onBeginFinalPDF_GetMarkupinfoDelegate;
2664
        
2665
        private EndOperationDelegate onEndFinalPDF_GetMarkupinfoDelegate;
2666
        
2667
        private System.Threading.SendOrPostCallback onFinalPDF_GetMarkupinfoCompletedDelegate;
2668
        
2669
        private BeginOperationDelegate onBeginFinalPDF_GetFinalPDFsDelegate;
2670
        
2671
        private EndOperationDelegate onEndFinalPDF_GetFinalPDFsDelegate;
2672
        
2673
        private System.Threading.SendOrPostCallback onFinalPDF_GetFinalPDFsCompletedDelegate;
2674
        
2675
        private BeginOperationDelegate onBeginFinalPDF_GetDocpageDelegate;
2676
        
2677
        private EndOperationDelegate onEndFinalPDF_GetDocpageDelegate;
2678
        
2679
        private System.Threading.SendOrPostCallback onFinalPDF_GetDocpageCompletedDelegate;
2680
        
2681
        private BeginOperationDelegate onBeginFinalPDF_SetFinalPDFStatusDelegate;
2682
        
2683
        private EndOperationDelegate onEndFinalPDF_SetFinalPDFStatusDelegate;
2684
        
2685
        private System.Threading.SendOrPostCallback onFinalPDF_SetFinalPDFStatusCompletedDelegate;
2686
        
2687
        private BeginOperationDelegate onBeginFinalPDF_GetFinalPDFStatusDelegate;
2688
        
2689
        private EndOperationDelegate onEndFinalPDF_GetFinalPDFStatusDelegate;
2690
        
2691
        private System.Threading.SendOrPostCallback onFinalPDF_GetFinalPDFStatusCompletedDelegate;
2692
        
2693
        private BeginOperationDelegate onBeginFinalPDF_SetCurrentPageDelegate;
2694
        
2695
        private EndOperationDelegate onEndFinalPDF_SetCurrentPageDelegate;
2696
        
2697
        private System.Threading.SendOrPostCallback onFinalPDF_SetCurrentPageCompletedDelegate;
2698
        
2699
        private BeginOperationDelegate onBeginFinalPDF_SetErrorDelegate;
2700
        
2701
        private EndOperationDelegate onEndFinalPDF_SetErrorDelegate;
2702
        
2703
        private System.Threading.SendOrPostCallback onFinalPDF_SetErrorCompletedDelegate;
2704
        
2705
        private BeginOperationDelegate onBeginFinalPDF_SetFinalResultPathDelegate;
2706
        
2707
        private EndOperationDelegate onEndFinalPDF_SetFinalResultPathDelegate;
2708
        
2709
        private System.Threading.SendOrPostCallback onFinalPDF_SetFinalResultPathCompletedDelegate;
2710
        
2711
        private BeginOperationDelegate onBeginSaveLogDelegate;
2712
        
2713
        private EndOperationDelegate onEndSaveLogDelegate;
2714
        
2715
        private System.Threading.SendOrPostCallback onSaveLogCompletedDelegate;
2716
        
2717
        private BeginOperationDelegate onBeginFinalPDF_GetCommentMemberDelegate;
2718
        
2719
        private EndOperationDelegate onEndFinalPDF_GetCommentMemberDelegate;
2720
        
2721
        private System.Threading.SendOrPostCallback onFinalPDF_GetCommentMemberCompletedDelegate;
2722
        
2723
        private BeginOperationDelegate onBeginFinalPDF_GetPropertiesDelegate;
2724
        
2725
        private EndOperationDelegate onEndFinalPDF_GetPropertiesDelegate;
2726
        
2727
        private System.Threading.SendOrPostCallback onFinalPDF_GetPropertiesCompletedDelegate;
2728
        
2729
        public ServiceDeepViewClient() {
2730
        }
2731
        
2732
        public ServiceDeepViewClient(string endpointConfigurationName) : 
2733
                base(endpointConfigurationName) {
2734
        }
2735
        
2736
        public ServiceDeepViewClient(string endpointConfigurationName, string remoteAddress) : 
2737
                base(endpointConfigurationName, remoteAddress) {
2738
        }
2739
        
2740
        public ServiceDeepViewClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : 
2741
                base(endpointConfigurationName, remoteAddress) {
2742
        }
2743
        
2744
        public ServiceDeepViewClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : 
2745
                base(binding, remoteAddress) {
2746
        }
2747
        
2748
        public event System.EventHandler<GetVersionDataCompletedEventArgs> GetVersionDataCompleted;
2749
        
2750
        public event System.EventHandler<GetSystemDataCompletedEventArgs> GetSystemDataCompleted;
2751
        
2752
        public event System.EventHandler<GetFavoriteVPCompletedEventArgs> GetFavoriteVPCompleted;
2753
        
2754
        public event System.EventHandler<EditFavoriteVPCompletedEventArgs> EditFavoriteVPCompleted;
2755
        
2756
        public event System.EventHandler<DelFavoriteVPCompletedEventArgs> DelFavoriteVPCompleted;
2757
        
2758
        public event System.EventHandler<GetCompareRectCompletedEventArgs> GetCompareRectCompleted;
2759
        
2760
        public event System.EventHandler<GetComparefixSizeCompletedEventArgs> GetComparefixSizeCompleted;
2761
        
2762
        public event System.EventHandler<SetFinalPDFCompletedEventArgs> SetFinalPDFCompleted;
2763
        
2764
        public event System.EventHandler<GetConversionStateCompletedEventArgs> GetConversionStateCompleted;
2765
        
2766
        public event System.EventHandler<GetVPRevisionHistoryCompletedEventArgs> GetVPRevisionHistoryCompleted;
2767
        
2768
        public event System.EventHandler<GetVPRevisionFirstOrDefaultCompletedEventArgs> GetVPRevisionFirstOrDefaultCompleted;
2769
        
2770
        public event System.EventHandler<GetDocInfoCompletedEventArgs> GetDocInfoCompleted;
2771
        
2772
        public event System.EventHandler<GetCheckSystemAdminCompletedEventArgs> GetCheckSystemAdminCompleted;
2773
        
2774
        public event System.EventHandler<GetDocumentItemInfoCompletedEventArgs> GetDocumentItemInfoCompleted;
2775
        
2776
        public event System.EventHandler<GetDocItemIDCompletedEventArgs> GetDocItemIDCompleted;
2777
        
2778
        public event System.EventHandler<GetMarkupInfoItemsCompletedEventArgs> GetMarkupInfoItemsCompleted;
2779
        
2780
        public event System.EventHandler<GetSyncMarkupInfoItemsCompletedEventArgs> GetSyncMarkupInfoItemsCompleted;
2781
        
2782
        public event System.EventHandler<GetUserDataCompletedEventArgs> GetUserDataCompleted;
2783
        
2784
        public event System.EventHandler<GetDeptDataCompletedEventArgs> GetDeptDataCompleted;
2785
        
2786
        public event System.EventHandler<DeleteMarkupCompletedEventArgs> DeleteMarkupCompleted;
2787
        
2788
        public event System.EventHandler<SetFavoriteVPCompletedEventArgs> SetFavoriteVPCompleted;
2789
        
2790
        public event System.EventHandler<SaveMarkupDataCompletedEventArgs> SaveMarkupDataCompleted;
2791
        
2792
        public event System.EventHandler<SavePageMarkupDataCompletedEventArgs> SavePageMarkupDataCompleted;
2793
        
2794
        public event System.EventHandler<UpdateMarkupDataCompletedEventArgs> UpdateMarkupDataCompleted;
2795
        
2796
        public event System.EventHandler<SaveSymbolCompletedEventArgs> SaveSymbolCompleted;
2797
        
2798
        public event System.EventHandler<AddPublicSymbolCompletedEventArgs> AddPublicSymbolCompleted;
2799
        
2800
        public event System.EventHandler<DeleteSymbolCompletedEventArgs> DeleteSymbolCompleted;
2801
        
2802
        public event System.EventHandler<RenameSymbolCompletedEventArgs> RenameSymbolCompleted;
2803
        
2804
        public event System.EventHandler<AddCheckListHistoryCompletedEventArgs> AddCheckListHistoryCompleted;
2805
        
2806
        public event System.EventHandler<SaveCheckListHistoryCompletedEventArgs> SaveCheckListHistoryCompleted;
2807
        
2808
        public event System.EventHandler<SaveCheckListCompletedEventArgs> SaveCheckListCompleted;
2809
        
2810
        public event System.EventHandler<AddCheckListCompletedEventArgs> AddCheckListCompleted;
2811
        
2812
        public event System.EventHandler<GetCheckListCompletedEventArgs> GetCheckListCompleted;
2813
        
2814
        public event System.EventHandler<GetUserCheckListCompletedEventArgs> GetUserCheckListCompleted;
2815
        
2816
        public event System.EventHandler<GetCheckListHistoryCompletedEventArgs> GetCheckListHistoryCompleted;
2817
        
2818
        public event System.EventHandler<GetCheckListHistoryFirstOrDefaultCompletedEventArgs> GetCheckListHistoryFirstOrDefaultCompleted;
2819
        
2820
        public event System.EventHandler<SavePageAngleCompletedEventArgs> SavePageAngleCompleted;
2821
        
2822
        public event System.EventHandler<GetMarkupInfoCompletedEventArgs> GetMarkupInfoCompleted;
2823
        
2824
        public event System.EventHandler<GetMarkupDataListperPageCompletedEventArgs> GetMarkupDataListperPageCompleted;
2825
        
2826
        public event System.EventHandler<AddMarkupInfoCompletedEventArgs> AddMarkupInfoCompleted;
2827
        
2828
        public event System.EventHandler<AddMarkupInfoVersionCompletedEventArgs> AddMarkupInfoVersionCompleted;
2829
        
2830
        public event System.EventHandler<AddMarkupDataCompletedEventArgs> AddMarkupDataCompleted;
2831
        
2832
        public event System.EventHandler<AvoidMarkupInfoCompletedEventArgs> AvoidMarkupInfoCompleted;
2833
        
2834
        public event System.EventHandler<SaveMarkupInfoCompletedEventArgs> SaveMarkupInfoCompleted;
2835
        
2836
        public event System.EventHandler<GetMarkupDataListCompletedEventArgs> GetMarkupDataListCompleted;
2837
        
2838
        public event System.EventHandler<ConsolidateCompletedEventArgs> ConsolidateCompleted;
2839
        
2840
        public event System.EventHandler<ConsolidateMergedPDFCompletedEventArgs> ConsolidateMergedPDFCompleted;
2841
        
2842
        public event System.EventHandler<TeamConsolidateCompletedEventArgs> TeamConsolidateCompleted;
2843
        
2844
        public event System.EventHandler<GetMemberCompletedEventArgs> GetMemberCompleted;
2845
        
2846
        public event System.EventHandler<GetSymbolListCompletedEventArgs> GetSymbolListCompleted;
2847
        
2848
        public event System.EventHandler<GetPublicSymbolDeptListCompletedEventArgs> GetPublicSymbolDeptListCompleted;
2849
        
2850
        public event System.EventHandler<GetPublicSymbolListCompletedEventArgs> GetPublicSymbolListCompleted;
2851
        
2852
        public event System.EventHandler<GetSymbolDataCompletedEventArgs> GetSymbolDataCompleted;
2853
        
2854
        public event System.EventHandler<GetSymbolImageURLCompletedEventArgs> GetSymbolImageURLCompleted;
2855
        
2856
        public event System.EventHandler<GetSignDataCompletedEventArgs> GetSignDataCompleted;
2857
        
2858
        public event System.EventHandler<GetSignStrokesCompletedEventArgs> GetSignStrokesCompleted;
2859
        
2860
        public event System.EventHandler<SetSignDataCompletedEventArgs> SetSignDataCompleted;
2861
        
2862
        public event System.EventHandler<SetSignStrokesCompletedEventArgs> SetSignStrokesCompleted;
2863
        
2864
        public event System.EventHandler<GetProjectNameCompletedEventArgs> GetProjectNameCompleted;
2865
        
2866
        public event System.EventHandler<GetPreRevSelectCompletedEventArgs> GetPreRevSelectCompleted;
2867
        
2868
        public event System.EventHandler<GetDocInfoOneSelectCompletedEventArgs> GetDocInfoOneSelectCompleted;
2869
        
2870
        public event System.EventHandler<GetPrintDocItemListCompletedEventArgs> GetPrintDocItemListCompleted;
2871
        
2872
        public event System.EventHandler<AddMessageCompletedEventArgs> AddMessageCompleted;
2873
        
2874
        public event System.EventHandler<GetMessageCompletedEventArgs> GetMessageCompleted;
2875
        
2876
        public event System.EventHandler<FinalPDF_GetDocinfoCompletedEventArgs> FinalPDF_GetDocinfoCompleted;
2877
        
2878
        public event System.EventHandler<FinalPDF_GetDocumentItemCompletedEventArgs> FinalPDF_GetDocumentItemCompleted;
2879
        
2880
        public event System.EventHandler<FinalPDF_GetMarkupdataCompletedEventArgs> FinalPDF_GetMarkupdataCompleted;
2881
        
2882
        public event System.EventHandler<FinalPDF_GetMarkupinfoCompletedEventArgs> FinalPDF_GetMarkupinfoCompleted;
2883
        
2884
        public event System.EventHandler<FinalPDF_GetFinalPDFsCompletedEventArgs> FinalPDF_GetFinalPDFsCompleted;
2885
        
2886
        public event System.EventHandler<FinalPDF_GetDocpageCompletedEventArgs> FinalPDF_GetDocpageCompleted;
2887
        
2888
        public event System.EventHandler<FinalPDF_SetFinalPDFStatusCompletedEventArgs> FinalPDF_SetFinalPDFStatusCompleted;
2889
        
2890
        public event System.EventHandler<FinalPDF_GetFinalPDFStatusCompletedEventArgs> FinalPDF_GetFinalPDFStatusCompleted;
2891
        
2892
        public event System.EventHandler<FinalPDF_SetCurrentPageCompletedEventArgs> FinalPDF_SetCurrentPageCompleted;
2893
        
2894
        public event System.EventHandler<FinalPDF_SetErrorCompletedEventArgs> FinalPDF_SetErrorCompleted;
2895
        
2896
        public event System.EventHandler<FinalPDF_SetFinalResultPathCompletedEventArgs> FinalPDF_SetFinalResultPathCompleted;
2897
        
2898
        public event System.EventHandler<SaveLogCompletedEventArgs> SaveLogCompleted;
2899
        
2900
        public event System.EventHandler<FinalPDF_GetCommentMemberCompletedEventArgs> FinalPDF_GetCommentMemberCompleted;
2901
        
2902
        public event System.EventHandler<FinalPDF_GetPropertiesCompletedEventArgs> FinalPDF_GetPropertiesCompleted;
2903
        
2904
        public string GetVersionData(bool is64BitProcess, string markusVer) {
2905
            return base.Channel.GetVersionData(is64BitProcess, markusVer);
2906
        }
2907
        
2908
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2909
        public System.IAsyncResult BeginGetVersionData(bool is64BitProcess, string markusVer, System.AsyncCallback callback, object asyncState) {
2910
            return base.Channel.BeginGetVersionData(is64BitProcess, markusVer, callback, asyncState);
2911
        }
2912
        
2913
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2914
        public string EndGetVersionData(System.IAsyncResult result) {
2915
            return base.Channel.EndGetVersionData(result);
2916
        }
2917
        
2918
        private System.IAsyncResult OnBeginGetVersionData(object[] inValues, System.AsyncCallback callback, object asyncState) {
2919
            bool is64BitProcess = ((bool)(inValues[0]));
2920
            string markusVer = ((string)(inValues[1]));
2921
            return this.BeginGetVersionData(is64BitProcess, markusVer, callback, asyncState);
2922
        }
2923
        
2924
        private object[] OnEndGetVersionData(System.IAsyncResult result) {
2925
            string retVal = this.EndGetVersionData(result);
2926
            return new object[] {
2927
                    retVal};
2928
        }
2929
        
2930
        private void OnGetVersionDataCompleted(object state) {
2931
            if ((this.GetVersionDataCompleted != null)) {
2932
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2933
                this.GetVersionDataCompleted(this, new GetVersionDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2934
            }
2935
        }
2936
        
2937
        public void GetVersionDataAsync(bool is64BitProcess, string markusVer) {
2938
            this.GetVersionDataAsync(is64BitProcess, markusVer, null);
2939
        }
2940
        
2941
        public void GetVersionDataAsync(bool is64BitProcess, string markusVer, object userState) {
2942
            if ((this.onBeginGetVersionDataDelegate == null)) {
2943
                this.onBeginGetVersionDataDelegate = new BeginOperationDelegate(this.OnBeginGetVersionData);
2944
            }
2945
            if ((this.onEndGetVersionDataDelegate == null)) {
2946
                this.onEndGetVersionDataDelegate = new EndOperationDelegate(this.OnEndGetVersionData);
2947
            }
2948
            if ((this.onGetVersionDataCompletedDelegate == null)) {
2949
                this.onGetVersionDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetVersionDataCompleted);
2950
            }
2951
            base.InvokeAsync(this.onBeginGetVersionDataDelegate, new object[] {
2952
                        is64BitProcess,
2953
                        markusVer}, this.onEndGetVersionDataDelegate, this.onGetVersionDataCompletedDelegate, userState);
2954
        }
2955
        
2956
        public IKCOM.KCOM_SystemInfo GetSystemData() {
2957
            return base.Channel.GetSystemData();
2958
        }
2959
        
2960
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2961
        public System.IAsyncResult BeginGetSystemData(System.AsyncCallback callback, object asyncState) {
2962
            return base.Channel.BeginGetSystemData(callback, asyncState);
2963
        }
2964
        
2965
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
2966
        public IKCOM.KCOM_SystemInfo EndGetSystemData(System.IAsyncResult result) {
2967
            return base.Channel.EndGetSystemData(result);
2968
        }
2969
        
2970
        private System.IAsyncResult OnBeginGetSystemData(object[] inValues, System.AsyncCallback callback, object asyncState) {
2971
            return this.BeginGetSystemData(callback, asyncState);
2972
        }
2973
        
2974
        private object[] OnEndGetSystemData(System.IAsyncResult result) {
2975
            IKCOM.KCOM_SystemInfo retVal = this.EndGetSystemData(result);
2976
            return new object[] {
2977
                    retVal};
2978
        }
2979
        
2980
        private void OnGetSystemDataCompleted(object state) {
2981
            if ((this.GetSystemDataCompleted != null)) {
2982
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
2983
                this.GetSystemDataCompleted(this, new GetSystemDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
2984
            }
2985
        }
2986
        
2987
        public void GetSystemDataAsync() {
2988
            this.GetSystemDataAsync(null);
2989
        }
2990
        
2991
        public void GetSystemDataAsync(object userState) {
2992
            if ((this.onBeginGetSystemDataDelegate == null)) {
2993
                this.onBeginGetSystemDataDelegate = new BeginOperationDelegate(this.OnBeginGetSystemData);
2994
            }
2995
            if ((this.onEndGetSystemDataDelegate == null)) {
2996
                this.onEndGetSystemDataDelegate = new EndOperationDelegate(this.OnEndGetSystemData);
2997
            }
2998
            if ((this.onGetSystemDataCompletedDelegate == null)) {
2999
                this.onGetSystemDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSystemDataCompleted);
3000
            }
3001
            base.InvokeAsync(this.onBeginGetSystemDataDelegate, null, this.onEndGetSystemDataDelegate, this.onGetSystemDataCompletedDelegate, userState);
3002
        }
3003
        
3004
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> GetFavoriteVP(string PrjNo, string userID, string sharepointItemID) {
3005
            return base.Channel.GetFavoriteVP(PrjNo, userID, sharepointItemID);
3006
        }
3007
        
3008
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3009
        public System.IAsyncResult BeginGetFavoriteVP(string PrjNo, string userID, string sharepointItemID, System.AsyncCallback callback, object asyncState) {
3010
            return base.Channel.BeginGetFavoriteVP(PrjNo, userID, sharepointItemID, callback, asyncState);
3011
        }
3012
        
3013
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3014
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> EndGetFavoriteVP(System.IAsyncResult result) {
3015
            return base.Channel.EndGetFavoriteVP(result);
3016
        }
3017
        
3018
        private System.IAsyncResult OnBeginGetFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
3019
            string PrjNo = ((string)(inValues[0]));
3020
            string userID = ((string)(inValues[1]));
3021
            string sharepointItemID = ((string)(inValues[2]));
3022
            return this.BeginGetFavoriteVP(PrjNo, userID, sharepointItemID, callback, asyncState);
3023
        }
3024
        
3025
        private object[] OnEndGetFavoriteVP(System.IAsyncResult result) {
3026
            System.Collections.Generic.List<KCOMDataModel.DataModel.FAVORITE_DOC> retVal = this.EndGetFavoriteVP(result);
3027
            return new object[] {
3028
                    retVal};
3029
        }
3030
        
3031
        private void OnGetFavoriteVPCompleted(object state) {
3032
            if ((this.GetFavoriteVPCompleted != null)) {
3033
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3034
                this.GetFavoriteVPCompleted(this, new GetFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3035
            }
3036
        }
3037
        
3038
        public void GetFavoriteVPAsync(string PrjNo, string userID, string sharepointItemID) {
3039
            this.GetFavoriteVPAsync(PrjNo, userID, sharepointItemID, null);
3040
        }
3041
        
3042
        public void GetFavoriteVPAsync(string PrjNo, string userID, string sharepointItemID, object userState) {
3043
            if ((this.onBeginGetFavoriteVPDelegate == null)) {
3044
                this.onBeginGetFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginGetFavoriteVP);
3045
            }
3046
            if ((this.onEndGetFavoriteVPDelegate == null)) {
3047
                this.onEndGetFavoriteVPDelegate = new EndOperationDelegate(this.OnEndGetFavoriteVP);
3048
            }
3049
            if ((this.onGetFavoriteVPCompletedDelegate == null)) {
3050
                this.onGetFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetFavoriteVPCompleted);
3051
            }
3052
            base.InvokeAsync(this.onBeginGetFavoriteVPDelegate, new object[] {
3053
                        PrjNo,
3054
                        userID,
3055
                        sharepointItemID}, this.onEndGetFavoriteVPDelegate, this.onGetFavoriteVPCompletedDelegate, userState);
3056
        }
3057
        
3058
        public bool EditFavoriteVP(string prjNo, string userID, string docID, int state, string description) {
3059
            return base.Channel.EditFavoriteVP(prjNo, userID, docID, state, description);
3060
        }
3061
        
3062
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3063
        public System.IAsyncResult BeginEditFavoriteVP(string prjNo, string userID, string docID, int state, string description, System.AsyncCallback callback, object asyncState) {
3064
            return base.Channel.BeginEditFavoriteVP(prjNo, userID, docID, state, description, callback, asyncState);
3065
        }
3066
        
3067
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3068
        public bool EndEditFavoriteVP(System.IAsyncResult result) {
3069
            return base.Channel.EndEditFavoriteVP(result);
3070
        }
3071
        
3072
        private System.IAsyncResult OnBeginEditFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
3073
            string prjNo = ((string)(inValues[0]));
3074
            string userID = ((string)(inValues[1]));
3075
            string docID = ((string)(inValues[2]));
3076
            int state = ((int)(inValues[3]));
3077
            string description = ((string)(inValues[4]));
3078
            return this.BeginEditFavoriteVP(prjNo, userID, docID, state, description, callback, asyncState);
3079
        }
3080
        
3081
        private object[] OnEndEditFavoriteVP(System.IAsyncResult result) {
3082
            bool retVal = this.EndEditFavoriteVP(result);
3083
            return new object[] {
3084
                    retVal};
3085
        }
3086
        
3087
        private void OnEditFavoriteVPCompleted(object state) {
3088
            if ((this.EditFavoriteVPCompleted != null)) {
3089
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3090
                this.EditFavoriteVPCompleted(this, new EditFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3091
            }
3092
        }
3093
        
3094
        public void EditFavoriteVPAsync(string prjNo, string userID, string docID, int state, string description) {
3095
            this.EditFavoriteVPAsync(prjNo, userID, docID, state, description, null);
3096
        }
3097
        
3098
        public void EditFavoriteVPAsync(string prjNo, string userID, string docID, int state, string description, object userState) {
3099
            if ((this.onBeginEditFavoriteVPDelegate == null)) {
3100
                this.onBeginEditFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginEditFavoriteVP);
3101
            }
3102
            if ((this.onEndEditFavoriteVPDelegate == null)) {
3103
                this.onEndEditFavoriteVPDelegate = new EndOperationDelegate(this.OnEndEditFavoriteVP);
3104
            }
3105
            if ((this.onEditFavoriteVPCompletedDelegate == null)) {
3106
                this.onEditFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnEditFavoriteVPCompleted);
3107
            }
3108
            base.InvokeAsync(this.onBeginEditFavoriteVPDelegate, new object[] {
3109
                        prjNo,
3110
                        userID,
3111
                        docID,
3112
                        state,
3113
                        description}, this.onEndEditFavoriteVPDelegate, this.onEditFavoriteVPCompletedDelegate, userState);
3114
        }
3115
        
3116
        public bool DelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID) {
3117
            return base.Channel.DelFavoriteVP(prjNo, userID, SavePageNo, docID);
3118
        }
3119
        
3120
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3121
        public System.IAsyncResult BeginDelFavoriteVP(string prjNo, string userID, int SavePageNo, string docID, System.AsyncCallback callback, object asyncState) {
3122
            return base.Channel.BeginDelFavoriteVP(prjNo, userID, SavePageNo, docID, callback, asyncState);
3123
        }
3124
        
3125
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3126
        public bool EndDelFavoriteVP(System.IAsyncResult result) {
3127
            return base.Channel.EndDelFavoriteVP(result);
3128
        }
3129
        
3130
        private System.IAsyncResult OnBeginDelFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
3131
            string prjNo = ((string)(inValues[0]));
3132
            string userID = ((string)(inValues[1]));
3133
            int SavePageNo = ((int)(inValues[2]));
3134
            string docID = ((string)(inValues[3]));
3135
            return this.BeginDelFavoriteVP(prjNo, userID, SavePageNo, docID, callback, asyncState);
3136
        }
3137
        
3138
        private object[] OnEndDelFavoriteVP(System.IAsyncResult result) {
3139
            bool retVal = this.EndDelFavoriteVP(result);
3140
            return new object[] {
3141
                    retVal};
3142
        }
3143
        
3144
        private void OnDelFavoriteVPCompleted(object state) {
3145
            if ((this.DelFavoriteVPCompleted != null)) {
3146
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3147
                this.DelFavoriteVPCompleted(this, new DelFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3148
            }
3149
        }
3150
        
3151
        public void DelFavoriteVPAsync(string prjNo, string userID, int SavePageNo, string docID) {
3152
            this.DelFavoriteVPAsync(prjNo, userID, SavePageNo, docID, null);
3153
        }
3154
        
3155
        public void DelFavoriteVPAsync(string prjNo, string userID, int SavePageNo, string docID, object userState) {
3156
            if ((this.onBeginDelFavoriteVPDelegate == null)) {
3157
                this.onBeginDelFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginDelFavoriteVP);
3158
            }
3159
            if ((this.onEndDelFavoriteVPDelegate == null)) {
3160
                this.onEndDelFavoriteVPDelegate = new EndOperationDelegate(this.OnEndDelFavoriteVP);
3161
            }
3162
            if ((this.onDelFavoriteVPCompletedDelegate == null)) {
3163
                this.onDelFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDelFavoriteVPCompleted);
3164
            }
3165
            base.InvokeAsync(this.onBeginDelFavoriteVPDelegate, new object[] {
3166
                        prjNo,
3167
                        userID,
3168
                        SavePageNo,
3169
                        docID}, this.onEndDelFavoriteVPDelegate, this.onDelFavoriteVPCompletedDelegate, userState);
3170
        }
3171
        
3172
        public System.Collections.Generic.List<System.Windows.Rect> GetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress) {
3173
            return base.Channel.GetCompareRect(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress);
3174
        }
3175
        
3176
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3177
        public System.IAsyncResult BeginGetCompareRect(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress, System.AsyncCallback callback, object asyncState) {
3178
            return base.Channel.BeginGetCompareRect(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress, callback, asyncState);
3179
        }
3180
        
3181
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3182
        public System.Collections.Generic.List<System.Windows.Rect> EndGetCompareRect(System.IAsyncResult result) {
3183
            return base.Channel.EndGetCompareRect(result);
3184
        }
3185
        
3186
        private System.IAsyncResult OnBeginGetCompareRect(object[] inValues, System.AsyncCallback callback, object asyncState) {
3187
            string projectNo = ((string)(inValues[0]));
3188
            string originDocItem_ID = ((string)(inValues[1]));
3189
            string targetDocItem_ID = ((string)(inValues[2]));
3190
            string originPageNo = ((string)(inValues[3]));
3191
            string targetPageNo = ((string)(inValues[4]));
3192
            string isInternalAddress = ((string)(inValues[5]));
3193
            return this.BeginGetCompareRect(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress, callback, asyncState);
3194
        }
3195
        
3196
        private object[] OnEndGetCompareRect(System.IAsyncResult result) {
3197
            System.Collections.Generic.List<System.Windows.Rect> retVal = this.EndGetCompareRect(result);
3198
            return new object[] {
3199
                    retVal};
3200
        }
3201
        
3202
        private void OnGetCompareRectCompleted(object state) {
3203
            if ((this.GetCompareRectCompleted != null)) {
3204
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3205
                this.GetCompareRectCompleted(this, new GetCompareRectCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3206
            }
3207
        }
3208
        
3209
        public void GetCompareRectAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress) {
3210
            this.GetCompareRectAsync(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, isInternalAddress, null);
3211
        }
3212
        
3213
        public void GetCompareRectAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, string isInternalAddress, object userState) {
3214
            if ((this.onBeginGetCompareRectDelegate == null)) {
3215
                this.onBeginGetCompareRectDelegate = new BeginOperationDelegate(this.OnBeginGetCompareRect);
3216
            }
3217
            if ((this.onEndGetCompareRectDelegate == null)) {
3218
                this.onEndGetCompareRectDelegate = new EndOperationDelegate(this.OnEndGetCompareRect);
3219
            }
3220
            if ((this.onGetCompareRectCompletedDelegate == null)) {
3221
                this.onGetCompareRectCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCompareRectCompleted);
3222
            }
3223
            base.InvokeAsync(this.onBeginGetCompareRectDelegate, new object[] {
3224
                        projectNo,
3225
                        originDocItem_ID,
3226
                        targetDocItem_ID,
3227
                        originPageNo,
3228
                        targetPageNo,
3229
                        isInternalAddress}, this.onEndGetCompareRectDelegate, this.onGetCompareRectCompletedDelegate, userState);
3230
        }
3231
        
3232
        public System.Collections.Generic.List<System.Windows.Rect> GetComparefixSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, System.Windows.Size FixSize, string isInternalAddress) {
3233
            return base.Channel.GetComparefixSize(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, FixSize, isInternalAddress);
3234
        }
3235
        
3236
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3237
        public System.IAsyncResult BeginGetComparefixSize(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, System.Windows.Size FixSize, string isInternalAddress, System.AsyncCallback callback, object asyncState) {
3238
            return base.Channel.BeginGetComparefixSize(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, FixSize, isInternalAddress, callback, asyncState);
3239
        }
3240
        
3241
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3242
        public System.Collections.Generic.List<System.Windows.Rect> EndGetComparefixSize(System.IAsyncResult result) {
3243
            return base.Channel.EndGetComparefixSize(result);
3244
        }
3245
        
3246
        private System.IAsyncResult OnBeginGetComparefixSize(object[] inValues, System.AsyncCallback callback, object asyncState) {
3247
            string projectNo = ((string)(inValues[0]));
3248
            string originDocItem_ID = ((string)(inValues[1]));
3249
            string targetDocItem_ID = ((string)(inValues[2]));
3250
            string originPageNo = ((string)(inValues[3]));
3251
            string targetPageNo = ((string)(inValues[4]));
3252
            System.Windows.Size FixSize = ((System.Windows.Size)(inValues[5]));
3253
            string isInternalAddress = ((string)(inValues[6]));
3254
            return this.BeginGetComparefixSize(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, FixSize, isInternalAddress, callback, asyncState);
3255
        }
3256
        
3257
        private object[] OnEndGetComparefixSize(System.IAsyncResult result) {
3258
            System.Collections.Generic.List<System.Windows.Rect> retVal = this.EndGetComparefixSize(result);
3259
            return new object[] {
3260
                    retVal};
3261
        }
3262
        
3263
        private void OnGetComparefixSizeCompleted(object state) {
3264
            if ((this.GetComparefixSizeCompleted != null)) {
3265
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3266
                this.GetComparefixSizeCompleted(this, new GetComparefixSizeCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3267
            }
3268
        }
3269
        
3270
        public void GetComparefixSizeAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, System.Windows.Size FixSize, string isInternalAddress) {
3271
            this.GetComparefixSizeAsync(projectNo, originDocItem_ID, targetDocItem_ID, originPageNo, targetPageNo, FixSize, isInternalAddress, null);
3272
        }
3273
        
3274
        public void GetComparefixSizeAsync(string projectNo, string originDocItem_ID, string targetDocItem_ID, string originPageNo, string targetPageNo, System.Windows.Size FixSize, string isInternalAddress, object userState) {
3275
            if ((this.onBeginGetComparefixSizeDelegate == null)) {
3276
                this.onBeginGetComparefixSizeDelegate = new BeginOperationDelegate(this.OnBeginGetComparefixSize);
3277
            }
3278
            if ((this.onEndGetComparefixSizeDelegate == null)) {
3279
                this.onEndGetComparefixSizeDelegate = new EndOperationDelegate(this.OnEndGetComparefixSize);
3280
            }
3281
            if ((this.onGetComparefixSizeCompletedDelegate == null)) {
3282
                this.onGetComparefixSizeCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetComparefixSizeCompleted);
3283
            }
3284
            base.InvokeAsync(this.onBeginGetComparefixSizeDelegate, new object[] {
3285
                        projectNo,
3286
                        originDocItem_ID,
3287
                        targetDocItem_ID,
3288
                        originPageNo,
3289
                        targetPageNo,
3290
                        FixSize,
3291
                        isInternalAddress}, this.onEndGetComparefixSizeDelegate, this.onGetComparefixSizeCompletedDelegate, userState);
3292
        }
3293
        
3294
        public KCOM.ServiceDeepView.FinalPDFResult SetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID) {
3295
            return base.Channel.SetFinalPDF(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID);
3296
        }
3297
        
3298
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3299
        public System.IAsyncResult BeginSetFinalPDF(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState) {
3300
            return base.Channel.BeginSetFinalPDF(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID, callback, asyncState);
3301
        }
3302
        
3303
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3304
        public KCOM.ServiceDeepView.FinalPDFResult EndSetFinalPDF(System.IAsyncResult result) {
3305
            return base.Channel.EndSetFinalPDF(result);
3306
        }
3307
        
3308
        private System.IAsyncResult OnBeginSetFinalPDF(object[] inValues, System.AsyncCallback callback, object asyncState) {
3309
            string ProjectNo = ((string)(inValues[0]));
3310
            string DocInfoID = ((string)(inValues[1]));
3311
            string MarkupInfoID = ((string)(inValues[2]));
3312
            string CreateUserID = ((string)(inValues[3]));
3313
            return this.BeginSetFinalPDF(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID, callback, asyncState);
3314
        }
3315
        
3316
        private object[] OnEndSetFinalPDF(System.IAsyncResult result) {
3317
            KCOM.ServiceDeepView.FinalPDFResult retVal = this.EndSetFinalPDF(result);
3318
            return new object[] {
3319
                    retVal};
3320
        }
3321
        
3322
        private void OnSetFinalPDFCompleted(object state) {
3323
            if ((this.SetFinalPDFCompleted != null)) {
3324
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3325
                this.SetFinalPDFCompleted(this, new SetFinalPDFCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3326
            }
3327
        }
3328
        
3329
        public void SetFinalPDFAsync(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID) {
3330
            this.SetFinalPDFAsync(ProjectNo, DocInfoID, MarkupInfoID, CreateUserID, null);
3331
        }
3332
        
3333
        public void SetFinalPDFAsync(string ProjectNo, string DocInfoID, string MarkupInfoID, string CreateUserID, object userState) {
3334
            if ((this.onBeginSetFinalPDFDelegate == null)) {
3335
                this.onBeginSetFinalPDFDelegate = new BeginOperationDelegate(this.OnBeginSetFinalPDF);
3336
            }
3337
            if ((this.onEndSetFinalPDFDelegate == null)) {
3338
                this.onEndSetFinalPDFDelegate = new EndOperationDelegate(this.OnEndSetFinalPDF);
3339
            }
3340
            if ((this.onSetFinalPDFCompletedDelegate == null)) {
3341
                this.onSetFinalPDFCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetFinalPDFCompleted);
3342
            }
3343
            base.InvokeAsync(this.onBeginSetFinalPDFDelegate, new object[] {
3344
                        ProjectNo,
3345
                        DocInfoID,
3346
                        MarkupInfoID,
3347
                        CreateUserID}, this.onEndSetFinalPDFDelegate, this.onSetFinalPDFCompletedDelegate, userState);
3348
        }
3349
        
3350
        public bool GetConversionState(IKCOM.KCOM_BasicParam param) {
3351
            return base.Channel.GetConversionState(param);
3352
        }
3353
        
3354
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3355
        public System.IAsyncResult BeginGetConversionState(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState) {
3356
            return base.Channel.BeginGetConversionState(param, callback, asyncState);
3357
        }
3358
        
3359
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3360
        public bool EndGetConversionState(System.IAsyncResult result) {
3361
            return base.Channel.EndGetConversionState(result);
3362
        }
3363
        
3364
        private System.IAsyncResult OnBeginGetConversionState(object[] inValues, System.AsyncCallback callback, object asyncState) {
3365
            IKCOM.KCOM_BasicParam param = ((IKCOM.KCOM_BasicParam)(inValues[0]));
3366
            return this.BeginGetConversionState(param, callback, asyncState);
3367
        }
3368
        
3369
        private object[] OnEndGetConversionState(System.IAsyncResult result) {
3370
            bool retVal = this.EndGetConversionState(result);
3371
            return new object[] {
3372
                    retVal};
3373
        }
3374
        
3375
        private void OnGetConversionStateCompleted(object state) {
3376
            if ((this.GetConversionStateCompleted != null)) {
3377
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3378
                this.GetConversionStateCompleted(this, new GetConversionStateCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3379
            }
3380
        }
3381
        
3382
        public void GetConversionStateAsync(IKCOM.KCOM_BasicParam param) {
3383
            this.GetConversionStateAsync(param, null);
3384
        }
3385
        
3386
        public void GetConversionStateAsync(IKCOM.KCOM_BasicParam param, object userState) {
3387
            if ((this.onBeginGetConversionStateDelegate == null)) {
3388
                this.onBeginGetConversionStateDelegate = new BeginOperationDelegate(this.OnBeginGetConversionState);
3389
            }
3390
            if ((this.onEndGetConversionStateDelegate == null)) {
3391
                this.onEndGetConversionStateDelegate = new EndOperationDelegate(this.OnEndGetConversionState);
3392
            }
3393
            if ((this.onGetConversionStateCompletedDelegate == null)) {
3394
                this.onGetConversionStateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetConversionStateCompleted);
3395
            }
3396
            base.InvokeAsync(this.onBeginGetConversionStateDelegate, new object[] {
3397
                        param}, this.onEndGetConversionStateDelegate, this.onGetConversionStateCompletedDelegate, userState);
3398
        }
3399
        
3400
        public System.Collections.Generic.List<IKCOM.VPRevision> GetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId) {
3401
            return base.Channel.GetVPRevisionHistory(ProjectNo, vpNo, DocumentId);
3402
        }
3403
        
3404
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3405
        public System.IAsyncResult BeginGetVPRevisionHistory(string ProjectNo, string vpNo, string DocumentId, System.AsyncCallback callback, object asyncState) {
3406
            return base.Channel.BeginGetVPRevisionHistory(ProjectNo, vpNo, DocumentId, callback, asyncState);
3407
        }
3408
        
3409
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3410
        public System.Collections.Generic.List<IKCOM.VPRevision> EndGetVPRevisionHistory(System.IAsyncResult result) {
3411
            return base.Channel.EndGetVPRevisionHistory(result);
3412
        }
3413
        
3414
        private System.IAsyncResult OnBeginGetVPRevisionHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
3415
            string ProjectNo = ((string)(inValues[0]));
3416
            string vpNo = ((string)(inValues[1]));
3417
            string DocumentId = ((string)(inValues[2]));
3418
            return this.BeginGetVPRevisionHistory(ProjectNo, vpNo, DocumentId, callback, asyncState);
3419
        }
3420
        
3421
        private object[] OnEndGetVPRevisionHistory(System.IAsyncResult result) {
3422
            System.Collections.Generic.List<IKCOM.VPRevision> retVal = this.EndGetVPRevisionHistory(result);
3423
            return new object[] {
3424
                    retVal};
3425
        }
3426
        
3427
        private void OnGetVPRevisionHistoryCompleted(object state) {
3428
            if ((this.GetVPRevisionHistoryCompleted != null)) {
3429
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3430
                this.GetVPRevisionHistoryCompleted(this, new GetVPRevisionHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3431
            }
3432
        }
3433
        
3434
        public void GetVPRevisionHistoryAsync(string ProjectNo, string vpNo, string DocumentId) {
3435
            this.GetVPRevisionHistoryAsync(ProjectNo, vpNo, DocumentId, null);
3436
        }
3437
        
3438
        public void GetVPRevisionHistoryAsync(string ProjectNo, string vpNo, string DocumentId, object userState) {
3439
            if ((this.onBeginGetVPRevisionHistoryDelegate == null)) {
3440
                this.onBeginGetVPRevisionHistoryDelegate = new BeginOperationDelegate(this.OnBeginGetVPRevisionHistory);
3441
            }
3442
            if ((this.onEndGetVPRevisionHistoryDelegate == null)) {
3443
                this.onEndGetVPRevisionHistoryDelegate = new EndOperationDelegate(this.OnEndGetVPRevisionHistory);
3444
            }
3445
            if ((this.onGetVPRevisionHistoryCompletedDelegate == null)) {
3446
                this.onGetVPRevisionHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetVPRevisionHistoryCompleted);
3447
            }
3448
            base.InvokeAsync(this.onBeginGetVPRevisionHistoryDelegate, new object[] {
3449
                        ProjectNo,
3450
                        vpNo,
3451
                        DocumentId}, this.onEndGetVPRevisionHistoryDelegate, this.onGetVPRevisionHistoryCompletedDelegate, userState);
3452
        }
3453
        
3454
        public IKCOM.VPRevision GetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId) {
3455
            return base.Channel.GetVPRevisionFirstOrDefault(ProjectNo, DocumentId);
3456
        }
3457
        
3458
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3459
        public System.IAsyncResult BeginGetVPRevisionFirstOrDefault(string ProjectNo, string DocumentId, System.AsyncCallback callback, object asyncState) {
3460
            return base.Channel.BeginGetVPRevisionFirstOrDefault(ProjectNo, DocumentId, callback, asyncState);
3461
        }
3462
        
3463
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3464
        public IKCOM.VPRevision EndGetVPRevisionFirstOrDefault(System.IAsyncResult result) {
3465
            return base.Channel.EndGetVPRevisionFirstOrDefault(result);
3466
        }
3467
        
3468
        private System.IAsyncResult OnBeginGetVPRevisionFirstOrDefault(object[] inValues, System.AsyncCallback callback, object asyncState) {
3469
            string ProjectNo = ((string)(inValues[0]));
3470
            string DocumentId = ((string)(inValues[1]));
3471
            return this.BeginGetVPRevisionFirstOrDefault(ProjectNo, DocumentId, callback, asyncState);
3472
        }
3473
        
3474
        private object[] OnEndGetVPRevisionFirstOrDefault(System.IAsyncResult result) {
3475
            IKCOM.VPRevision retVal = this.EndGetVPRevisionFirstOrDefault(result);
3476
            return new object[] {
3477
                    retVal};
3478
        }
3479
        
3480
        private void OnGetVPRevisionFirstOrDefaultCompleted(object state) {
3481
            if ((this.GetVPRevisionFirstOrDefaultCompleted != null)) {
3482
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3483
                this.GetVPRevisionFirstOrDefaultCompleted(this, new GetVPRevisionFirstOrDefaultCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3484
            }
3485
        }
3486
        
3487
        public void GetVPRevisionFirstOrDefaultAsync(string ProjectNo, string DocumentId) {
3488
            this.GetVPRevisionFirstOrDefaultAsync(ProjectNo, DocumentId, null);
3489
        }
3490
        
3491
        public void GetVPRevisionFirstOrDefaultAsync(string ProjectNo, string DocumentId, object userState) {
3492
            if ((this.onBeginGetVPRevisionFirstOrDefaultDelegate == null)) {
3493
                this.onBeginGetVPRevisionFirstOrDefaultDelegate = new BeginOperationDelegate(this.OnBeginGetVPRevisionFirstOrDefault);
3494
            }
3495
            if ((this.onEndGetVPRevisionFirstOrDefaultDelegate == null)) {
3496
                this.onEndGetVPRevisionFirstOrDefaultDelegate = new EndOperationDelegate(this.OnEndGetVPRevisionFirstOrDefault);
3497
            }
3498
            if ((this.onGetVPRevisionFirstOrDefaultCompletedDelegate == null)) {
3499
                this.onGetVPRevisionFirstOrDefaultCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetVPRevisionFirstOrDefaultCompleted);
3500
            }
3501
            base.InvokeAsync(this.onBeginGetVPRevisionFirstOrDefaultDelegate, new object[] {
3502
                        ProjectNo,
3503
                        DocumentId}, this.onEndGetVPRevisionFirstOrDefaultDelegate, this.onGetVPRevisionFirstOrDefaultCompletedDelegate, userState);
3504
        }
3505
        
3506
        public KCOMDataModel.DataModel.DOCINFO GetDocInfo(IKCOM.KCOM_BasicParam param) {
3507
            return base.Channel.GetDocInfo(param);
3508
        }
3509
        
3510
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3511
        public System.IAsyncResult BeginGetDocInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState) {
3512
            return base.Channel.BeginGetDocInfo(param, callback, asyncState);
3513
        }
3514
        
3515
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3516
        public KCOMDataModel.DataModel.DOCINFO EndGetDocInfo(System.IAsyncResult result) {
3517
            return base.Channel.EndGetDocInfo(result);
3518
        }
3519
        
3520
        private System.IAsyncResult OnBeginGetDocInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
3521
            IKCOM.KCOM_BasicParam param = ((IKCOM.KCOM_BasicParam)(inValues[0]));
3522
            return this.BeginGetDocInfo(param, callback, asyncState);
3523
        }
3524
        
3525
        private object[] OnEndGetDocInfo(System.IAsyncResult result) {
3526
            KCOMDataModel.DataModel.DOCINFO retVal = this.EndGetDocInfo(result);
3527
            return new object[] {
3528
                    retVal};
3529
        }
3530
        
3531
        private void OnGetDocInfoCompleted(object state) {
3532
            if ((this.GetDocInfoCompleted != null)) {
3533
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3534
                this.GetDocInfoCompleted(this, new GetDocInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3535
            }
3536
        }
3537
        
3538
        public void GetDocInfoAsync(IKCOM.KCOM_BasicParam param) {
3539
            this.GetDocInfoAsync(param, null);
3540
        }
3541
        
3542
        public void GetDocInfoAsync(IKCOM.KCOM_BasicParam param, object userState) {
3543
            if ((this.onBeginGetDocInfoDelegate == null)) {
3544
                this.onBeginGetDocInfoDelegate = new BeginOperationDelegate(this.OnBeginGetDocInfo);
3545
            }
3546
            if ((this.onEndGetDocInfoDelegate == null)) {
3547
                this.onEndGetDocInfoDelegate = new EndOperationDelegate(this.OnEndGetDocInfo);
3548
            }
3549
            if ((this.onGetDocInfoCompletedDelegate == null)) {
3550
                this.onGetDocInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocInfoCompleted);
3551
            }
3552
            base.InvokeAsync(this.onBeginGetDocInfoDelegate, new object[] {
3553
                        param}, this.onEndGetDocInfoDelegate, this.onGetDocInfoCompletedDelegate, userState);
3554
        }
3555
        
3556
        public bool GetCheckSystemAdmin(string UserID) {
3557
            return base.Channel.GetCheckSystemAdmin(UserID);
3558
        }
3559
        
3560
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3561
        public System.IAsyncResult BeginGetCheckSystemAdmin(string UserID, System.AsyncCallback callback, object asyncState) {
3562
            return base.Channel.BeginGetCheckSystemAdmin(UserID, callback, asyncState);
3563
        }
3564
        
3565
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3566
        public bool EndGetCheckSystemAdmin(System.IAsyncResult result) {
3567
            return base.Channel.EndGetCheckSystemAdmin(result);
3568
        }
3569
        
3570
        private System.IAsyncResult OnBeginGetCheckSystemAdmin(object[] inValues, System.AsyncCallback callback, object asyncState) {
3571
            string UserID = ((string)(inValues[0]));
3572
            return this.BeginGetCheckSystemAdmin(UserID, callback, asyncState);
3573
        }
3574
        
3575
        private object[] OnEndGetCheckSystemAdmin(System.IAsyncResult result) {
3576
            bool retVal = this.EndGetCheckSystemAdmin(result);
3577
            return new object[] {
3578
                    retVal};
3579
        }
3580
        
3581
        private void OnGetCheckSystemAdminCompleted(object state) {
3582
            if ((this.GetCheckSystemAdminCompleted != null)) {
3583
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3584
                this.GetCheckSystemAdminCompleted(this, new GetCheckSystemAdminCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3585
            }
3586
        }
3587
        
3588
        public void GetCheckSystemAdminAsync(string UserID) {
3589
            this.GetCheckSystemAdminAsync(UserID, null);
3590
        }
3591
        
3592
        public void GetCheckSystemAdminAsync(string UserID, object userState) {
3593
            if ((this.onBeginGetCheckSystemAdminDelegate == null)) {
3594
                this.onBeginGetCheckSystemAdminDelegate = new BeginOperationDelegate(this.OnBeginGetCheckSystemAdmin);
3595
            }
3596
            if ((this.onEndGetCheckSystemAdminDelegate == null)) {
3597
                this.onEndGetCheckSystemAdminDelegate = new EndOperationDelegate(this.OnEndGetCheckSystemAdmin);
3598
            }
3599
            if ((this.onGetCheckSystemAdminCompletedDelegate == null)) {
3600
                this.onGetCheckSystemAdminCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckSystemAdminCompleted);
3601
            }
3602
            base.InvokeAsync(this.onBeginGetCheckSystemAdminDelegate, new object[] {
3603
                        UserID}, this.onEndGetCheckSystemAdminDelegate, this.onGetCheckSystemAdminCompletedDelegate, userState);
3604
        }
3605
        
3606
        public KCOMDataModel.DataModel.DOCUMENT_ITEM GetDocumentItemInfo(IKCOM.KCOM_BasicParam param) {
3607
            return base.Channel.GetDocumentItemInfo(param);
3608
        }
3609
        
3610
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3611
        public System.IAsyncResult BeginGetDocumentItemInfo(IKCOM.KCOM_BasicParam param, System.AsyncCallback callback, object asyncState) {
3612
            return base.Channel.BeginGetDocumentItemInfo(param, callback, asyncState);
3613
        }
3614
        
3615
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3616
        public KCOMDataModel.DataModel.DOCUMENT_ITEM EndGetDocumentItemInfo(System.IAsyncResult result) {
3617
            return base.Channel.EndGetDocumentItemInfo(result);
3618
        }
3619
        
3620
        private System.IAsyncResult OnBeginGetDocumentItemInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
3621
            IKCOM.KCOM_BasicParam param = ((IKCOM.KCOM_BasicParam)(inValues[0]));
3622
            return this.BeginGetDocumentItemInfo(param, callback, asyncState);
3623
        }
3624
        
3625
        private object[] OnEndGetDocumentItemInfo(System.IAsyncResult result) {
3626
            KCOMDataModel.DataModel.DOCUMENT_ITEM retVal = this.EndGetDocumentItemInfo(result);
3627
            return new object[] {
3628
                    retVal};
3629
        }
3630
        
3631
        private void OnGetDocumentItemInfoCompleted(object state) {
3632
            if ((this.GetDocumentItemInfoCompleted != null)) {
3633
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3634
                this.GetDocumentItemInfoCompleted(this, new GetDocumentItemInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3635
            }
3636
        }
3637
        
3638
        public void GetDocumentItemInfoAsync(IKCOM.KCOM_BasicParam param) {
3639
            this.GetDocumentItemInfoAsync(param, null);
3640
        }
3641
        
3642
        public void GetDocumentItemInfoAsync(IKCOM.KCOM_BasicParam param, object userState) {
3643
            if ((this.onBeginGetDocumentItemInfoDelegate == null)) {
3644
                this.onBeginGetDocumentItemInfoDelegate = new BeginOperationDelegate(this.OnBeginGetDocumentItemInfo);
3645
            }
3646
            if ((this.onEndGetDocumentItemInfoDelegate == null)) {
3647
                this.onEndGetDocumentItemInfoDelegate = new EndOperationDelegate(this.OnEndGetDocumentItemInfo);
3648
            }
3649
            if ((this.onGetDocumentItemInfoCompletedDelegate == null)) {
3650
                this.onGetDocumentItemInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocumentItemInfoCompleted);
3651
            }
3652
            base.InvokeAsync(this.onBeginGetDocumentItemInfoDelegate, new object[] {
3653
                        param}, this.onEndGetDocumentItemInfoDelegate, this.onGetDocumentItemInfoCompletedDelegate, userState);
3654
        }
3655
        
3656
        public string GetDocItemID(string ensemble_id) {
3657
            return base.Channel.GetDocItemID(ensemble_id);
3658
        }
3659
        
3660
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3661
        public System.IAsyncResult BeginGetDocItemID(string ensemble_id, System.AsyncCallback callback, object asyncState) {
3662
            return base.Channel.BeginGetDocItemID(ensemble_id, callback, asyncState);
3663
        }
3664
        
3665
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3666
        public string EndGetDocItemID(System.IAsyncResult result) {
3667
            return base.Channel.EndGetDocItemID(result);
3668
        }
3669
        
3670
        private System.IAsyncResult OnBeginGetDocItemID(object[] inValues, System.AsyncCallback callback, object asyncState) {
3671
            string ensemble_id = ((string)(inValues[0]));
3672
            return this.BeginGetDocItemID(ensemble_id, callback, asyncState);
3673
        }
3674
        
3675
        private object[] OnEndGetDocItemID(System.IAsyncResult result) {
3676
            string retVal = this.EndGetDocItemID(result);
3677
            return new object[] {
3678
                    retVal};
3679
        }
3680
        
3681
        private void OnGetDocItemIDCompleted(object state) {
3682
            if ((this.GetDocItemIDCompleted != null)) {
3683
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3684
                this.GetDocItemIDCompleted(this, new GetDocItemIDCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3685
            }
3686
        }
3687
        
3688
        public void GetDocItemIDAsync(string ensemble_id) {
3689
            this.GetDocItemIDAsync(ensemble_id, null);
3690
        }
3691
        
3692
        public void GetDocItemIDAsync(string ensemble_id, object userState) {
3693
            if ((this.onBeginGetDocItemIDDelegate == null)) {
3694
                this.onBeginGetDocItemIDDelegate = new BeginOperationDelegate(this.OnBeginGetDocItemID);
3695
            }
3696
            if ((this.onEndGetDocItemIDDelegate == null)) {
3697
                this.onEndGetDocItemIDDelegate = new EndOperationDelegate(this.OnEndGetDocItemID);
3698
            }
3699
            if ((this.onGetDocItemIDCompletedDelegate == null)) {
3700
                this.onGetDocItemIDCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocItemIDCompleted);
3701
            }
3702
            base.InvokeAsync(this.onBeginGetDocItemIDDelegate, new object[] {
3703
                        ensemble_id}, this.onEndGetDocItemIDDelegate, this.onGetDocItemIDCompletedDelegate, userState);
3704
        }
3705
        
3706
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetMarkupInfoItems(string ProjectNo, string DocInfoId) {
3707
            return base.Channel.GetMarkupInfoItems(ProjectNo, DocInfoId);
3708
        }
3709
        
3710
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3711
        public System.IAsyncResult BeginGetMarkupInfoItems(string ProjectNo, string DocInfoId, System.AsyncCallback callback, object asyncState) {
3712
            return base.Channel.BeginGetMarkupInfoItems(ProjectNo, DocInfoId, callback, asyncState);
3713
        }
3714
        
3715
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3716
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetMarkupInfoItems(System.IAsyncResult result) {
3717
            return base.Channel.EndGetMarkupInfoItems(result);
3718
        }
3719
        
3720
        private System.IAsyncResult OnBeginGetMarkupInfoItems(object[] inValues, System.AsyncCallback callback, object asyncState) {
3721
            string ProjectNo = ((string)(inValues[0]));
3722
            string DocInfoId = ((string)(inValues[1]));
3723
            return this.BeginGetMarkupInfoItems(ProjectNo, DocInfoId, callback, asyncState);
3724
        }
3725
        
3726
        private object[] OnEndGetMarkupInfoItems(System.IAsyncResult result) {
3727
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> retVal = this.EndGetMarkupInfoItems(result);
3728
            return new object[] {
3729
                    retVal};
3730
        }
3731
        
3732
        private void OnGetMarkupInfoItemsCompleted(object state) {
3733
            if ((this.GetMarkupInfoItemsCompleted != null)) {
3734
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3735
                this.GetMarkupInfoItemsCompleted(this, new GetMarkupInfoItemsCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3736
            }
3737
        }
3738
        
3739
        public void GetMarkupInfoItemsAsync(string ProjectNo, string DocInfoId) {
3740
            this.GetMarkupInfoItemsAsync(ProjectNo, DocInfoId, null);
3741
        }
3742
        
3743
        public void GetMarkupInfoItemsAsync(string ProjectNo, string DocInfoId, object userState) {
3744
            if ((this.onBeginGetMarkupInfoItemsDelegate == null)) {
3745
                this.onBeginGetMarkupInfoItemsDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupInfoItems);
3746
            }
3747
            if ((this.onEndGetMarkupInfoItemsDelegate == null)) {
3748
                this.onEndGetMarkupInfoItemsDelegate = new EndOperationDelegate(this.OnEndGetMarkupInfoItems);
3749
            }
3750
            if ((this.onGetMarkupInfoItemsCompletedDelegate == null)) {
3751
                this.onGetMarkupInfoItemsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupInfoItemsCompleted);
3752
            }
3753
            base.InvokeAsync(this.onBeginGetMarkupInfoItemsDelegate, new object[] {
3754
                        ProjectNo,
3755
                        DocInfoId}, this.onEndGetMarkupInfoItemsDelegate, this.onGetMarkupInfoItemsCompletedDelegate, userState);
3756
        }
3757
        
3758
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser) {
3759
            return base.Channel.GetSyncMarkupInfoItems(ProjectNo, DocInfoId, currentUser);
3760
        }
3761
        
3762
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3763
        public System.IAsyncResult BeginGetSyncMarkupInfoItems(string ProjectNo, string DocInfoId, string currentUser, System.AsyncCallback callback, object asyncState) {
3764
            return base.Channel.BeginGetSyncMarkupInfoItems(ProjectNo, DocInfoId, currentUser, callback, asyncState);
3765
        }
3766
        
3767
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3768
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetSyncMarkupInfoItems(System.IAsyncResult result) {
3769
            return base.Channel.EndGetSyncMarkupInfoItems(result);
3770
        }
3771
        
3772
        private System.IAsyncResult OnBeginGetSyncMarkupInfoItems(object[] inValues, System.AsyncCallback callback, object asyncState) {
3773
            string ProjectNo = ((string)(inValues[0]));
3774
            string DocInfoId = ((string)(inValues[1]));
3775
            string currentUser = ((string)(inValues[2]));
3776
            return this.BeginGetSyncMarkupInfoItems(ProjectNo, DocInfoId, currentUser, callback, asyncState);
3777
        }
3778
        
3779
        private object[] OnEndGetSyncMarkupInfoItems(System.IAsyncResult result) {
3780
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> retVal = this.EndGetSyncMarkupInfoItems(result);
3781
            return new object[] {
3782
                    retVal};
3783
        }
3784
        
3785
        private void OnGetSyncMarkupInfoItemsCompleted(object state) {
3786
            if ((this.GetSyncMarkupInfoItemsCompleted != null)) {
3787
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3788
                this.GetSyncMarkupInfoItemsCompleted(this, new GetSyncMarkupInfoItemsCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3789
            }
3790
        }
3791
        
3792
        public void GetSyncMarkupInfoItemsAsync(string ProjectNo, string DocInfoId, string currentUser) {
3793
            this.GetSyncMarkupInfoItemsAsync(ProjectNo, DocInfoId, currentUser, null);
3794
        }
3795
        
3796
        public void GetSyncMarkupInfoItemsAsync(string ProjectNo, string DocInfoId, string currentUser, object userState) {
3797
            if ((this.onBeginGetSyncMarkupInfoItemsDelegate == null)) {
3798
                this.onBeginGetSyncMarkupInfoItemsDelegate = new BeginOperationDelegate(this.OnBeginGetSyncMarkupInfoItems);
3799
            }
3800
            if ((this.onEndGetSyncMarkupInfoItemsDelegate == null)) {
3801
                this.onEndGetSyncMarkupInfoItemsDelegate = new EndOperationDelegate(this.OnEndGetSyncMarkupInfoItems);
3802
            }
3803
            if ((this.onGetSyncMarkupInfoItemsCompletedDelegate == null)) {
3804
                this.onGetSyncMarkupInfoItemsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSyncMarkupInfoItemsCompleted);
3805
            }
3806
            base.InvokeAsync(this.onBeginGetSyncMarkupInfoItemsDelegate, new object[] {
3807
                        ProjectNo,
3808
                        DocInfoId,
3809
                        currentUser}, this.onEndGetSyncMarkupInfoItemsDelegate, this.onGetSyncMarkupInfoItemsCompletedDelegate, userState);
3810
        }
3811
        
3812
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> GetUserData(string ProjectNo, string UserID) {
3813
            return base.Channel.GetUserData(ProjectNo, UserID);
3814
        }
3815
        
3816
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3817
        public System.IAsyncResult BeginGetUserData(string ProjectNo, string UserID, System.AsyncCallback callback, object asyncState) {
3818
            return base.Channel.BeginGetUserData(ProjectNo, UserID, callback, asyncState);
3819
        }
3820
        
3821
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3822
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> EndGetUserData(System.IAsyncResult result) {
3823
            return base.Channel.EndGetUserData(result);
3824
        }
3825
        
3826
        private System.IAsyncResult OnBeginGetUserData(object[] inValues, System.AsyncCallback callback, object asyncState) {
3827
            string ProjectNo = ((string)(inValues[0]));
3828
            string UserID = ((string)(inValues[1]));
3829
            return this.BeginGetUserData(ProjectNo, UserID, callback, asyncState);
3830
        }
3831
        
3832
        private object[] OnEndGetUserData(System.IAsyncResult result) {
3833
            System.Collections.Generic.List<KCOMDataModel.DataModel.MEMBER> retVal = this.EndGetUserData(result);
3834
            return new object[] {
3835
                    retVal};
3836
        }
3837
        
3838
        private void OnGetUserDataCompleted(object state) {
3839
            if ((this.GetUserDataCompleted != null)) {
3840
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3841
                this.GetUserDataCompleted(this, new GetUserDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3842
            }
3843
        }
3844
        
3845
        public void GetUserDataAsync(string ProjectNo, string UserID) {
3846
            this.GetUserDataAsync(ProjectNo, UserID, null);
3847
        }
3848
        
3849
        public void GetUserDataAsync(string ProjectNo, string UserID, object userState) {
3850
            if ((this.onBeginGetUserDataDelegate == null)) {
3851
                this.onBeginGetUserDataDelegate = new BeginOperationDelegate(this.OnBeginGetUserData);
3852
            }
3853
            if ((this.onEndGetUserDataDelegate == null)) {
3854
                this.onEndGetUserDataDelegate = new EndOperationDelegate(this.OnEndGetUserData);
3855
            }
3856
            if ((this.onGetUserDataCompletedDelegate == null)) {
3857
                this.onGetUserDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetUserDataCompleted);
3858
            }
3859
            base.InvokeAsync(this.onBeginGetUserDataDelegate, new object[] {
3860
                        ProjectNo,
3861
                        UserID}, this.onEndGetUserDataDelegate, this.onGetUserDataCompletedDelegate, userState);
3862
        }
3863
        
3864
        public System.Collections.Generic.List<string> GetDeptData(string UserDept) {
3865
            return base.Channel.GetDeptData(UserDept);
3866
        }
3867
        
3868
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3869
        public System.IAsyncResult BeginGetDeptData(string UserDept, System.AsyncCallback callback, object asyncState) {
3870
            return base.Channel.BeginGetDeptData(UserDept, callback, asyncState);
3871
        }
3872
        
3873
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3874
        public System.Collections.Generic.List<string> EndGetDeptData(System.IAsyncResult result) {
3875
            return base.Channel.EndGetDeptData(result);
3876
        }
3877
        
3878
        private System.IAsyncResult OnBeginGetDeptData(object[] inValues, System.AsyncCallback callback, object asyncState) {
3879
            string UserDept = ((string)(inValues[0]));
3880
            return this.BeginGetDeptData(UserDept, callback, asyncState);
3881
        }
3882
        
3883
        private object[] OnEndGetDeptData(System.IAsyncResult result) {
3884
            System.Collections.Generic.List<string> retVal = this.EndGetDeptData(result);
3885
            return new object[] {
3886
                    retVal};
3887
        }
3888
        
3889
        private void OnGetDeptDataCompleted(object state) {
3890
            if ((this.GetDeptDataCompleted != null)) {
3891
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3892
                this.GetDeptDataCompleted(this, new GetDeptDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3893
            }
3894
        }
3895
        
3896
        public void GetDeptDataAsync(string UserDept) {
3897
            this.GetDeptDataAsync(UserDept, null);
3898
        }
3899
        
3900
        public void GetDeptDataAsync(string UserDept, object userState) {
3901
            if ((this.onBeginGetDeptDataDelegate == null)) {
3902
                this.onBeginGetDeptDataDelegate = new BeginOperationDelegate(this.OnBeginGetDeptData);
3903
            }
3904
            if ((this.onEndGetDeptDataDelegate == null)) {
3905
                this.onEndGetDeptDataDelegate = new EndOperationDelegate(this.OnEndGetDeptData);
3906
            }
3907
            if ((this.onGetDeptDataCompletedDelegate == null)) {
3908
                this.onGetDeptDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDeptDataCompleted);
3909
            }
3910
            base.InvokeAsync(this.onBeginGetDeptDataDelegate, new object[] {
3911
                        UserDept}, this.onEndGetDeptDataDelegate, this.onGetDeptDataCompletedDelegate, userState);
3912
        }
3913
        
3914
        public bool DeleteMarkup(string ProjectNo, string MarkupInfoID) {
3915
            return base.Channel.DeleteMarkup(ProjectNo, MarkupInfoID);
3916
        }
3917
        
3918
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3919
        public System.IAsyncResult BeginDeleteMarkup(string ProjectNo, string MarkupInfoID, System.AsyncCallback callback, object asyncState) {
3920
            return base.Channel.BeginDeleteMarkup(ProjectNo, MarkupInfoID, callback, asyncState);
3921
        }
3922
        
3923
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3924
        public bool EndDeleteMarkup(System.IAsyncResult result) {
3925
            return base.Channel.EndDeleteMarkup(result);
3926
        }
3927
        
3928
        private System.IAsyncResult OnBeginDeleteMarkup(object[] inValues, System.AsyncCallback callback, object asyncState) {
3929
            string ProjectNo = ((string)(inValues[0]));
3930
            string MarkupInfoID = ((string)(inValues[1]));
3931
            return this.BeginDeleteMarkup(ProjectNo, MarkupInfoID, callback, asyncState);
3932
        }
3933
        
3934
        private object[] OnEndDeleteMarkup(System.IAsyncResult result) {
3935
            bool retVal = this.EndDeleteMarkup(result);
3936
            return new object[] {
3937
                    retVal};
3938
        }
3939
        
3940
        private void OnDeleteMarkupCompleted(object state) {
3941
            if ((this.DeleteMarkupCompleted != null)) {
3942
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
3943
                this.DeleteMarkupCompleted(this, new DeleteMarkupCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
3944
            }
3945
        }
3946
        
3947
        public void DeleteMarkupAsync(string ProjectNo, string MarkupInfoID) {
3948
            this.DeleteMarkupAsync(ProjectNo, MarkupInfoID, null);
3949
        }
3950
        
3951
        public void DeleteMarkupAsync(string ProjectNo, string MarkupInfoID, object userState) {
3952
            if ((this.onBeginDeleteMarkupDelegate == null)) {
3953
                this.onBeginDeleteMarkupDelegate = new BeginOperationDelegate(this.OnBeginDeleteMarkup);
3954
            }
3955
            if ((this.onEndDeleteMarkupDelegate == null)) {
3956
                this.onEndDeleteMarkupDelegate = new EndOperationDelegate(this.OnEndDeleteMarkup);
3957
            }
3958
            if ((this.onDeleteMarkupCompletedDelegate == null)) {
3959
                this.onDeleteMarkupCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDeleteMarkupCompleted);
3960
            }
3961
            base.InvokeAsync(this.onBeginDeleteMarkupDelegate, new object[] {
3962
                        ProjectNo,
3963
                        MarkupInfoID}, this.onEndDeleteMarkupDelegate, this.onDeleteMarkupCompletedDelegate, userState);
3964
        }
3965
        
3966
        public bool SetFavoriteVP(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag) {
3967
            return base.Channel.SetFavoriteVP(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag);
3968
        }
3969
        
3970
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3971
        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) {
3972
            return base.Channel.BeginSetFavoriteVP(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag, callback, asyncState);
3973
        }
3974
        
3975
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
3976
        public bool EndSetFavoriteVP(System.IAsyncResult result) {
3977
            return base.Channel.EndSetFavoriteVP(result);
3978
        }
3979
        
3980
        private System.IAsyncResult OnBeginSetFavoriteVP(object[] inValues, System.AsyncCallback callback, object asyncState) {
3981
            string prjNo = ((string)(inValues[0]));
3982
            string userID = ((string)(inValues[1]));
3983
            string groupNo = ((string)(inValues[2]));
3984
            string docNo = ((string)(inValues[3]));
3985
            string rev = ((string)(inValues[4]));
3986
            int SavePageNo = ((int)(inValues[5]));
3987
            string documentItemID = ((string)(inValues[6]));
3988
            string VPDescription = ((string)(inValues[7]));
3989
            IKCOM.FAVORITE_FLAG flag = ((IKCOM.FAVORITE_FLAG)(inValues[8]));
3990
            return this.BeginSetFavoriteVP(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag, callback, asyncState);
3991
        }
3992
        
3993
        private object[] OnEndSetFavoriteVP(System.IAsyncResult result) {
3994
            bool retVal = this.EndSetFavoriteVP(result);
3995
            return new object[] {
3996
                    retVal};
3997
        }
3998
        
3999
        private void OnSetFavoriteVPCompleted(object state) {
4000
            if ((this.SetFavoriteVPCompleted != null)) {
4001
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4002
                this.SetFavoriteVPCompleted(this, new SetFavoriteVPCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4003
            }
4004
        }
4005
        
4006
        public void SetFavoriteVPAsync(string prjNo, string userID, string groupNo, string docNo, string rev, int SavePageNo, string documentItemID, string VPDescription, IKCOM.FAVORITE_FLAG flag) {
4007
            this.SetFavoriteVPAsync(prjNo, userID, groupNo, docNo, rev, SavePageNo, documentItemID, VPDescription, flag, null);
4008
        }
4009
        
4010
        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) {
4011
            if ((this.onBeginSetFavoriteVPDelegate == null)) {
4012
                this.onBeginSetFavoriteVPDelegate = new BeginOperationDelegate(this.OnBeginSetFavoriteVP);
4013
            }
4014
            if ((this.onEndSetFavoriteVPDelegate == null)) {
4015
                this.onEndSetFavoriteVPDelegate = new EndOperationDelegate(this.OnEndSetFavoriteVP);
4016
            }
4017
            if ((this.onSetFavoriteVPCompletedDelegate == null)) {
4018
                this.onSetFavoriteVPCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetFavoriteVPCompleted);
4019
            }
4020
            base.InvokeAsync(this.onBeginSetFavoriteVPDelegate, new object[] {
4021
                        prjNo,
4022
                        userID,
4023
                        groupNo,
4024
                        docNo,
4025
                        rev,
4026
                        SavePageNo,
4027
                        documentItemID,
4028
                        VPDescription,
4029
                        flag}, this.onEndSetFavoriteVPDelegate, this.onSetFavoriteVPCompletedDelegate, userState);
4030
        }
4031
        
4032
        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) {
4033
            return base.Channel.SaveMarkupData(UserState, project_no, doc_id, user_id, mlmarkup_data);
4034
        }
4035
        
4036
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4037
        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) {
4038
            return base.Channel.BeginSaveMarkupData(UserState, project_no, doc_id, user_id, mlmarkup_data, callback, asyncState);
4039
        }
4040
        
4041
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4042
        public bool EndSaveMarkupData(System.IAsyncResult result) {
4043
            return base.Channel.EndSaveMarkupData(result);
4044
        }
4045
        
4046
        private System.IAsyncResult OnBeginSaveMarkupData(object[] inValues, System.AsyncCallback callback, object asyncState) {
4047
            IKCOM.MarkupInfoItem UserState = ((IKCOM.MarkupInfoItem)(inValues[0]));
4048
            string project_no = ((string)(inValues[1]));
4049
            string doc_id = ((string)(inValues[2]));
4050
            string user_id = ((string)(inValues[3]));
4051
            System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data = ((System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>)(inValues[4]));
4052
            return this.BeginSaveMarkupData(UserState, project_no, doc_id, user_id, mlmarkup_data, callback, asyncState);
4053
        }
4054
        
4055
        private object[] OnEndSaveMarkupData(System.IAsyncResult result) {
4056
            bool retVal = this.EndSaveMarkupData(result);
4057
            return new object[] {
4058
                    retVal};
4059
        }
4060
        
4061
        private void OnSaveMarkupDataCompleted(object state) {
4062
            if ((this.SaveMarkupDataCompleted != null)) {
4063
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4064
                this.SaveMarkupDataCompleted(this, new SaveMarkupDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4065
            }
4066
        }
4067
        
4068
        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) {
4069
            this.SaveMarkupDataAsync(UserState, project_no, doc_id, user_id, mlmarkup_data, null);
4070
        }
4071
        
4072
        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) {
4073
            if ((this.onBeginSaveMarkupDataDelegate == null)) {
4074
                this.onBeginSaveMarkupDataDelegate = new BeginOperationDelegate(this.OnBeginSaveMarkupData);
4075
            }
4076
            if ((this.onEndSaveMarkupDataDelegate == null)) {
4077
                this.onEndSaveMarkupDataDelegate = new EndOperationDelegate(this.OnEndSaveMarkupData);
4078
            }
4079
            if ((this.onSaveMarkupDataCompletedDelegate == null)) {
4080
                this.onSaveMarkupDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveMarkupDataCompleted);
4081
            }
4082
            base.InvokeAsync(this.onBeginSaveMarkupDataDelegate, new object[] {
4083
                        UserState,
4084
                        project_no,
4085
                        doc_id,
4086
                        user_id,
4087
                        mlmarkup_data}, this.onEndSaveMarkupDataDelegate, this.onSaveMarkupDataCompletedDelegate, userState1);
4088
        }
4089
        
4090
        public bool SavePageMarkupData(IKCOM.MarkupInfoItem UserState, int PageNo, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data) {
4091
            return base.Channel.SavePageMarkupData(UserState, PageNo, project_no, doc_id, user_id, mlmarkup_data);
4092
        }
4093
        
4094
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4095
        public System.IAsyncResult BeginSavePageMarkupData(IKCOM.MarkupInfoItem UserState, int PageNo, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data, System.AsyncCallback callback, object asyncState) {
4096
            return base.Channel.BeginSavePageMarkupData(UserState, PageNo, project_no, doc_id, user_id, mlmarkup_data, callback, asyncState);
4097
        }
4098
        
4099
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4100
        public bool EndSavePageMarkupData(System.IAsyncResult result) {
4101
            return base.Channel.EndSavePageMarkupData(result);
4102
        }
4103
        
4104
        private System.IAsyncResult OnBeginSavePageMarkupData(object[] inValues, System.AsyncCallback callback, object asyncState) {
4105
            IKCOM.MarkupInfoItem UserState = ((IKCOM.MarkupInfoItem)(inValues[0]));
4106
            int PageNo = ((int)(inValues[1]));
4107
            string project_no = ((string)(inValues[2]));
4108
            string doc_id = ((string)(inValues[3]));
4109
            string user_id = ((string)(inValues[4]));
4110
            System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data = ((System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA>)(inValues[5]));
4111
            return this.BeginSavePageMarkupData(UserState, PageNo, project_no, doc_id, user_id, mlmarkup_data, callback, asyncState);
4112
        }
4113
        
4114
        private object[] OnEndSavePageMarkupData(System.IAsyncResult result) {
4115
            bool retVal = this.EndSavePageMarkupData(result);
4116
            return new object[] {
4117
                    retVal};
4118
        }
4119
        
4120
        private void OnSavePageMarkupDataCompleted(object state) {
4121
            if ((this.SavePageMarkupDataCompleted != null)) {
4122
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4123
                this.SavePageMarkupDataCompleted(this, new SavePageMarkupDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4124
            }
4125
        }
4126
        
4127
        public void SavePageMarkupDataAsync(IKCOM.MarkupInfoItem UserState, int PageNo, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data) {
4128
            this.SavePageMarkupDataAsync(UserState, PageNo, project_no, doc_id, user_id, mlmarkup_data, null);
4129
        }
4130
        
4131
        public void SavePageMarkupDataAsync(IKCOM.MarkupInfoItem UserState, int PageNo, string project_no, string doc_id, string user_id, System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> mlmarkup_data, object userState1) {
4132
            if ((this.onBeginSavePageMarkupDataDelegate == null)) {
4133
                this.onBeginSavePageMarkupDataDelegate = new BeginOperationDelegate(this.OnBeginSavePageMarkupData);
4134
            }
4135
            if ((this.onEndSavePageMarkupDataDelegate == null)) {
4136
                this.onEndSavePageMarkupDataDelegate = new EndOperationDelegate(this.OnEndSavePageMarkupData);
4137
            }
4138
            if ((this.onSavePageMarkupDataCompletedDelegate == null)) {
4139
                this.onSavePageMarkupDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSavePageMarkupDataCompleted);
4140
            }
4141
            base.InvokeAsync(this.onBeginSavePageMarkupDataDelegate, new object[] {
4142
                        UserState,
4143
                        PageNo,
4144
                        project_no,
4145
                        doc_id,
4146
                        user_id,
4147
                        mlmarkup_data}, this.onEndSavePageMarkupDataDelegate, this.onSavePageMarkupDataCompletedDelegate, userState1);
4148
        }
4149
        
4150
        public bool UpdateMarkupData(string CommentID, long Group_ID, string ProjectNo) {
4151
            return base.Channel.UpdateMarkupData(CommentID, Group_ID, ProjectNo);
4152
        }
4153
        
4154
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4155
        public System.IAsyncResult BeginUpdateMarkupData(string CommentID, long Group_ID, string ProjectNo, System.AsyncCallback callback, object asyncState) {
4156
            return base.Channel.BeginUpdateMarkupData(CommentID, Group_ID, ProjectNo, callback, asyncState);
4157
        }
4158
        
4159
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4160
        public bool EndUpdateMarkupData(System.IAsyncResult result) {
4161
            return base.Channel.EndUpdateMarkupData(result);
4162
        }
4163
        
4164
        private System.IAsyncResult OnBeginUpdateMarkupData(object[] inValues, System.AsyncCallback callback, object asyncState) {
4165
            string CommentID = ((string)(inValues[0]));
4166
            long Group_ID = ((long)(inValues[1]));
4167
            string ProjectNo = ((string)(inValues[2]));
4168
            return this.BeginUpdateMarkupData(CommentID, Group_ID, ProjectNo, callback, asyncState);
4169
        }
4170
        
4171
        private object[] OnEndUpdateMarkupData(System.IAsyncResult result) {
4172
            bool retVal = this.EndUpdateMarkupData(result);
4173
            return new object[] {
4174
                    retVal};
4175
        }
4176
        
4177
        private void OnUpdateMarkupDataCompleted(object state) {
4178
            if ((this.UpdateMarkupDataCompleted != null)) {
4179
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4180
                this.UpdateMarkupDataCompleted(this, new UpdateMarkupDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4181
            }
4182
        }
4183
        
4184
        public void UpdateMarkupDataAsync(string CommentID, long Group_ID, string ProjectNo) {
4185
            this.UpdateMarkupDataAsync(CommentID, Group_ID, ProjectNo, null);
4186
        }
4187
        
4188
        public void UpdateMarkupDataAsync(string CommentID, long Group_ID, string ProjectNo, object userState) {
4189
            if ((this.onBeginUpdateMarkupDataDelegate == null)) {
4190
                this.onBeginUpdateMarkupDataDelegate = new BeginOperationDelegate(this.OnBeginUpdateMarkupData);
4191
            }
4192
            if ((this.onEndUpdateMarkupDataDelegate == null)) {
4193
                this.onEndUpdateMarkupDataDelegate = new EndOperationDelegate(this.OnEndUpdateMarkupData);
4194
            }
4195
            if ((this.onUpdateMarkupDataCompletedDelegate == null)) {
4196
                this.onUpdateMarkupDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateMarkupDataCompleted);
4197
            }
4198
            base.InvokeAsync(this.onBeginUpdateMarkupDataDelegate, new object[] {
4199
                        CommentID,
4200
                        Group_ID,
4201
                        ProjectNo}, this.onEndUpdateMarkupDataDelegate, this.onUpdateMarkupDataCompletedDelegate, userState);
4202
        }
4203
        
4204
        public bool SaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private) {
4205
            return base.Channel.SaveSymbol(symbol_private);
4206
        }
4207
        
4208
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4209
        public System.IAsyncResult BeginSaveSymbol(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private, System.AsyncCallback callback, object asyncState) {
4210
            return base.Channel.BeginSaveSymbol(symbol_private, callback, asyncState);
4211
        }
4212
        
4213
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4214
        public bool EndSaveSymbol(System.IAsyncResult result) {
4215
            return base.Channel.EndSaveSymbol(result);
4216
        }
4217
        
4218
        private System.IAsyncResult OnBeginSaveSymbol(object[] inValues, System.AsyncCallback callback, object asyncState) {
4219
            KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private = ((KCOMDataModel.DataModel.SYMBOL_PRIVATE)(inValues[0]));
4220
            return this.BeginSaveSymbol(symbol_private, callback, asyncState);
4221
        }
4222
        
4223
        private object[] OnEndSaveSymbol(System.IAsyncResult result) {
4224
            bool retVal = this.EndSaveSymbol(result);
4225
            return new object[] {
4226
                    retVal};
4227
        }
4228
        
4229
        private void OnSaveSymbolCompleted(object state) {
4230
            if ((this.SaveSymbolCompleted != null)) {
4231
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4232
                this.SaveSymbolCompleted(this, new SaveSymbolCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4233
            }
4234
        }
4235
        
4236
        public void SaveSymbolAsync(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private) {
4237
            this.SaveSymbolAsync(symbol_private, null);
4238
        }
4239
        
4240
        public void SaveSymbolAsync(KCOMDataModel.DataModel.SYMBOL_PRIVATE symbol_private, object userState) {
4241
            if ((this.onBeginSaveSymbolDelegate == null)) {
4242
                this.onBeginSaveSymbolDelegate = new BeginOperationDelegate(this.OnBeginSaveSymbol);
4243
            }
4244
            if ((this.onEndSaveSymbolDelegate == null)) {
4245
                this.onEndSaveSymbolDelegate = new EndOperationDelegate(this.OnEndSaveSymbol);
4246
            }
4247
            if ((this.onSaveSymbolCompletedDelegate == null)) {
4248
                this.onSaveSymbolCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveSymbolCompleted);
4249
            }
4250
            base.InvokeAsync(this.onBeginSaveSymbolDelegate, new object[] {
4251
                        symbol_private}, this.onEndSaveSymbolDelegate, this.onSaveSymbolCompletedDelegate, userState);
4252
        }
4253
        
4254
        public bool AddPublicSymbol(KCOMDataModel.DataModel.SYMBOL_PUBLIC symbol) {
4255
            return base.Channel.AddPublicSymbol(symbol);
4256
        }
4257
        
4258
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4259
        public System.IAsyncResult BeginAddPublicSymbol(KCOMDataModel.DataModel.SYMBOL_PUBLIC symbol, System.AsyncCallback callback, object asyncState) {
4260
            return base.Channel.BeginAddPublicSymbol(symbol, callback, asyncState);
4261
        }
4262
        
4263
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4264
        public bool EndAddPublicSymbol(System.IAsyncResult result) {
4265
            return base.Channel.EndAddPublicSymbol(result);
4266
        }
4267
        
4268
        private System.IAsyncResult OnBeginAddPublicSymbol(object[] inValues, System.AsyncCallback callback, object asyncState) {
4269
            KCOMDataModel.DataModel.SYMBOL_PUBLIC symbol = ((KCOMDataModel.DataModel.SYMBOL_PUBLIC)(inValues[0]));
4270
            return this.BeginAddPublicSymbol(symbol, callback, asyncState);
4271
        }
4272
        
4273
        private object[] OnEndAddPublicSymbol(System.IAsyncResult result) {
4274
            bool retVal = this.EndAddPublicSymbol(result);
4275
            return new object[] {
4276
                    retVal};
4277
        }
4278
        
4279
        private void OnAddPublicSymbolCompleted(object state) {
4280
            if ((this.AddPublicSymbolCompleted != null)) {
4281
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4282
                this.AddPublicSymbolCompleted(this, new AddPublicSymbolCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4283
            }
4284
        }
4285
        
4286
        public void AddPublicSymbolAsync(KCOMDataModel.DataModel.SYMBOL_PUBLIC symbol) {
4287
            this.AddPublicSymbolAsync(symbol, null);
4288
        }
4289
        
4290
        public void AddPublicSymbolAsync(KCOMDataModel.DataModel.SYMBOL_PUBLIC symbol, object userState) {
4291
            if ((this.onBeginAddPublicSymbolDelegate == null)) {
4292
                this.onBeginAddPublicSymbolDelegate = new BeginOperationDelegate(this.OnBeginAddPublicSymbol);
4293
            }
4294
            if ((this.onEndAddPublicSymbolDelegate == null)) {
4295
                this.onEndAddPublicSymbolDelegate = new EndOperationDelegate(this.OnEndAddPublicSymbol);
4296
            }
4297
            if ((this.onAddPublicSymbolCompletedDelegate == null)) {
4298
                this.onAddPublicSymbolCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddPublicSymbolCompleted);
4299
            }
4300
            base.InvokeAsync(this.onBeginAddPublicSymbolDelegate, new object[] {
4301
                        symbol}, this.onEndAddPublicSymbolDelegate, this.onAddPublicSymbolCompletedDelegate, userState);
4302
        }
4303
        
4304
        public bool DeleteSymbol(string symbol_id, int type) {
4305
            return base.Channel.DeleteSymbol(symbol_id, type);
4306
        }
4307
        
4308
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4309
        public System.IAsyncResult BeginDeleteSymbol(string symbol_id, int type, System.AsyncCallback callback, object asyncState) {
4310
            return base.Channel.BeginDeleteSymbol(symbol_id, type, callback, asyncState);
4311
        }
4312
        
4313
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4314
        public bool EndDeleteSymbol(System.IAsyncResult result) {
4315
            return base.Channel.EndDeleteSymbol(result);
4316
        }
4317
        
4318
        private System.IAsyncResult OnBeginDeleteSymbol(object[] inValues, System.AsyncCallback callback, object asyncState) {
4319
            string symbol_id = ((string)(inValues[0]));
4320
            int type = ((int)(inValues[1]));
4321
            return this.BeginDeleteSymbol(symbol_id, type, callback, asyncState);
4322
        }
4323
        
4324
        private object[] OnEndDeleteSymbol(System.IAsyncResult result) {
4325
            bool retVal = this.EndDeleteSymbol(result);
4326
            return new object[] {
4327
                    retVal};
4328
        }
4329
        
4330
        private void OnDeleteSymbolCompleted(object state) {
4331
            if ((this.DeleteSymbolCompleted != null)) {
4332
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4333
                this.DeleteSymbolCompleted(this, new DeleteSymbolCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4334
            }
4335
        }
4336
        
4337
        public void DeleteSymbolAsync(string symbol_id, int type) {
4338
            this.DeleteSymbolAsync(symbol_id, type, null);
4339
        }
4340
        
4341
        public void DeleteSymbolAsync(string symbol_id, int type, object userState) {
4342
            if ((this.onBeginDeleteSymbolDelegate == null)) {
4343
                this.onBeginDeleteSymbolDelegate = new BeginOperationDelegate(this.OnBeginDeleteSymbol);
4344
            }
4345
            if ((this.onEndDeleteSymbolDelegate == null)) {
4346
                this.onEndDeleteSymbolDelegate = new EndOperationDelegate(this.OnEndDeleteSymbol);
4347
            }
4348
            if ((this.onDeleteSymbolCompletedDelegate == null)) {
4349
                this.onDeleteSymbolCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnDeleteSymbolCompleted);
4350
            }
4351
            base.InvokeAsync(this.onBeginDeleteSymbolDelegate, new object[] {
4352
                        symbol_id,
4353
                        type}, this.onEndDeleteSymbolDelegate, this.onDeleteSymbolCompletedDelegate, userState);
4354
        }
4355
        
4356
        public bool RenameSymbol(string symbol_id, string name, int type) {
4357
            return base.Channel.RenameSymbol(symbol_id, name, type);
4358
        }
4359
        
4360
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4361
        public System.IAsyncResult BeginRenameSymbol(string symbol_id, string name, int type, System.AsyncCallback callback, object asyncState) {
4362
            return base.Channel.BeginRenameSymbol(symbol_id, name, type, callback, asyncState);
4363
        }
4364
        
4365
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4366
        public bool EndRenameSymbol(System.IAsyncResult result) {
4367
            return base.Channel.EndRenameSymbol(result);
4368
        }
4369
        
4370
        private System.IAsyncResult OnBeginRenameSymbol(object[] inValues, System.AsyncCallback callback, object asyncState) {
4371
            string symbol_id = ((string)(inValues[0]));
4372
            string name = ((string)(inValues[1]));
4373
            int type = ((int)(inValues[2]));
4374
            return this.BeginRenameSymbol(symbol_id, name, type, callback, asyncState);
4375
        }
4376
        
4377
        private object[] OnEndRenameSymbol(System.IAsyncResult result) {
4378
            bool retVal = this.EndRenameSymbol(result);
4379
            return new object[] {
4380
                    retVal};
4381
        }
4382
        
4383
        private void OnRenameSymbolCompleted(object state) {
4384
            if ((this.RenameSymbolCompleted != null)) {
4385
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4386
                this.RenameSymbolCompleted(this, new RenameSymbolCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4387
            }
4388
        }
4389
        
4390
        public void RenameSymbolAsync(string symbol_id, string name, int type) {
4391
            this.RenameSymbolAsync(symbol_id, name, type, null);
4392
        }
4393
        
4394
        public void RenameSymbolAsync(string symbol_id, string name, int type, object userState) {
4395
            if ((this.onBeginRenameSymbolDelegate == null)) {
4396
                this.onBeginRenameSymbolDelegate = new BeginOperationDelegate(this.OnBeginRenameSymbol);
4397
            }
4398
            if ((this.onEndRenameSymbolDelegate == null)) {
4399
                this.onEndRenameSymbolDelegate = new EndOperationDelegate(this.OnEndRenameSymbol);
4400
            }
4401
            if ((this.onRenameSymbolCompletedDelegate == null)) {
4402
                this.onRenameSymbolCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnRenameSymbolCompleted);
4403
            }
4404
            base.InvokeAsync(this.onBeginRenameSymbolDelegate, new object[] {
4405
                        symbol_id,
4406
                        name,
4407
                        type}, this.onEndRenameSymbolDelegate, this.onRenameSymbolCompletedDelegate, userState);
4408
        }
4409
        
4410
        public bool AddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
4411
            return base.Channel.AddCheckListHistory(project_no, Check_History);
4412
        }
4413
        
4414
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4415
        public System.IAsyncResult BeginAddCheckListHistory(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState) {
4416
            return base.Channel.BeginAddCheckListHistory(project_no, Check_History, callback, asyncState);
4417
        }
4418
        
4419
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4420
        public bool EndAddCheckListHistory(System.IAsyncResult result) {
4421
            return base.Channel.EndAddCheckListHistory(result);
4422
        }
4423
        
4424
        private System.IAsyncResult OnBeginAddCheckListHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
4425
            string project_no = ((string)(inValues[0]));
4426
            KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History = ((KCOMDataModel.DataModel.CHECK_LIST_HISTORY)(inValues[1]));
4427
            return this.BeginAddCheckListHistory(project_no, Check_History, callback, asyncState);
4428
        }
4429
        
4430
        private object[] OnEndAddCheckListHistory(System.IAsyncResult result) {
4431
            bool retVal = this.EndAddCheckListHistory(result);
4432
            return new object[] {
4433
                    retVal};
4434
        }
4435
        
4436
        private void OnAddCheckListHistoryCompleted(object state) {
4437
            if ((this.AddCheckListHistoryCompleted != null)) {
4438
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4439
                this.AddCheckListHistoryCompleted(this, new AddCheckListHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4440
            }
4441
        }
4442
        
4443
        public void AddCheckListHistoryAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
4444
            this.AddCheckListHistoryAsync(project_no, Check_History, null);
4445
        }
4446
        
4447
        public void AddCheckListHistoryAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, object userState) {
4448
            if ((this.onBeginAddCheckListHistoryDelegate == null)) {
4449
                this.onBeginAddCheckListHistoryDelegate = new BeginOperationDelegate(this.OnBeginAddCheckListHistory);
4450
            }
4451
            if ((this.onEndAddCheckListHistoryDelegate == null)) {
4452
                this.onEndAddCheckListHistoryDelegate = new EndOperationDelegate(this.OnEndAddCheckListHistory);
4453
            }
4454
            if ((this.onAddCheckListHistoryCompletedDelegate == null)) {
4455
                this.onAddCheckListHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddCheckListHistoryCompleted);
4456
            }
4457
            base.InvokeAsync(this.onBeginAddCheckListHistoryDelegate, new object[] {
4458
                        project_no,
4459
                        Check_History}, this.onEndAddCheckListHistoryDelegate, this.onAddCheckListHistoryCompletedDelegate, userState);
4460
        }
4461
        
4462
        public bool SaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
4463
            return base.Channel.SaveCheckListHistory(project_no, rev, Check_History);
4464
        }
4465
        
4466
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4467
        public System.IAsyncResult BeginSaveCheckListHistory(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, System.AsyncCallback callback, object asyncState) {
4468
            return base.Channel.BeginSaveCheckListHistory(project_no, rev, Check_History, callback, asyncState);
4469
        }
4470
        
4471
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4472
        public bool EndSaveCheckListHistory(System.IAsyncResult result) {
4473
            return base.Channel.EndSaveCheckListHistory(result);
4474
        }
4475
        
4476
        private System.IAsyncResult OnBeginSaveCheckListHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
4477
            string project_no = ((string)(inValues[0]));
4478
            string rev = ((string)(inValues[1]));
4479
            KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History = ((KCOMDataModel.DataModel.CHECK_LIST_HISTORY)(inValues[2]));
4480
            return this.BeginSaveCheckListHistory(project_no, rev, Check_History, callback, asyncState);
4481
        }
4482
        
4483
        private object[] OnEndSaveCheckListHistory(System.IAsyncResult result) {
4484
            bool retVal = this.EndSaveCheckListHistory(result);
4485
            return new object[] {
4486
                    retVal};
4487
        }
4488
        
4489
        private void OnSaveCheckListHistoryCompleted(object state) {
4490
            if ((this.SaveCheckListHistoryCompleted != null)) {
4491
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4492
                this.SaveCheckListHistoryCompleted(this, new SaveCheckListHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4493
            }
4494
        }
4495
        
4496
        public void SaveCheckListHistoryAsync(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History) {
4497
            this.SaveCheckListHistoryAsync(project_no, rev, Check_History, null);
4498
        }
4499
        
4500
        public void SaveCheckListHistoryAsync(string project_no, string rev, KCOMDataModel.DataModel.CHECK_LIST_HISTORY Check_History, object userState) {
4501
            if ((this.onBeginSaveCheckListHistoryDelegate == null)) {
4502
                this.onBeginSaveCheckListHistoryDelegate = new BeginOperationDelegate(this.OnBeginSaveCheckListHistory);
4503
            }
4504
            if ((this.onEndSaveCheckListHistoryDelegate == null)) {
4505
                this.onEndSaveCheckListHistoryDelegate = new EndOperationDelegate(this.OnEndSaveCheckListHistory);
4506
            }
4507
            if ((this.onSaveCheckListHistoryCompletedDelegate == null)) {
4508
                this.onSaveCheckListHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveCheckListHistoryCompleted);
4509
            }
4510
            base.InvokeAsync(this.onBeginSaveCheckListHistoryDelegate, new object[] {
4511
                        project_no,
4512
                        rev,
4513
                        Check_History}, this.onEndSaveCheckListHistoryDelegate, this.onSaveCheckListHistoryCompletedDelegate, userState);
4514
        }
4515
        
4516
        public bool SaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
4517
            return base.Channel.SaveCheckList(project_no, _id, Check_value);
4518
        }
4519
        
4520
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4521
        public System.IAsyncResult BeginSaveCheckList(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState) {
4522
            return base.Channel.BeginSaveCheckList(project_no, _id, Check_value, callback, asyncState);
4523
        }
4524
        
4525
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4526
        public bool EndSaveCheckList(System.IAsyncResult result) {
4527
            return base.Channel.EndSaveCheckList(result);
4528
        }
4529
        
4530
        private System.IAsyncResult OnBeginSaveCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4531
            string project_no = ((string)(inValues[0]));
4532
            string _id = ((string)(inValues[1]));
4533
            KCOMDataModel.DataModel.CHECK_LIST Check_value = ((KCOMDataModel.DataModel.CHECK_LIST)(inValues[2]));
4534
            return this.BeginSaveCheckList(project_no, _id, Check_value, callback, asyncState);
4535
        }
4536
        
4537
        private object[] OnEndSaveCheckList(System.IAsyncResult result) {
4538
            bool retVal = this.EndSaveCheckList(result);
4539
            return new object[] {
4540
                    retVal};
4541
        }
4542
        
4543
        private void OnSaveCheckListCompleted(object state) {
4544
            if ((this.SaveCheckListCompleted != null)) {
4545
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4546
                this.SaveCheckListCompleted(this, new SaveCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4547
            }
4548
        }
4549
        
4550
        public void SaveCheckListAsync(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
4551
            this.SaveCheckListAsync(project_no, _id, Check_value, null);
4552
        }
4553
        
4554
        public void SaveCheckListAsync(string project_no, string _id, KCOMDataModel.DataModel.CHECK_LIST Check_value, object userState) {
4555
            if ((this.onBeginSaveCheckListDelegate == null)) {
4556
                this.onBeginSaveCheckListDelegate = new BeginOperationDelegate(this.OnBeginSaveCheckList);
4557
            }
4558
            if ((this.onEndSaveCheckListDelegate == null)) {
4559
                this.onEndSaveCheckListDelegate = new EndOperationDelegate(this.OnEndSaveCheckList);
4560
            }
4561
            if ((this.onSaveCheckListCompletedDelegate == null)) {
4562
                this.onSaveCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveCheckListCompleted);
4563
            }
4564
            base.InvokeAsync(this.onBeginSaveCheckListDelegate, new object[] {
4565
                        project_no,
4566
                        _id,
4567
                        Check_value}, this.onEndSaveCheckListDelegate, this.onSaveCheckListCompletedDelegate, userState);
4568
        }
4569
        
4570
        public bool AddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
4571
            return base.Channel.AddCheckList(project_no, Check_value);
4572
        }
4573
        
4574
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4575
        public System.IAsyncResult BeginAddCheckList(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value, System.AsyncCallback callback, object asyncState) {
4576
            return base.Channel.BeginAddCheckList(project_no, Check_value, callback, asyncState);
4577
        }
4578
        
4579
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4580
        public bool EndAddCheckList(System.IAsyncResult result) {
4581
            return base.Channel.EndAddCheckList(result);
4582
        }
4583
        
4584
        private System.IAsyncResult OnBeginAddCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4585
            string project_no = ((string)(inValues[0]));
4586
            KCOMDataModel.DataModel.CHECK_LIST Check_value = ((KCOMDataModel.DataModel.CHECK_LIST)(inValues[1]));
4587
            return this.BeginAddCheckList(project_no, Check_value, callback, asyncState);
4588
        }
4589
        
4590
        private object[] OnEndAddCheckList(System.IAsyncResult result) {
4591
            bool retVal = this.EndAddCheckList(result);
4592
            return new object[] {
4593
                    retVal};
4594
        }
4595
        
4596
        private void OnAddCheckListCompleted(object state) {
4597
            if ((this.AddCheckListCompleted != null)) {
4598
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4599
                this.AddCheckListCompleted(this, new AddCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4600
            }
4601
        }
4602
        
4603
        public void AddCheckListAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value) {
4604
            this.AddCheckListAsync(project_no, Check_value, null);
4605
        }
4606
        
4607
        public void AddCheckListAsync(string project_no, KCOMDataModel.DataModel.CHECK_LIST Check_value, object userState) {
4608
            if ((this.onBeginAddCheckListDelegate == null)) {
4609
                this.onBeginAddCheckListDelegate = new BeginOperationDelegate(this.OnBeginAddCheckList);
4610
            }
4611
            if ((this.onEndAddCheckListDelegate == null)) {
4612
                this.onEndAddCheckListDelegate = new EndOperationDelegate(this.OnEndAddCheckList);
4613
            }
4614
            if ((this.onAddCheckListCompletedDelegate == null)) {
4615
                this.onAddCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddCheckListCompleted);
4616
            }
4617
            base.InvokeAsync(this.onBeginAddCheckListDelegate, new object[] {
4618
                        project_no,
4619
                        Check_value}, this.onEndAddCheckListDelegate, this.onAddCheckListCompletedDelegate, userState);
4620
        }
4621
        
4622
        public KCOMDataModel.DataModel.CHECK_LIST GetCheckList(string project_no, string _id) {
4623
            return base.Channel.GetCheckList(project_no, _id);
4624
        }
4625
        
4626
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4627
        public System.IAsyncResult BeginGetCheckList(string project_no, string _id, System.AsyncCallback callback, object asyncState) {
4628
            return base.Channel.BeginGetCheckList(project_no, _id, callback, asyncState);
4629
        }
4630
        
4631
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4632
        public KCOMDataModel.DataModel.CHECK_LIST EndGetCheckList(System.IAsyncResult result) {
4633
            return base.Channel.EndGetCheckList(result);
4634
        }
4635
        
4636
        private System.IAsyncResult OnBeginGetCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4637
            string project_no = ((string)(inValues[0]));
4638
            string _id = ((string)(inValues[1]));
4639
            return this.BeginGetCheckList(project_no, _id, callback, asyncState);
4640
        }
4641
        
4642
        private object[] OnEndGetCheckList(System.IAsyncResult result) {
4643
            KCOMDataModel.DataModel.CHECK_LIST retVal = this.EndGetCheckList(result);
4644
            return new object[] {
4645
                    retVal};
4646
        }
4647
        
4648
        private void OnGetCheckListCompleted(object state) {
4649
            if ((this.GetCheckListCompleted != null)) {
4650
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4651
                this.GetCheckListCompleted(this, new GetCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4652
            }
4653
        }
4654
        
4655
        public void GetCheckListAsync(string project_no, string _id) {
4656
            this.GetCheckListAsync(project_no, _id, null);
4657
        }
4658
        
4659
        public void GetCheckListAsync(string project_no, string _id, object userState) {
4660
            if ((this.onBeginGetCheckListDelegate == null)) {
4661
                this.onBeginGetCheckListDelegate = new BeginOperationDelegate(this.OnBeginGetCheckList);
4662
            }
4663
            if ((this.onEndGetCheckListDelegate == null)) {
4664
                this.onEndGetCheckListDelegate = new EndOperationDelegate(this.OnEndGetCheckList);
4665
            }
4666
            if ((this.onGetCheckListCompletedDelegate == null)) {
4667
                this.onGetCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckListCompleted);
4668
            }
4669
            base.InvokeAsync(this.onBeginGetCheckListDelegate, new object[] {
4670
                        project_no,
4671
                        _id}, this.onEndGetCheckListDelegate, this.onGetCheckListCompletedDelegate, userState);
4672
        }
4673
        
4674
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> GetUserCheckList(string project_no, string user_id, string doc_no) {
4675
            return base.Channel.GetUserCheckList(project_no, user_id, doc_no);
4676
        }
4677
        
4678
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4679
        public System.IAsyncResult BeginGetUserCheckList(string project_no, string user_id, string doc_no, System.AsyncCallback callback, object asyncState) {
4680
            return base.Channel.BeginGetUserCheckList(project_no, user_id, doc_no, callback, asyncState);
4681
        }
4682
        
4683
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4684
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> EndGetUserCheckList(System.IAsyncResult result) {
4685
            return base.Channel.EndGetUserCheckList(result);
4686
        }
4687
        
4688
        private System.IAsyncResult OnBeginGetUserCheckList(object[] inValues, System.AsyncCallback callback, object asyncState) {
4689
            string project_no = ((string)(inValues[0]));
4690
            string user_id = ((string)(inValues[1]));
4691
            string doc_no = ((string)(inValues[2]));
4692
            return this.BeginGetUserCheckList(project_no, user_id, doc_no, callback, asyncState);
4693
        }
4694
        
4695
        private object[] OnEndGetUserCheckList(System.IAsyncResult result) {
4696
            System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST> retVal = this.EndGetUserCheckList(result);
4697
            return new object[] {
4698
                    retVal};
4699
        }
4700
        
4701
        private void OnGetUserCheckListCompleted(object state) {
4702
            if ((this.GetUserCheckListCompleted != null)) {
4703
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4704
                this.GetUserCheckListCompleted(this, new GetUserCheckListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4705
            }
4706
        }
4707
        
4708
        public void GetUserCheckListAsync(string project_no, string user_id, string doc_no) {
4709
            this.GetUserCheckListAsync(project_no, user_id, doc_no, null);
4710
        }
4711
        
4712
        public void GetUserCheckListAsync(string project_no, string user_id, string doc_no, object userState) {
4713
            if ((this.onBeginGetUserCheckListDelegate == null)) {
4714
                this.onBeginGetUserCheckListDelegate = new BeginOperationDelegate(this.OnBeginGetUserCheckList);
4715
            }
4716
            if ((this.onEndGetUserCheckListDelegate == null)) {
4717
                this.onEndGetUserCheckListDelegate = new EndOperationDelegate(this.OnEndGetUserCheckList);
4718
            }
4719
            if ((this.onGetUserCheckListCompletedDelegate == null)) {
4720
                this.onGetUserCheckListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetUserCheckListCompleted);
4721
            }
4722
            base.InvokeAsync(this.onBeginGetUserCheckListDelegate, new object[] {
4723
                        project_no,
4724
                        user_id,
4725
                        doc_no}, this.onEndGetUserCheckListDelegate, this.onGetUserCheckListCompletedDelegate, userState);
4726
        }
4727
        
4728
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> GetCheckListHistory(string project_no, string _id) {
4729
            return base.Channel.GetCheckListHistory(project_no, _id);
4730
        }
4731
        
4732
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4733
        public System.IAsyncResult BeginGetCheckListHistory(string project_no, string _id, System.AsyncCallback callback, object asyncState) {
4734
            return base.Channel.BeginGetCheckListHistory(project_no, _id, callback, asyncState);
4735
        }
4736
        
4737
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4738
        public System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> EndGetCheckListHistory(System.IAsyncResult result) {
4739
            return base.Channel.EndGetCheckListHistory(result);
4740
        }
4741
        
4742
        private System.IAsyncResult OnBeginGetCheckListHistory(object[] inValues, System.AsyncCallback callback, object asyncState) {
4743
            string project_no = ((string)(inValues[0]));
4744
            string _id = ((string)(inValues[1]));
4745
            return this.BeginGetCheckListHistory(project_no, _id, callback, asyncState);
4746
        }
4747
        
4748
        private object[] OnEndGetCheckListHistory(System.IAsyncResult result) {
4749
            System.Collections.Generic.List<KCOMDataModel.DataModel.CHECK_LIST_HISTORY> retVal = this.EndGetCheckListHistory(result);
4750
            return new object[] {
4751
                    retVal};
4752
        }
4753
        
4754
        private void OnGetCheckListHistoryCompleted(object state) {
4755
            if ((this.GetCheckListHistoryCompleted != null)) {
4756
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4757
                this.GetCheckListHistoryCompleted(this, new GetCheckListHistoryCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4758
            }
4759
        }
4760
        
4761
        public void GetCheckListHistoryAsync(string project_no, string _id) {
4762
            this.GetCheckListHistoryAsync(project_no, _id, null);
4763
        }
4764
        
4765
        public void GetCheckListHistoryAsync(string project_no, string _id, object userState) {
4766
            if ((this.onBeginGetCheckListHistoryDelegate == null)) {
4767
                this.onBeginGetCheckListHistoryDelegate = new BeginOperationDelegate(this.OnBeginGetCheckListHistory);
4768
            }
4769
            if ((this.onEndGetCheckListHistoryDelegate == null)) {
4770
                this.onEndGetCheckListHistoryDelegate = new EndOperationDelegate(this.OnEndGetCheckListHistory);
4771
            }
4772
            if ((this.onGetCheckListHistoryCompletedDelegate == null)) {
4773
                this.onGetCheckListHistoryCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckListHistoryCompleted);
4774
            }
4775
            base.InvokeAsync(this.onBeginGetCheckListHistoryDelegate, new object[] {
4776
                        project_no,
4777
                        _id}, this.onEndGetCheckListHistoryDelegate, this.onGetCheckListHistoryCompletedDelegate, userState);
4778
        }
4779
        
4780
        public KCOMDataModel.DataModel.CHECK_LIST_HISTORY GetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev) {
4781
            return base.Channel.GetCheckListHistoryFirstOrDefault(project_no, checklist_id, rev);
4782
        }
4783
        
4784
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4785
        public System.IAsyncResult BeginGetCheckListHistoryFirstOrDefault(string project_no, string checklist_id, string rev, System.AsyncCallback callback, object asyncState) {
4786
            return base.Channel.BeginGetCheckListHistoryFirstOrDefault(project_no, checklist_id, rev, callback, asyncState);
4787
        }
4788
        
4789
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4790
        public KCOMDataModel.DataModel.CHECK_LIST_HISTORY EndGetCheckListHistoryFirstOrDefault(System.IAsyncResult result) {
4791
            return base.Channel.EndGetCheckListHistoryFirstOrDefault(result);
4792
        }
4793
        
4794
        private System.IAsyncResult OnBeginGetCheckListHistoryFirstOrDefault(object[] inValues, System.AsyncCallback callback, object asyncState) {
4795
            string project_no = ((string)(inValues[0]));
4796
            string checklist_id = ((string)(inValues[1]));
4797
            string rev = ((string)(inValues[2]));
4798
            return this.BeginGetCheckListHistoryFirstOrDefault(project_no, checklist_id, rev, callback, asyncState);
4799
        }
4800
        
4801
        private object[] OnEndGetCheckListHistoryFirstOrDefault(System.IAsyncResult result) {
4802
            KCOMDataModel.DataModel.CHECK_LIST_HISTORY retVal = this.EndGetCheckListHistoryFirstOrDefault(result);
4803
            return new object[] {
4804
                    retVal};
4805
        }
4806
        
4807
        private void OnGetCheckListHistoryFirstOrDefaultCompleted(object state) {
4808
            if ((this.GetCheckListHistoryFirstOrDefaultCompleted != null)) {
4809
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4810
                this.GetCheckListHistoryFirstOrDefaultCompleted(this, new GetCheckListHistoryFirstOrDefaultCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4811
            }
4812
        }
4813
        
4814
        public void GetCheckListHistoryFirstOrDefaultAsync(string project_no, string checklist_id, string rev) {
4815
            this.GetCheckListHistoryFirstOrDefaultAsync(project_no, checklist_id, rev, null);
4816
        }
4817
        
4818
        public void GetCheckListHistoryFirstOrDefaultAsync(string project_no, string checklist_id, string rev, object userState) {
4819
            if ((this.onBeginGetCheckListHistoryFirstOrDefaultDelegate == null)) {
4820
                this.onBeginGetCheckListHistoryFirstOrDefaultDelegate = new BeginOperationDelegate(this.OnBeginGetCheckListHistoryFirstOrDefault);
4821
            }
4822
            if ((this.onEndGetCheckListHistoryFirstOrDefaultDelegate == null)) {
4823
                this.onEndGetCheckListHistoryFirstOrDefaultDelegate = new EndOperationDelegate(this.OnEndGetCheckListHistoryFirstOrDefault);
4824
            }
4825
            if ((this.onGetCheckListHistoryFirstOrDefaultCompletedDelegate == null)) {
4826
                this.onGetCheckListHistoryFirstOrDefaultCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCheckListHistoryFirstOrDefaultCompleted);
4827
            }
4828
            base.InvokeAsync(this.onBeginGetCheckListHistoryFirstOrDefaultDelegate, new object[] {
4829
                        project_no,
4830
                        checklist_id,
4831
                        rev}, this.onEndGetCheckListHistoryFirstOrDefaultDelegate, this.onGetCheckListHistoryFirstOrDefaultCompletedDelegate, userState);
4832
        }
4833
        
4834
        public bool SavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage) {
4835
            return base.Channel.SavePageAngle(project_no, _mldocpage);
4836
        }
4837
        
4838
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4839
        public System.IAsyncResult BeginSavePageAngle(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage, System.AsyncCallback callback, object asyncState) {
4840
            return base.Channel.BeginSavePageAngle(project_no, _mldocpage, callback, asyncState);
4841
        }
4842
        
4843
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4844
        public bool EndSavePageAngle(System.IAsyncResult result) {
4845
            return base.Channel.EndSavePageAngle(result);
4846
        }
4847
        
4848
        private System.IAsyncResult OnBeginSavePageAngle(object[] inValues, System.AsyncCallback callback, object asyncState) {
4849
            string project_no = ((string)(inValues[0]));
4850
            System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage = ((System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE>)(inValues[1]));
4851
            return this.BeginSavePageAngle(project_no, _mldocpage, callback, asyncState);
4852
        }
4853
        
4854
        private object[] OnEndSavePageAngle(System.IAsyncResult result) {
4855
            bool retVal = this.EndSavePageAngle(result);
4856
            return new object[] {
4857
                    retVal};
4858
        }
4859
        
4860
        private void OnSavePageAngleCompleted(object state) {
4861
            if ((this.SavePageAngleCompleted != null)) {
4862
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4863
                this.SavePageAngleCompleted(this, new SavePageAngleCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4864
            }
4865
        }
4866
        
4867
        public void SavePageAngleAsync(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage) {
4868
            this.SavePageAngleAsync(project_no, _mldocpage, null);
4869
        }
4870
        
4871
        public void SavePageAngleAsync(string project_no, System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> _mldocpage, object userState) {
4872
            if ((this.onBeginSavePageAngleDelegate == null)) {
4873
                this.onBeginSavePageAngleDelegate = new BeginOperationDelegate(this.OnBeginSavePageAngle);
4874
            }
4875
            if ((this.onEndSavePageAngleDelegate == null)) {
4876
                this.onEndSavePageAngleDelegate = new EndOperationDelegate(this.OnEndSavePageAngle);
4877
            }
4878
            if ((this.onSavePageAngleCompletedDelegate == null)) {
4879
                this.onSavePageAngleCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSavePageAngleCompleted);
4880
            }
4881
            base.InvokeAsync(this.onBeginSavePageAngleDelegate, new object[] {
4882
                        project_no,
4883
                        _mldocpage}, this.onEndSavePageAngleDelegate, this.onSavePageAngleCompletedDelegate, userState);
4884
        }
4885
        
4886
        public KCOMDataModel.DataModel.MARKUP_INFO GetMarkupInfo(string project_no, string _id) {
4887
            return base.Channel.GetMarkupInfo(project_no, _id);
4888
        }
4889
        
4890
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4891
        public System.IAsyncResult BeginGetMarkupInfo(string project_no, string _id, System.AsyncCallback callback, object asyncState) {
4892
            return base.Channel.BeginGetMarkupInfo(project_no, _id, callback, asyncState);
4893
        }
4894
        
4895
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4896
        public KCOMDataModel.DataModel.MARKUP_INFO EndGetMarkupInfo(System.IAsyncResult result) {
4897
            return base.Channel.EndGetMarkupInfo(result);
4898
        }
4899
        
4900
        private System.IAsyncResult OnBeginGetMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
4901
            string project_no = ((string)(inValues[0]));
4902
            string _id = ((string)(inValues[1]));
4903
            return this.BeginGetMarkupInfo(project_no, _id, callback, asyncState);
4904
        }
4905
        
4906
        private object[] OnEndGetMarkupInfo(System.IAsyncResult result) {
4907
            KCOMDataModel.DataModel.MARKUP_INFO retVal = this.EndGetMarkupInfo(result);
4908
            return new object[] {
4909
                    retVal};
4910
        }
4911
        
4912
        private void OnGetMarkupInfoCompleted(object state) {
4913
            if ((this.GetMarkupInfoCompleted != null)) {
4914
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4915
                this.GetMarkupInfoCompleted(this, new GetMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4916
            }
4917
        }
4918
        
4919
        public void GetMarkupInfoAsync(string project_no, string _id) {
4920
            this.GetMarkupInfoAsync(project_no, _id, null);
4921
        }
4922
        
4923
        public void GetMarkupInfoAsync(string project_no, string _id, object userState) {
4924
            if ((this.onBeginGetMarkupInfoDelegate == null)) {
4925
                this.onBeginGetMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupInfo);
4926
            }
4927
            if ((this.onEndGetMarkupInfoDelegate == null)) {
4928
                this.onEndGetMarkupInfoDelegate = new EndOperationDelegate(this.OnEndGetMarkupInfo);
4929
            }
4930
            if ((this.onGetMarkupInfoCompletedDelegate == null)) {
4931
                this.onGetMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupInfoCompleted);
4932
            }
4933
            base.InvokeAsync(this.onBeginGetMarkupInfoDelegate, new object[] {
4934
                        project_no,
4935
                        _id}, this.onEndGetMarkupInfoDelegate, this.onGetMarkupInfoCompletedDelegate, userState);
4936
        }
4937
        
4938
        public System.Collections.Generic.List<string> GetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo) {
4939
            return base.Channel.GetMarkupDataListperPage(project_no, _markupinfoid, _pageNo);
4940
        }
4941
        
4942
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4943
        public System.IAsyncResult BeginGetMarkupDataListperPage(string project_no, string _markupinfoid, int _pageNo, System.AsyncCallback callback, object asyncState) {
4944
            return base.Channel.BeginGetMarkupDataListperPage(project_no, _markupinfoid, _pageNo, callback, asyncState);
4945
        }
4946
        
4947
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4948
        public System.Collections.Generic.List<string> EndGetMarkupDataListperPage(System.IAsyncResult result) {
4949
            return base.Channel.EndGetMarkupDataListperPage(result);
4950
        }
4951
        
4952
        private System.IAsyncResult OnBeginGetMarkupDataListperPage(object[] inValues, System.AsyncCallback callback, object asyncState) {
4953
            string project_no = ((string)(inValues[0]));
4954
            string _markupinfoid = ((string)(inValues[1]));
4955
            int _pageNo = ((int)(inValues[2]));
4956
            return this.BeginGetMarkupDataListperPage(project_no, _markupinfoid, _pageNo, callback, asyncState);
4957
        }
4958
        
4959
        private object[] OnEndGetMarkupDataListperPage(System.IAsyncResult result) {
4960
            System.Collections.Generic.List<string> retVal = this.EndGetMarkupDataListperPage(result);
4961
            return new object[] {
4962
                    retVal};
4963
        }
4964
        
4965
        private void OnGetMarkupDataListperPageCompleted(object state) {
4966
            if ((this.GetMarkupDataListperPageCompleted != null)) {
4967
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
4968
                this.GetMarkupDataListperPageCompleted(this, new GetMarkupDataListperPageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
4969
            }
4970
        }
4971
        
4972
        public void GetMarkupDataListperPageAsync(string project_no, string _markupinfoid, int _pageNo) {
4973
            this.GetMarkupDataListperPageAsync(project_no, _markupinfoid, _pageNo, null);
4974
        }
4975
        
4976
        public void GetMarkupDataListperPageAsync(string project_no, string _markupinfoid, int _pageNo, object userState) {
4977
            if ((this.onBeginGetMarkupDataListperPageDelegate == null)) {
4978
                this.onBeginGetMarkupDataListperPageDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupDataListperPage);
4979
            }
4980
            if ((this.onEndGetMarkupDataListperPageDelegate == null)) {
4981
                this.onEndGetMarkupDataListperPageDelegate = new EndOperationDelegate(this.OnEndGetMarkupDataListperPage);
4982
            }
4983
            if ((this.onGetMarkupDataListperPageCompletedDelegate == null)) {
4984
                this.onGetMarkupDataListperPageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupDataListperPageCompleted);
4985
            }
4986
            base.InvokeAsync(this.onBeginGetMarkupDataListperPageDelegate, new object[] {
4987
                        project_no,
4988
                        _markupinfoid,
4989
                        _pageNo}, this.onEndGetMarkupDataListperPageDelegate, this.onGetMarkupDataListperPageCompletedDelegate, userState);
4990
        }
4991
        
4992
        public bool AddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value) {
4993
            return base.Channel.AddMarkupInfo(project_no, value);
4994
        }
4995
        
4996
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
4997
        public System.IAsyncResult BeginAddMarkupInfo(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState) {
4998
            return base.Channel.BeginAddMarkupInfo(project_no, value, callback, asyncState);
4999
        }
5000
        
5001
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5002
        public bool EndAddMarkupInfo(System.IAsyncResult result) {
5003
            return base.Channel.EndAddMarkupInfo(result);
5004
        }
5005
        
5006
        private System.IAsyncResult OnBeginAddMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
5007
            string project_no = ((string)(inValues[0]));
5008
            KCOMDataModel.DataModel.MARKUP_INFO value = ((KCOMDataModel.DataModel.MARKUP_INFO)(inValues[1]));
5009
            return this.BeginAddMarkupInfo(project_no, value, callback, asyncState);
5010
        }
5011
        
5012
        private object[] OnEndAddMarkupInfo(System.IAsyncResult result) {
5013
            bool retVal = this.EndAddMarkupInfo(result);
5014
            return new object[] {
5015
                    retVal};
5016
        }
5017
        
5018
        private void OnAddMarkupInfoCompleted(object state) {
5019
            if ((this.AddMarkupInfoCompleted != null)) {
5020
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5021
                this.AddMarkupInfoCompleted(this, new AddMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5022
            }
5023
        }
5024
        
5025
        public void AddMarkupInfoAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value) {
5026
            this.AddMarkupInfoAsync(project_no, value, null);
5027
        }
5028
        
5029
        public void AddMarkupInfoAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO value, object userState) {
5030
            if ((this.onBeginAddMarkupInfoDelegate == null)) {
5031
                this.onBeginAddMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginAddMarkupInfo);
5032
            }
5033
            if ((this.onEndAddMarkupInfoDelegate == null)) {
5034
                this.onEndAddMarkupInfoDelegate = new EndOperationDelegate(this.OnEndAddMarkupInfo);
5035
            }
5036
            if ((this.onAddMarkupInfoCompletedDelegate == null)) {
5037
                this.onAddMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMarkupInfoCompleted);
5038
            }
5039
            base.InvokeAsync(this.onBeginAddMarkupInfoDelegate, new object[] {
5040
                        project_no,
5041
                        value}, this.onEndAddMarkupInfoDelegate, this.onAddMarkupInfoCompletedDelegate, userState);
5042
        }
5043
        
5044
        public bool AddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value) {
5045
            return base.Channel.AddMarkupInfoVersion(project_no, value);
5046
        }
5047
        
5048
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5049
        public System.IAsyncResult BeginAddMarkupInfoVersion(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value, System.AsyncCallback callback, object asyncState) {
5050
            return base.Channel.BeginAddMarkupInfoVersion(project_no, value, callback, asyncState);
5051
        }
5052
        
5053
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5054
        public bool EndAddMarkupInfoVersion(System.IAsyncResult result) {
5055
            return base.Channel.EndAddMarkupInfoVersion(result);
5056
        }
5057
        
5058
        private System.IAsyncResult OnBeginAddMarkupInfoVersion(object[] inValues, System.AsyncCallback callback, object asyncState) {
5059
            string project_no = ((string)(inValues[0]));
5060
            KCOMDataModel.DataModel.MARKUP_INFO_VERSION value = ((KCOMDataModel.DataModel.MARKUP_INFO_VERSION)(inValues[1]));
5061
            return this.BeginAddMarkupInfoVersion(project_no, value, callback, asyncState);
5062
        }
5063
        
5064
        private object[] OnEndAddMarkupInfoVersion(System.IAsyncResult result) {
5065
            bool retVal = this.EndAddMarkupInfoVersion(result);
5066
            return new object[] {
5067
                    retVal};
5068
        }
5069
        
5070
        private void OnAddMarkupInfoVersionCompleted(object state) {
5071
            if ((this.AddMarkupInfoVersionCompleted != null)) {
5072
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5073
                this.AddMarkupInfoVersionCompleted(this, new AddMarkupInfoVersionCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5074
            }
5075
        }
5076
        
5077
        public void AddMarkupInfoVersionAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value) {
5078
            this.AddMarkupInfoVersionAsync(project_no, value, null);
5079
        }
5080
        
5081
        public void AddMarkupInfoVersionAsync(string project_no, KCOMDataModel.DataModel.MARKUP_INFO_VERSION value, object userState) {
5082
            if ((this.onBeginAddMarkupInfoVersionDelegate == null)) {
5083
                this.onBeginAddMarkupInfoVersionDelegate = new BeginOperationDelegate(this.OnBeginAddMarkupInfoVersion);
5084
            }
5085
            if ((this.onEndAddMarkupInfoVersionDelegate == null)) {
5086
                this.onEndAddMarkupInfoVersionDelegate = new EndOperationDelegate(this.OnEndAddMarkupInfoVersion);
5087
            }
5088
            if ((this.onAddMarkupInfoVersionCompletedDelegate == null)) {
5089
                this.onAddMarkupInfoVersionCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMarkupInfoVersionCompleted);
5090
            }
5091
            base.InvokeAsync(this.onBeginAddMarkupInfoVersionDelegate, new object[] {
5092
                        project_no,
5093
                        value}, this.onEndAddMarkupInfoVersionDelegate, this.onAddMarkupInfoVersionCompletedDelegate, userState);
5094
        }
5095
        
5096
        public bool AddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value) {
5097
            return base.Channel.AddMarkupData(project_no, value);
5098
        }
5099
        
5100
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5101
        public System.IAsyncResult BeginAddMarkupData(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value, System.AsyncCallback callback, object asyncState) {
5102
            return base.Channel.BeginAddMarkupData(project_no, value, callback, asyncState);
5103
        }
5104
        
5105
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5106
        public bool EndAddMarkupData(System.IAsyncResult result) {
5107
            return base.Channel.EndAddMarkupData(result);
5108
        }
5109
        
5110
        private System.IAsyncResult OnBeginAddMarkupData(object[] inValues, System.AsyncCallback callback, object asyncState) {
5111
            string project_no = ((string)(inValues[0]));
5112
            KCOMDataModel.DataModel.MARKUP_DATA value = ((KCOMDataModel.DataModel.MARKUP_DATA)(inValues[1]));
5113
            return this.BeginAddMarkupData(project_no, value, callback, asyncState);
5114
        }
5115
        
5116
        private object[] OnEndAddMarkupData(System.IAsyncResult result) {
5117
            bool retVal = this.EndAddMarkupData(result);
5118
            return new object[] {
5119
                    retVal};
5120
        }
5121
        
5122
        private void OnAddMarkupDataCompleted(object state) {
5123
            if ((this.AddMarkupDataCompleted != null)) {
5124
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5125
                this.AddMarkupDataCompleted(this, new AddMarkupDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5126
            }
5127
        }
5128
        
5129
        public void AddMarkupDataAsync(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value) {
5130
            this.AddMarkupDataAsync(project_no, value, null);
5131
        }
5132
        
5133
        public void AddMarkupDataAsync(string project_no, KCOMDataModel.DataModel.MARKUP_DATA value, object userState) {
5134
            if ((this.onBeginAddMarkupDataDelegate == null)) {
5135
                this.onBeginAddMarkupDataDelegate = new BeginOperationDelegate(this.OnBeginAddMarkupData);
5136
            }
5137
            if ((this.onEndAddMarkupDataDelegate == null)) {
5138
                this.onEndAddMarkupDataDelegate = new EndOperationDelegate(this.OnEndAddMarkupData);
5139
            }
5140
            if ((this.onAddMarkupDataCompletedDelegate == null)) {
5141
                this.onAddMarkupDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMarkupDataCompleted);
5142
            }
5143
            base.InvokeAsync(this.onBeginAddMarkupDataDelegate, new object[] {
5144
                        project_no,
5145
                        value}, this.onEndAddMarkupDataDelegate, this.onAddMarkupDataCompletedDelegate, userState);
5146
        }
5147
        
5148
        public bool AvoidMarkupInfo(string project_no, string _doc_id) {
5149
            return base.Channel.AvoidMarkupInfo(project_no, _doc_id);
5150
        }
5151
        
5152
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5153
        public System.IAsyncResult BeginAvoidMarkupInfo(string project_no, string _doc_id, System.AsyncCallback callback, object asyncState) {
5154
            return base.Channel.BeginAvoidMarkupInfo(project_no, _doc_id, callback, asyncState);
5155
        }
5156
        
5157
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5158
        public bool EndAvoidMarkupInfo(System.IAsyncResult result) {
5159
            return base.Channel.EndAvoidMarkupInfo(result);
5160
        }
5161
        
5162
        private System.IAsyncResult OnBeginAvoidMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
5163
            string project_no = ((string)(inValues[0]));
5164
            string _doc_id = ((string)(inValues[1]));
5165
            return this.BeginAvoidMarkupInfo(project_no, _doc_id, callback, asyncState);
5166
        }
5167
        
5168
        private object[] OnEndAvoidMarkupInfo(System.IAsyncResult result) {
5169
            bool retVal = this.EndAvoidMarkupInfo(result);
5170
            return new object[] {
5171
                    retVal};
5172
        }
5173
        
5174
        private void OnAvoidMarkupInfoCompleted(object state) {
5175
            if ((this.AvoidMarkupInfoCompleted != null)) {
5176
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5177
                this.AvoidMarkupInfoCompleted(this, new AvoidMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5178
            }
5179
        }
5180
        
5181
        public void AvoidMarkupInfoAsync(string project_no, string _doc_id) {
5182
            this.AvoidMarkupInfoAsync(project_no, _doc_id, null);
5183
        }
5184
        
5185
        public void AvoidMarkupInfoAsync(string project_no, string _doc_id, object userState) {
5186
            if ((this.onBeginAvoidMarkupInfoDelegate == null)) {
5187
                this.onBeginAvoidMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginAvoidMarkupInfo);
5188
            }
5189
            if ((this.onEndAvoidMarkupInfoDelegate == null)) {
5190
                this.onEndAvoidMarkupInfoDelegate = new EndOperationDelegate(this.OnEndAvoidMarkupInfo);
5191
            }
5192
            if ((this.onAvoidMarkupInfoCompletedDelegate == null)) {
5193
                this.onAvoidMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAvoidMarkupInfoCompleted);
5194
            }
5195
            base.InvokeAsync(this.onBeginAvoidMarkupInfoDelegate, new object[] {
5196
                        project_no,
5197
                        _doc_id}, this.onEndAvoidMarkupInfoDelegate, this.onAvoidMarkupInfoCompletedDelegate, userState);
5198
        }
5199
        
5200
        public bool SaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value) {
5201
            return base.Channel.SaveMarkupInfo(project_no, _id, value);
5202
        }
5203
        
5204
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5205
        public System.IAsyncResult BeginSaveMarkupInfo(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value, System.AsyncCallback callback, object asyncState) {
5206
            return base.Channel.BeginSaveMarkupInfo(project_no, _id, value, callback, asyncState);
5207
        }
5208
        
5209
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5210
        public bool EndSaveMarkupInfo(System.IAsyncResult result) {
5211
            return base.Channel.EndSaveMarkupInfo(result);
5212
        }
5213
        
5214
        private System.IAsyncResult OnBeginSaveMarkupInfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
5215
            string project_no = ((string)(inValues[0]));
5216
            string _id = ((string)(inValues[1]));
5217
            KCOMDataModel.DataModel.MARKUP_INFO value = ((KCOMDataModel.DataModel.MARKUP_INFO)(inValues[2]));
5218
            return this.BeginSaveMarkupInfo(project_no, _id, value, callback, asyncState);
5219
        }
5220
        
5221
        private object[] OnEndSaveMarkupInfo(System.IAsyncResult result) {
5222
            bool retVal = this.EndSaveMarkupInfo(result);
5223
            return new object[] {
5224
                    retVal};
5225
        }
5226
        
5227
        private void OnSaveMarkupInfoCompleted(object state) {
5228
            if ((this.SaveMarkupInfoCompleted != null)) {
5229
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5230
                this.SaveMarkupInfoCompleted(this, new SaveMarkupInfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5231
            }
5232
        }
5233
        
5234
        public void SaveMarkupInfoAsync(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value) {
5235
            this.SaveMarkupInfoAsync(project_no, _id, value, null);
5236
        }
5237
        
5238
        public void SaveMarkupInfoAsync(string project_no, string _id, KCOMDataModel.DataModel.MARKUP_INFO value, object userState) {
5239
            if ((this.onBeginSaveMarkupInfoDelegate == null)) {
5240
                this.onBeginSaveMarkupInfoDelegate = new BeginOperationDelegate(this.OnBeginSaveMarkupInfo);
5241
            }
5242
            if ((this.onEndSaveMarkupInfoDelegate == null)) {
5243
                this.onEndSaveMarkupInfoDelegate = new EndOperationDelegate(this.OnEndSaveMarkupInfo);
5244
            }
5245
            if ((this.onSaveMarkupInfoCompletedDelegate == null)) {
5246
                this.onSaveMarkupInfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveMarkupInfoCompleted);
5247
            }
5248
            base.InvokeAsync(this.onBeginSaveMarkupInfoDelegate, new object[] {
5249
                        project_no,
5250
                        _id,
5251
                        value}, this.onEndSaveMarkupInfoDelegate, this.onSaveMarkupInfoCompletedDelegate, userState);
5252
        }
5253
        
5254
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> GetMarkupDataList(string project_no, string _versionid) {
5255
            return base.Channel.GetMarkupDataList(project_no, _versionid);
5256
        }
5257
        
5258
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5259
        public System.IAsyncResult BeginGetMarkupDataList(string project_no, string _versionid, System.AsyncCallback callback, object asyncState) {
5260
            return base.Channel.BeginGetMarkupDataList(project_no, _versionid, callback, asyncState);
5261
        }
5262
        
5263
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5264
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndGetMarkupDataList(System.IAsyncResult result) {
5265
            return base.Channel.EndGetMarkupDataList(result);
5266
        }
5267
        
5268
        private System.IAsyncResult OnBeginGetMarkupDataList(object[] inValues, System.AsyncCallback callback, object asyncState) {
5269
            string project_no = ((string)(inValues[0]));
5270
            string _versionid = ((string)(inValues[1]));
5271
            return this.BeginGetMarkupDataList(project_no, _versionid, callback, asyncState);
5272
        }
5273
        
5274
        private object[] OnEndGetMarkupDataList(System.IAsyncResult result) {
5275
            System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> retVal = this.EndGetMarkupDataList(result);
5276
            return new object[] {
5277
                    retVal};
5278
        }
5279
        
5280
        private void OnGetMarkupDataListCompleted(object state) {
5281
            if ((this.GetMarkupDataListCompleted != null)) {
5282
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5283
                this.GetMarkupDataListCompleted(this, new GetMarkupDataListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5284
            }
5285
        }
5286
        
5287
        public void GetMarkupDataListAsync(string project_no, string _versionid) {
5288
            this.GetMarkupDataListAsync(project_no, _versionid, null);
5289
        }
5290
        
5291
        public void GetMarkupDataListAsync(string project_no, string _versionid, object userState) {
5292
            if ((this.onBeginGetMarkupDataListDelegate == null)) {
5293
                this.onBeginGetMarkupDataListDelegate = new BeginOperationDelegate(this.OnBeginGetMarkupDataList);
5294
            }
5295
            if ((this.onEndGetMarkupDataListDelegate == null)) {
5296
                this.onEndGetMarkupDataListDelegate = new EndOperationDelegate(this.OnEndGetMarkupDataList);
5297
            }
5298
            if ((this.onGetMarkupDataListCompletedDelegate == null)) {
5299
                this.onGetMarkupDataListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMarkupDataListCompleted);
5300
            }
5301
            base.InvokeAsync(this.onBeginGetMarkupDataListDelegate, new object[] {
5302
                        project_no,
5303
                        _versionid}, this.onEndGetMarkupDataListDelegate, this.onGetMarkupDataListCompletedDelegate, userState);
5304
        }
5305
        
5306
        public bool Consolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
5307
            return base.Channel.Consolidate(project_no, _user_id, _doc_id, markupInfoItems);
5308
        }
5309
        
5310
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5311
        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) {
5312
            return base.Channel.BeginConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
5313
        }
5314
        
5315
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5316
        public bool EndConsolidate(System.IAsyncResult result) {
5317
            return base.Channel.EndConsolidate(result);
5318
        }
5319
        
5320
        private System.IAsyncResult OnBeginConsolidate(object[] inValues, System.AsyncCallback callback, object asyncState) {
5321
            string project_no = ((string)(inValues[0]));
5322
            string _user_id = ((string)(inValues[1]));
5323
            string _doc_id = ((string)(inValues[2]));
5324
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems = ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(inValues[3]));
5325
            return this.BeginConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
5326
        }
5327
        
5328
        private object[] OnEndConsolidate(System.IAsyncResult result) {
5329
            bool retVal = this.EndConsolidate(result);
5330
            return new object[] {
5331
                    retVal};
5332
        }
5333
        
5334
        private void OnConsolidateCompleted(object state) {
5335
            if ((this.ConsolidateCompleted != null)) {
5336
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5337
                this.ConsolidateCompleted(this, new ConsolidateCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5338
            }
5339
        }
5340
        
5341
        public void ConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
5342
            this.ConsolidateAsync(project_no, _user_id, _doc_id, markupInfoItems, null);
5343
        }
5344
        
5345
        public void ConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, object userState) {
5346
            if ((this.onBeginConsolidateDelegate == null)) {
5347
                this.onBeginConsolidateDelegate = new BeginOperationDelegate(this.OnBeginConsolidate);
5348
            }
5349
            if ((this.onEndConsolidateDelegate == null)) {
5350
                this.onEndConsolidateDelegate = new EndOperationDelegate(this.OnEndConsolidate);
5351
            }
5352
            if ((this.onConsolidateCompletedDelegate == null)) {
5353
                this.onConsolidateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnConsolidateCompleted);
5354
            }
5355
            base.InvokeAsync(this.onBeginConsolidateDelegate, new object[] {
5356
                        project_no,
5357
                        _user_id,
5358
                        _doc_id,
5359
                        markupInfoItems}, this.onEndConsolidateDelegate, this.onConsolidateCompletedDelegate, userState);
5360
        }
5361
        
5362
        public KCOM.ServiceDeepView.FinalPDFResult ConsolidateMergedPDF(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, string ProjectNo, string DocInfoID, string CreateUserID) {
5363
            return base.Channel.ConsolidateMergedPDF(project_no, _user_id, _doc_id, markupInfoItems, ProjectNo, DocInfoID, CreateUserID);
5364
        }
5365
        
5366
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5367
        public System.IAsyncResult BeginConsolidateMergedPDF(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, string ProjectNo, string DocInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState) {
5368
            return base.Channel.BeginConsolidateMergedPDF(project_no, _user_id, _doc_id, markupInfoItems, ProjectNo, DocInfoID, CreateUserID, callback, asyncState);
5369
        }
5370
        
5371
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5372
        public KCOM.ServiceDeepView.FinalPDFResult EndConsolidateMergedPDF(System.IAsyncResult result) {
5373
            return base.Channel.EndConsolidateMergedPDF(result);
5374
        }
5375
        
5376
        private System.IAsyncResult OnBeginConsolidateMergedPDF(object[] inValues, System.AsyncCallback callback, object asyncState) {
5377
            string project_no = ((string)(inValues[0]));
5378
            string _user_id = ((string)(inValues[1]));
5379
            string _doc_id = ((string)(inValues[2]));
5380
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems = ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(inValues[3]));
5381
            string ProjectNo = ((string)(inValues[4]));
5382
            string DocInfoID = ((string)(inValues[5]));
5383
            string CreateUserID = ((string)(inValues[6]));
5384
            return this.BeginConsolidateMergedPDF(project_no, _user_id, _doc_id, markupInfoItems, ProjectNo, DocInfoID, CreateUserID, callback, asyncState);
5385
        }
5386
        
5387
        private object[] OnEndConsolidateMergedPDF(System.IAsyncResult result) {
5388
            KCOM.ServiceDeepView.FinalPDFResult retVal = this.EndConsolidateMergedPDF(result);
5389
            return new object[] {
5390
                    retVal};
5391
        }
5392
        
5393
        private void OnConsolidateMergedPDFCompleted(object state) {
5394
            if ((this.ConsolidateMergedPDFCompleted != null)) {
5395
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5396
                this.ConsolidateMergedPDFCompleted(this, new ConsolidateMergedPDFCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5397
            }
5398
        }
5399
        
5400
        public void ConsolidateMergedPDFAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, string ProjectNo, string DocInfoID, string CreateUserID) {
5401
            this.ConsolidateMergedPDFAsync(project_no, _user_id, _doc_id, markupInfoItems, ProjectNo, DocInfoID, CreateUserID, null);
5402
        }
5403
        
5404
        public void ConsolidateMergedPDFAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, string ProjectNo, string DocInfoID, string CreateUserID, object userState) {
5405
            if ((this.onBeginConsolidateMergedPDFDelegate == null)) {
5406
                this.onBeginConsolidateMergedPDFDelegate = new BeginOperationDelegate(this.OnBeginConsolidateMergedPDF);
5407
            }
5408
            if ((this.onEndConsolidateMergedPDFDelegate == null)) {
5409
                this.onEndConsolidateMergedPDFDelegate = new EndOperationDelegate(this.OnEndConsolidateMergedPDF);
5410
            }
5411
            if ((this.onConsolidateMergedPDFCompletedDelegate == null)) {
5412
                this.onConsolidateMergedPDFCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnConsolidateMergedPDFCompleted);
5413
            }
5414
            base.InvokeAsync(this.onBeginConsolidateMergedPDFDelegate, new object[] {
5415
                        project_no,
5416
                        _user_id,
5417
                        _doc_id,
5418
                        markupInfoItems,
5419
                        ProjectNo,
5420
                        DocInfoID,
5421
                        CreateUserID}, this.onEndConsolidateMergedPDFDelegate, this.onConsolidateMergedPDFCompletedDelegate, userState);
5422
        }
5423
        
5424
        public bool TeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
5425
            return base.Channel.TeamConsolidate(project_no, _user_id, _doc_id, markupInfoItems);
5426
        }
5427
        
5428
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5429
        public System.IAsyncResult BeginTeamConsolidate(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, System.AsyncCallback callback, object asyncState) {
5430
            return base.Channel.BeginTeamConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
5431
        }
5432
        
5433
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5434
        public bool EndTeamConsolidate(System.IAsyncResult result) {
5435
            return base.Channel.EndTeamConsolidate(result);
5436
        }
5437
        
5438
        private System.IAsyncResult OnBeginTeamConsolidate(object[] inValues, System.AsyncCallback callback, object asyncState) {
5439
            string project_no = ((string)(inValues[0]));
5440
            string _user_id = ((string)(inValues[1]));
5441
            string _doc_id = ((string)(inValues[2]));
5442
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems = ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(inValues[3]));
5443
            return this.BeginTeamConsolidate(project_no, _user_id, _doc_id, markupInfoItems, callback, asyncState);
5444
        }
5445
        
5446
        private object[] OnEndTeamConsolidate(System.IAsyncResult result) {
5447
            bool retVal = this.EndTeamConsolidate(result);
5448
            return new object[] {
5449
                    retVal};
5450
        }
5451
        
5452
        private void OnTeamConsolidateCompleted(object state) {
5453
            if ((this.TeamConsolidateCompleted != null)) {
5454
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5455
                this.TeamConsolidateCompleted(this, new TeamConsolidateCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5456
            }
5457
        }
5458
        
5459
        public void TeamConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems) {
5460
            this.TeamConsolidateAsync(project_no, _user_id, _doc_id, markupInfoItems, null);
5461
        }
5462
        
5463
        public void TeamConsolidateAsync(string project_no, string _user_id, string _doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> markupInfoItems, object userState) {
5464
            if ((this.onBeginTeamConsolidateDelegate == null)) {
5465
                this.onBeginTeamConsolidateDelegate = new BeginOperationDelegate(this.OnBeginTeamConsolidate);
5466
            }
5467
            if ((this.onEndTeamConsolidateDelegate == null)) {
5468
                this.onEndTeamConsolidateDelegate = new EndOperationDelegate(this.OnEndTeamConsolidate);
5469
            }
5470
            if ((this.onTeamConsolidateCompletedDelegate == null)) {
5471
                this.onTeamConsolidateCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnTeamConsolidateCompleted);
5472
            }
5473
            base.InvokeAsync(this.onBeginTeamConsolidateDelegate, new object[] {
5474
                        project_no,
5475
                        _user_id,
5476
                        _doc_id,
5477
                        markupInfoItems}, this.onEndTeamConsolidateDelegate, this.onTeamConsolidateCompletedDelegate, userState);
5478
        }
5479
        
5480
        public KCOMDataModel.DataModel.MEMBER GetMember(string project_no, string user_id) {
5481
            return base.Channel.GetMember(project_no, user_id);
5482
        }
5483
        
5484
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5485
        public System.IAsyncResult BeginGetMember(string project_no, string user_id, System.AsyncCallback callback, object asyncState) {
5486
            return base.Channel.BeginGetMember(project_no, user_id, callback, asyncState);
5487
        }
5488
        
5489
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5490
        public KCOMDataModel.DataModel.MEMBER EndGetMember(System.IAsyncResult result) {
5491
            return base.Channel.EndGetMember(result);
5492
        }
5493
        
5494
        private System.IAsyncResult OnBeginGetMember(object[] inValues, System.AsyncCallback callback, object asyncState) {
5495
            string project_no = ((string)(inValues[0]));
5496
            string user_id = ((string)(inValues[1]));
5497
            return this.BeginGetMember(project_no, user_id, callback, asyncState);
5498
        }
5499
        
5500
        private object[] OnEndGetMember(System.IAsyncResult result) {
5501
            KCOMDataModel.DataModel.MEMBER retVal = this.EndGetMember(result);
5502
            return new object[] {
5503
                    retVal};
5504
        }
5505
        
5506
        private void OnGetMemberCompleted(object state) {
5507
            if ((this.GetMemberCompleted != null)) {
5508
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5509
                this.GetMemberCompleted(this, new GetMemberCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5510
            }
5511
        }
5512
        
5513
        public void GetMemberAsync(string project_no, string user_id) {
5514
            this.GetMemberAsync(project_no, user_id, null);
5515
        }
5516
        
5517
        public void GetMemberAsync(string project_no, string user_id, object userState) {
5518
            if ((this.onBeginGetMemberDelegate == null)) {
5519
                this.onBeginGetMemberDelegate = new BeginOperationDelegate(this.OnBeginGetMember);
5520
            }
5521
            if ((this.onEndGetMemberDelegate == null)) {
5522
                this.onEndGetMemberDelegate = new EndOperationDelegate(this.OnEndGetMember);
5523
            }
5524
            if ((this.onGetMemberCompletedDelegate == null)) {
5525
                this.onGetMemberCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMemberCompleted);
5526
            }
5527
            base.InvokeAsync(this.onBeginGetMemberDelegate, new object[] {
5528
                        project_no,
5529
                        user_id}, this.onEndGetMemberDelegate, this.onGetMemberCompletedDelegate, userState);
5530
        }
5531
        
5532
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> GetSymbolList(string user_id) {
5533
            return base.Channel.GetSymbolList(user_id);
5534
        }
5535
        
5536
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5537
        public System.IAsyncResult BeginGetSymbolList(string user_id, System.AsyncCallback callback, object asyncState) {
5538
            return base.Channel.BeginGetSymbolList(user_id, callback, asyncState);
5539
        }
5540
        
5541
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5542
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> EndGetSymbolList(System.IAsyncResult result) {
5543
            return base.Channel.EndGetSymbolList(result);
5544
        }
5545
        
5546
        private System.IAsyncResult OnBeginGetSymbolList(object[] inValues, System.AsyncCallback callback, object asyncState) {
5547
            string user_id = ((string)(inValues[0]));
5548
            return this.BeginGetSymbolList(user_id, callback, asyncState);
5549
        }
5550
        
5551
        private object[] OnEndGetSymbolList(System.IAsyncResult result) {
5552
            System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PRIVATE> retVal = this.EndGetSymbolList(result);
5553
            return new object[] {
5554
                    retVal};
5555
        }
5556
        
5557
        private void OnGetSymbolListCompleted(object state) {
5558
            if ((this.GetSymbolListCompleted != null)) {
5559
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5560
                this.GetSymbolListCompleted(this, new GetSymbolListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5561
            }
5562
        }
5563
        
5564
        public void GetSymbolListAsync(string user_id) {
5565
            this.GetSymbolListAsync(user_id, null);
5566
        }
5567
        
5568
        public void GetSymbolListAsync(string user_id, object userState) {
5569
            if ((this.onBeginGetSymbolListDelegate == null)) {
5570
                this.onBeginGetSymbolListDelegate = new BeginOperationDelegate(this.OnBeginGetSymbolList);
5571
            }
5572
            if ((this.onEndGetSymbolListDelegate == null)) {
5573
                this.onEndGetSymbolListDelegate = new EndOperationDelegate(this.OnEndGetSymbolList);
5574
            }
5575
            if ((this.onGetSymbolListCompletedDelegate == null)) {
5576
                this.onGetSymbolListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSymbolListCompleted);
5577
            }
5578
            base.InvokeAsync(this.onBeginGetSymbolListDelegate, new object[] {
5579
                        user_id}, this.onEndGetSymbolListDelegate, this.onGetSymbolListCompletedDelegate, userState);
5580
        }
5581
        
5582
        public System.Collections.Generic.List<string> GetPublicSymbolDeptList() {
5583
            return base.Channel.GetPublicSymbolDeptList();
5584
        }
5585
        
5586
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5587
        public System.IAsyncResult BeginGetPublicSymbolDeptList(System.AsyncCallback callback, object asyncState) {
5588
            return base.Channel.BeginGetPublicSymbolDeptList(callback, asyncState);
5589
        }
5590
        
5591
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5592
        public System.Collections.Generic.List<string> EndGetPublicSymbolDeptList(System.IAsyncResult result) {
5593
            return base.Channel.EndGetPublicSymbolDeptList(result);
5594
        }
5595
        
5596
        private System.IAsyncResult OnBeginGetPublicSymbolDeptList(object[] inValues, System.AsyncCallback callback, object asyncState) {
5597
            return this.BeginGetPublicSymbolDeptList(callback, asyncState);
5598
        }
5599
        
5600
        private object[] OnEndGetPublicSymbolDeptList(System.IAsyncResult result) {
5601
            System.Collections.Generic.List<string> retVal = this.EndGetPublicSymbolDeptList(result);
5602
            return new object[] {
5603
                    retVal};
5604
        }
5605
        
5606
        private void OnGetPublicSymbolDeptListCompleted(object state) {
5607
            if ((this.GetPublicSymbolDeptListCompleted != null)) {
5608
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5609
                this.GetPublicSymbolDeptListCompleted(this, new GetPublicSymbolDeptListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5610
            }
5611
        }
5612
        
5613
        public void GetPublicSymbolDeptListAsync() {
5614
            this.GetPublicSymbolDeptListAsync(null);
5615
        }
5616
        
5617
        public void GetPublicSymbolDeptListAsync(object userState) {
5618
            if ((this.onBeginGetPublicSymbolDeptListDelegate == null)) {
5619
                this.onBeginGetPublicSymbolDeptListDelegate = new BeginOperationDelegate(this.OnBeginGetPublicSymbolDeptList);
5620
            }
5621
            if ((this.onEndGetPublicSymbolDeptListDelegate == null)) {
5622
                this.onEndGetPublicSymbolDeptListDelegate = new EndOperationDelegate(this.OnEndGetPublicSymbolDeptList);
5623
            }
5624
            if ((this.onGetPublicSymbolDeptListCompletedDelegate == null)) {
5625
                this.onGetPublicSymbolDeptListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPublicSymbolDeptListCompleted);
5626
            }
5627
            base.InvokeAsync(this.onBeginGetPublicSymbolDeptListDelegate, null, this.onEndGetPublicSymbolDeptListDelegate, this.onGetPublicSymbolDeptListCompletedDelegate, userState);
5628
        }
5629
        
5630
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> GetPublicSymbolList(string dept) {
5631
            return base.Channel.GetPublicSymbolList(dept);
5632
        }
5633
        
5634
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5635
        public System.IAsyncResult BeginGetPublicSymbolList(string dept, System.AsyncCallback callback, object asyncState) {
5636
            return base.Channel.BeginGetPublicSymbolList(dept, callback, asyncState);
5637
        }
5638
        
5639
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5640
        public System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> EndGetPublicSymbolList(System.IAsyncResult result) {
5641
            return base.Channel.EndGetPublicSymbolList(result);
5642
        }
5643
        
5644
        private System.IAsyncResult OnBeginGetPublicSymbolList(object[] inValues, System.AsyncCallback callback, object asyncState) {
5645
            string dept = ((string)(inValues[0]));
5646
            return this.BeginGetPublicSymbolList(dept, callback, asyncState);
5647
        }
5648
        
5649
        private object[] OnEndGetPublicSymbolList(System.IAsyncResult result) {
5650
            System.Collections.Generic.List<KCOMDataModel.DataModel.SYMBOL_PUBLIC> retVal = this.EndGetPublicSymbolList(result);
5651
            return new object[] {
5652
                    retVal};
5653
        }
5654
        
5655
        private void OnGetPublicSymbolListCompleted(object state) {
5656
            if ((this.GetPublicSymbolListCompleted != null)) {
5657
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5658
                this.GetPublicSymbolListCompleted(this, new GetPublicSymbolListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5659
            }
5660
        }
5661
        
5662
        public void GetPublicSymbolListAsync(string dept) {
5663
            this.GetPublicSymbolListAsync(dept, null);
5664
        }
5665
        
5666
        public void GetPublicSymbolListAsync(string dept, object userState) {
5667
            if ((this.onBeginGetPublicSymbolListDelegate == null)) {
5668
                this.onBeginGetPublicSymbolListDelegate = new BeginOperationDelegate(this.OnBeginGetPublicSymbolList);
5669
            }
5670
            if ((this.onEndGetPublicSymbolListDelegate == null)) {
5671
                this.onEndGetPublicSymbolListDelegate = new EndOperationDelegate(this.OnEndGetPublicSymbolList);
5672
            }
5673
            if ((this.onGetPublicSymbolListCompletedDelegate == null)) {
5674
                this.onGetPublicSymbolListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPublicSymbolListCompleted);
5675
            }
5676
            base.InvokeAsync(this.onBeginGetPublicSymbolListDelegate, new object[] {
5677
                        dept}, this.onEndGetPublicSymbolListDelegate, this.onGetPublicSymbolListCompletedDelegate, userState);
5678
        }
5679
        
5680
        public string GetSymbolData(string id, int type) {
5681
            return base.Channel.GetSymbolData(id, type);
5682
        }
5683
        
5684
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5685
        public System.IAsyncResult BeginGetSymbolData(string id, int type, System.AsyncCallback callback, object asyncState) {
5686
            return base.Channel.BeginGetSymbolData(id, type, callback, asyncState);
5687
        }
5688
        
5689
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5690
        public string EndGetSymbolData(System.IAsyncResult result) {
5691
            return base.Channel.EndGetSymbolData(result);
5692
        }
5693
        
5694
        private System.IAsyncResult OnBeginGetSymbolData(object[] inValues, System.AsyncCallback callback, object asyncState) {
5695
            string id = ((string)(inValues[0]));
5696
            int type = ((int)(inValues[1]));
5697
            return this.BeginGetSymbolData(id, type, callback, asyncState);
5698
        }
5699
        
5700
        private object[] OnEndGetSymbolData(System.IAsyncResult result) {
5701
            string retVal = this.EndGetSymbolData(result);
5702
            return new object[] {
5703
                    retVal};
5704
        }
5705
        
5706
        private void OnGetSymbolDataCompleted(object state) {
5707
            if ((this.GetSymbolDataCompleted != null)) {
5708
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5709
                this.GetSymbolDataCompleted(this, new GetSymbolDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5710
            }
5711
        }
5712
        
5713
        public void GetSymbolDataAsync(string id, int type) {
5714
            this.GetSymbolDataAsync(id, type, null);
5715
        }
5716
        
5717
        public void GetSymbolDataAsync(string id, int type, object userState) {
5718
            if ((this.onBeginGetSymbolDataDelegate == null)) {
5719
                this.onBeginGetSymbolDataDelegate = new BeginOperationDelegate(this.OnBeginGetSymbolData);
5720
            }
5721
            if ((this.onEndGetSymbolDataDelegate == null)) {
5722
                this.onEndGetSymbolDataDelegate = new EndOperationDelegate(this.OnEndGetSymbolData);
5723
            }
5724
            if ((this.onGetSymbolDataCompletedDelegate == null)) {
5725
                this.onGetSymbolDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSymbolDataCompleted);
5726
            }
5727
            base.InvokeAsync(this.onBeginGetSymbolDataDelegate, new object[] {
5728
                        id,
5729
                        type}, this.onEndGetSymbolDataDelegate, this.onGetSymbolDataCompletedDelegate, userState);
5730
        }
5731
        
5732
        public string GetSymbolImageURL(string id, int type) {
5733
            return base.Channel.GetSymbolImageURL(id, type);
5734
        }
5735
        
5736
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5737
        public System.IAsyncResult BeginGetSymbolImageURL(string id, int type, System.AsyncCallback callback, object asyncState) {
5738
            return base.Channel.BeginGetSymbolImageURL(id, type, callback, asyncState);
5739
        }
5740
        
5741
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5742
        public string EndGetSymbolImageURL(System.IAsyncResult result) {
5743
            return base.Channel.EndGetSymbolImageURL(result);
5744
        }
5745
        
5746
        private System.IAsyncResult OnBeginGetSymbolImageURL(object[] inValues, System.AsyncCallback callback, object asyncState) {
5747
            string id = ((string)(inValues[0]));
5748
            int type = ((int)(inValues[1]));
5749
            return this.BeginGetSymbolImageURL(id, type, callback, asyncState);
5750
        }
5751
        
5752
        private object[] OnEndGetSymbolImageURL(System.IAsyncResult result) {
5753
            string retVal = this.EndGetSymbolImageURL(result);
5754
            return new object[] {
5755
                    retVal};
5756
        }
5757
        
5758
        private void OnGetSymbolImageURLCompleted(object state) {
5759
            if ((this.GetSymbolImageURLCompleted != null)) {
5760
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5761
                this.GetSymbolImageURLCompleted(this, new GetSymbolImageURLCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5762
            }
5763
        }
5764
        
5765
        public void GetSymbolImageURLAsync(string id, int type) {
5766
            this.GetSymbolImageURLAsync(id, type, null);
5767
        }
5768
        
5769
        public void GetSymbolImageURLAsync(string id, int type, object userState) {
5770
            if ((this.onBeginGetSymbolImageURLDelegate == null)) {
5771
                this.onBeginGetSymbolImageURLDelegate = new BeginOperationDelegate(this.OnBeginGetSymbolImageURL);
5772
            }
5773
            if ((this.onEndGetSymbolImageURLDelegate == null)) {
5774
                this.onEndGetSymbolImageURLDelegate = new EndOperationDelegate(this.OnEndGetSymbolImageURL);
5775
            }
5776
            if ((this.onGetSymbolImageURLCompletedDelegate == null)) {
5777
                this.onGetSymbolImageURLCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSymbolImageURLCompleted);
5778
            }
5779
            base.InvokeAsync(this.onBeginGetSymbolImageURLDelegate, new object[] {
5780
                        id,
5781
                        type}, this.onEndGetSymbolImageURLDelegate, this.onGetSymbolImageURLCompletedDelegate, userState);
5782
        }
5783
        
5784
        public string GetSignData(string project_no, string user_id) {
5785
            return base.Channel.GetSignData(project_no, user_id);
5786
        }
5787
        
5788
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5789
        public System.IAsyncResult BeginGetSignData(string project_no, string user_id, System.AsyncCallback callback, object asyncState) {
5790
            return base.Channel.BeginGetSignData(project_no, user_id, callback, asyncState);
5791
        }
5792
        
5793
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5794
        public string EndGetSignData(System.IAsyncResult result) {
5795
            return base.Channel.EndGetSignData(result);
5796
        }
5797
        
5798
        private System.IAsyncResult OnBeginGetSignData(object[] inValues, System.AsyncCallback callback, object asyncState) {
5799
            string project_no = ((string)(inValues[0]));
5800
            string user_id = ((string)(inValues[1]));
5801
            return this.BeginGetSignData(project_no, user_id, callback, asyncState);
5802
        }
5803
        
5804
        private object[] OnEndGetSignData(System.IAsyncResult result) {
5805
            string retVal = this.EndGetSignData(result);
5806
            return new object[] {
5807
                    retVal};
5808
        }
5809
        
5810
        private void OnGetSignDataCompleted(object state) {
5811
            if ((this.GetSignDataCompleted != null)) {
5812
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5813
                this.GetSignDataCompleted(this, new GetSignDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5814
            }
5815
        }
5816
        
5817
        public void GetSignDataAsync(string project_no, string user_id) {
5818
            this.GetSignDataAsync(project_no, user_id, null);
5819
        }
5820
        
5821
        public void GetSignDataAsync(string project_no, string user_id, object userState) {
5822
            if ((this.onBeginGetSignDataDelegate == null)) {
5823
                this.onBeginGetSignDataDelegate = new BeginOperationDelegate(this.OnBeginGetSignData);
5824
            }
5825
            if ((this.onEndGetSignDataDelegate == null)) {
5826
                this.onEndGetSignDataDelegate = new EndOperationDelegate(this.OnEndGetSignData);
5827
            }
5828
            if ((this.onGetSignDataCompletedDelegate == null)) {
5829
                this.onGetSignDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSignDataCompleted);
5830
            }
5831
            base.InvokeAsync(this.onBeginGetSignDataDelegate, new object[] {
5832
                        project_no,
5833
                        user_id}, this.onEndGetSignDataDelegate, this.onGetSignDataCompletedDelegate, userState);
5834
        }
5835
        
5836
        public string GetSignStrokes(string project_no, string user_id) {
5837
            return base.Channel.GetSignStrokes(project_no, user_id);
5838
        }
5839
        
5840
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5841
        public System.IAsyncResult BeginGetSignStrokes(string project_no, string user_id, System.AsyncCallback callback, object asyncState) {
5842
            return base.Channel.BeginGetSignStrokes(project_no, user_id, callback, asyncState);
5843
        }
5844
        
5845
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5846
        public string EndGetSignStrokes(System.IAsyncResult result) {
5847
            return base.Channel.EndGetSignStrokes(result);
5848
        }
5849
        
5850
        private System.IAsyncResult OnBeginGetSignStrokes(object[] inValues, System.AsyncCallback callback, object asyncState) {
5851
            string project_no = ((string)(inValues[0]));
5852
            string user_id = ((string)(inValues[1]));
5853
            return this.BeginGetSignStrokes(project_no, user_id, callback, asyncState);
5854
        }
5855
        
5856
        private object[] OnEndGetSignStrokes(System.IAsyncResult result) {
5857
            string retVal = this.EndGetSignStrokes(result);
5858
            return new object[] {
5859
                    retVal};
5860
        }
5861
        
5862
        private void OnGetSignStrokesCompleted(object state) {
5863
            if ((this.GetSignStrokesCompleted != null)) {
5864
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5865
                this.GetSignStrokesCompleted(this, new GetSignStrokesCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5866
            }
5867
        }
5868
        
5869
        public void GetSignStrokesAsync(string project_no, string user_id) {
5870
            this.GetSignStrokesAsync(project_no, user_id, null);
5871
        }
5872
        
5873
        public void GetSignStrokesAsync(string project_no, string user_id, object userState) {
5874
            if ((this.onBeginGetSignStrokesDelegate == null)) {
5875
                this.onBeginGetSignStrokesDelegate = new BeginOperationDelegate(this.OnBeginGetSignStrokes);
5876
            }
5877
            if ((this.onEndGetSignStrokesDelegate == null)) {
5878
                this.onEndGetSignStrokesDelegate = new EndOperationDelegate(this.OnEndGetSignStrokes);
5879
            }
5880
            if ((this.onGetSignStrokesCompletedDelegate == null)) {
5881
                this.onGetSignStrokesCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetSignStrokesCompleted);
5882
            }
5883
            base.InvokeAsync(this.onBeginGetSignStrokesDelegate, new object[] {
5884
                        project_no,
5885
                        user_id}, this.onEndGetSignStrokesDelegate, this.onGetSignStrokesCompletedDelegate, userState);
5886
        }
5887
        
5888
        public int SetSignData(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight) {
5889
            return base.Channel.SetSignData(user_id, SignStr, CropX, CropY, CropWidth, CropHeight);
5890
        }
5891
        
5892
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5893
        public System.IAsyncResult BeginSetSignData(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight, System.AsyncCallback callback, object asyncState) {
5894
            return base.Channel.BeginSetSignData(user_id, SignStr, CropX, CropY, CropWidth, CropHeight, callback, asyncState);
5895
        }
5896
        
5897
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5898
        public int EndSetSignData(System.IAsyncResult result) {
5899
            return base.Channel.EndSetSignData(result);
5900
        }
5901
        
5902
        private System.IAsyncResult OnBeginSetSignData(object[] inValues, System.AsyncCallback callback, object asyncState) {
5903
            string user_id = ((string)(inValues[0]));
5904
            string SignStr = ((string)(inValues[1]));
5905
            int CropX = ((int)(inValues[2]));
5906
            int CropY = ((int)(inValues[3]));
5907
            int CropWidth = ((int)(inValues[4]));
5908
            int CropHeight = ((int)(inValues[5]));
5909
            return this.BeginSetSignData(user_id, SignStr, CropX, CropY, CropWidth, CropHeight, callback, asyncState);
5910
        }
5911
        
5912
        private object[] OnEndSetSignData(System.IAsyncResult result) {
5913
            int retVal = this.EndSetSignData(result);
5914
            return new object[] {
5915
                    retVal};
5916
        }
5917
        
5918
        private void OnSetSignDataCompleted(object state) {
5919
            if ((this.SetSignDataCompleted != null)) {
5920
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5921
                this.SetSignDataCompleted(this, new SetSignDataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5922
            }
5923
        }
5924
        
5925
        public void SetSignDataAsync(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight) {
5926
            this.SetSignDataAsync(user_id, SignStr, CropX, CropY, CropWidth, CropHeight, null);
5927
        }
5928
        
5929
        public void SetSignDataAsync(string user_id, string SignStr, int CropX, int CropY, int CropWidth, int CropHeight, object userState) {
5930
            if ((this.onBeginSetSignDataDelegate == null)) {
5931
                this.onBeginSetSignDataDelegate = new BeginOperationDelegate(this.OnBeginSetSignData);
5932
            }
5933
            if ((this.onEndSetSignDataDelegate == null)) {
5934
                this.onEndSetSignDataDelegate = new EndOperationDelegate(this.OnEndSetSignData);
5935
            }
5936
            if ((this.onSetSignDataCompletedDelegate == null)) {
5937
                this.onSetSignDataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetSignDataCompleted);
5938
            }
5939
            base.InvokeAsync(this.onBeginSetSignDataDelegate, new object[] {
5940
                        user_id,
5941
                        SignStr,
5942
                        CropX,
5943
                        CropY,
5944
                        CropWidth,
5945
                        CropHeight}, this.onEndSetSignDataDelegate, this.onSetSignDataCompletedDelegate, userState);
5946
        }
5947
        
5948
        public int SetSignStrokes(string user_id, string strokesData) {
5949
            return base.Channel.SetSignStrokes(user_id, strokesData);
5950
        }
5951
        
5952
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5953
        public System.IAsyncResult BeginSetSignStrokes(string user_id, string strokesData, System.AsyncCallback callback, object asyncState) {
5954
            return base.Channel.BeginSetSignStrokes(user_id, strokesData, callback, asyncState);
5955
        }
5956
        
5957
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
5958
        public int EndSetSignStrokes(System.IAsyncResult result) {
5959
            return base.Channel.EndSetSignStrokes(result);
5960
        }
5961
        
5962
        private System.IAsyncResult OnBeginSetSignStrokes(object[] inValues, System.AsyncCallback callback, object asyncState) {
5963
            string user_id = ((string)(inValues[0]));
5964
            string strokesData = ((string)(inValues[1]));
5965
            return this.BeginSetSignStrokes(user_id, strokesData, callback, asyncState);
5966
        }
5967
        
5968
        private object[] OnEndSetSignStrokes(System.IAsyncResult result) {
5969
            int retVal = this.EndSetSignStrokes(result);
5970
            return new object[] {
5971
                    retVal};
5972
        }
5973
        
5974
        private void OnSetSignStrokesCompleted(object state) {
5975
            if ((this.SetSignStrokesCompleted != null)) {
5976
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
5977
                this.SetSignStrokesCompleted(this, new SetSignStrokesCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
5978
            }
5979
        }
5980
        
5981
        public void SetSignStrokesAsync(string user_id, string strokesData) {
5982
            this.SetSignStrokesAsync(user_id, strokesData, null);
5983
        }
5984
        
5985
        public void SetSignStrokesAsync(string user_id, string strokesData, object userState) {
5986
            if ((this.onBeginSetSignStrokesDelegate == null)) {
5987
                this.onBeginSetSignStrokesDelegate = new BeginOperationDelegate(this.OnBeginSetSignStrokes);
5988
            }
5989
            if ((this.onEndSetSignStrokesDelegate == null)) {
5990
                this.onEndSetSignStrokesDelegate = new EndOperationDelegate(this.OnEndSetSignStrokes);
5991
            }
5992
            if ((this.onSetSignStrokesCompletedDelegate == null)) {
5993
                this.onSetSignStrokesCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSetSignStrokesCompleted);
5994
            }
5995
            base.InvokeAsync(this.onBeginSetSignStrokesDelegate, new object[] {
5996
                        user_id,
5997
                        strokesData}, this.onEndSetSignStrokesDelegate, this.onSetSignStrokesCompletedDelegate, userState);
5998
        }
5999
        
6000
        public string GetProjectName(string project_no) {
6001
            return base.Channel.GetProjectName(project_no);
6002
        }
6003
        
6004
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6005
        public System.IAsyncResult BeginGetProjectName(string project_no, System.AsyncCallback callback, object asyncState) {
6006
            return base.Channel.BeginGetProjectName(project_no, callback, asyncState);
6007
        }
6008
        
6009
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6010
        public string EndGetProjectName(System.IAsyncResult result) {
6011
            return base.Channel.EndGetProjectName(result);
6012
        }
6013
        
6014
        private System.IAsyncResult OnBeginGetProjectName(object[] inValues, System.AsyncCallback callback, object asyncState) {
6015
            string project_no = ((string)(inValues[0]));
6016
            return this.BeginGetProjectName(project_no, callback, asyncState);
6017
        }
6018
        
6019
        private object[] OnEndGetProjectName(System.IAsyncResult result) {
6020
            string retVal = this.EndGetProjectName(result);
6021
            return new object[] {
6022
                    retVal};
6023
        }
6024
        
6025
        private void OnGetProjectNameCompleted(object state) {
6026
            if ((this.GetProjectNameCompleted != null)) {
6027
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6028
                this.GetProjectNameCompleted(this, new GetProjectNameCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6029
            }
6030
        }
6031
        
6032
        public void GetProjectNameAsync(string project_no) {
6033
            this.GetProjectNameAsync(project_no, null);
6034
        }
6035
        
6036
        public void GetProjectNameAsync(string project_no, object userState) {
6037
            if ((this.onBeginGetProjectNameDelegate == null)) {
6038
                this.onBeginGetProjectNameDelegate = new BeginOperationDelegate(this.OnBeginGetProjectName);
6039
            }
6040
            if ((this.onEndGetProjectNameDelegate == null)) {
6041
                this.onEndGetProjectNameDelegate = new EndOperationDelegate(this.OnEndGetProjectName);
6042
            }
6043
            if ((this.onGetProjectNameCompletedDelegate == null)) {
6044
                this.onGetProjectNameCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetProjectNameCompleted);
6045
            }
6046
            base.InvokeAsync(this.onBeginGetProjectNameDelegate, new object[] {
6047
                        project_no}, this.onEndGetProjectNameDelegate, this.onGetProjectNameCompletedDelegate, userState);
6048
        }
6049
        
6050
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> GetPreRevSelect(string project_no, string doc_no, string current_rev) {
6051
            return base.Channel.GetPreRevSelect(project_no, doc_no, current_rev);
6052
        }
6053
        
6054
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6055
        public System.IAsyncResult BeginGetPreRevSelect(string project_no, string doc_no, string current_rev, System.AsyncCallback callback, object asyncState) {
6056
            return base.Channel.BeginGetPreRevSelect(project_no, doc_no, current_rev, callback, asyncState);
6057
        }
6058
        
6059
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6060
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> EndGetPreRevSelect(System.IAsyncResult result) {
6061
            return base.Channel.EndGetPreRevSelect(result);
6062
        }
6063
        
6064
        private System.IAsyncResult OnBeginGetPreRevSelect(object[] inValues, System.AsyncCallback callback, object asyncState) {
6065
            string project_no = ((string)(inValues[0]));
6066
            string doc_no = ((string)(inValues[1]));
6067
            string current_rev = ((string)(inValues[2]));
6068
            return this.BeginGetPreRevSelect(project_no, doc_no, current_rev, callback, asyncState);
6069
        }
6070
        
6071
        private object[] OnEndGetPreRevSelect(System.IAsyncResult result) {
6072
            System.Collections.Generic.List<KCOMDataModel.DataModel.DOCUMENT_ITEM> retVal = this.EndGetPreRevSelect(result);
6073
            return new object[] {
6074
                    retVal};
6075
        }
6076
        
6077
        private void OnGetPreRevSelectCompleted(object state) {
6078
            if ((this.GetPreRevSelectCompleted != null)) {
6079
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6080
                this.GetPreRevSelectCompleted(this, new GetPreRevSelectCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6081
            }
6082
        }
6083
        
6084
        public void GetPreRevSelectAsync(string project_no, string doc_no, string current_rev) {
6085
            this.GetPreRevSelectAsync(project_no, doc_no, current_rev, null);
6086
        }
6087
        
6088
        public void GetPreRevSelectAsync(string project_no, string doc_no, string current_rev, object userState) {
6089
            if ((this.onBeginGetPreRevSelectDelegate == null)) {
6090
                this.onBeginGetPreRevSelectDelegate = new BeginOperationDelegate(this.OnBeginGetPreRevSelect);
6091
            }
6092
            if ((this.onEndGetPreRevSelectDelegate == null)) {
6093
                this.onEndGetPreRevSelectDelegate = new EndOperationDelegate(this.OnEndGetPreRevSelect);
6094
            }
6095
            if ((this.onGetPreRevSelectCompletedDelegate == null)) {
6096
                this.onGetPreRevSelectCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPreRevSelectCompleted);
6097
            }
6098
            base.InvokeAsync(this.onBeginGetPreRevSelectDelegate, new object[] {
6099
                        project_no,
6100
                        doc_no,
6101
                        current_rev}, this.onEndGetPreRevSelectDelegate, this.onGetPreRevSelectCompletedDelegate, userState);
6102
        }
6103
        
6104
        public KCOMDataModel.DataModel.DOCINFO GetDocInfoOneSelect(string project_no, string doc_id) {
6105
            return base.Channel.GetDocInfoOneSelect(project_no, doc_id);
6106
        }
6107
        
6108
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6109
        public System.IAsyncResult BeginGetDocInfoOneSelect(string project_no, string doc_id, System.AsyncCallback callback, object asyncState) {
6110
            return base.Channel.BeginGetDocInfoOneSelect(project_no, doc_id, callback, asyncState);
6111
        }
6112
        
6113
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6114
        public KCOMDataModel.DataModel.DOCINFO EndGetDocInfoOneSelect(System.IAsyncResult result) {
6115
            return base.Channel.EndGetDocInfoOneSelect(result);
6116
        }
6117
        
6118
        private System.IAsyncResult OnBeginGetDocInfoOneSelect(object[] inValues, System.AsyncCallback callback, object asyncState) {
6119
            string project_no = ((string)(inValues[0]));
6120
            string doc_id = ((string)(inValues[1]));
6121
            return this.BeginGetDocInfoOneSelect(project_no, doc_id, callback, asyncState);
6122
        }
6123
        
6124
        private object[] OnEndGetDocInfoOneSelect(System.IAsyncResult result) {
6125
            KCOMDataModel.DataModel.DOCINFO retVal = this.EndGetDocInfoOneSelect(result);
6126
            return new object[] {
6127
                    retVal};
6128
        }
6129
        
6130
        private void OnGetDocInfoOneSelectCompleted(object state) {
6131
            if ((this.GetDocInfoOneSelectCompleted != null)) {
6132
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6133
                this.GetDocInfoOneSelectCompleted(this, new GetDocInfoOneSelectCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6134
            }
6135
        }
6136
        
6137
        public void GetDocInfoOneSelectAsync(string project_no, string doc_id) {
6138
            this.GetDocInfoOneSelectAsync(project_no, doc_id, null);
6139
        }
6140
        
6141
        public void GetDocInfoOneSelectAsync(string project_no, string doc_id, object userState) {
6142
            if ((this.onBeginGetDocInfoOneSelectDelegate == null)) {
6143
                this.onBeginGetDocInfoOneSelectDelegate = new BeginOperationDelegate(this.OnBeginGetDocInfoOneSelect);
6144
            }
6145
            if ((this.onEndGetDocInfoOneSelectDelegate == null)) {
6146
                this.onEndGetDocInfoOneSelectDelegate = new EndOperationDelegate(this.OnEndGetDocInfoOneSelect);
6147
            }
6148
            if ((this.onGetDocInfoOneSelectCompletedDelegate == null)) {
6149
                this.onGetDocInfoOneSelectCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetDocInfoOneSelectCompleted);
6150
            }
6151
            base.InvokeAsync(this.onBeginGetDocInfoOneSelectDelegate, new object[] {
6152
                        project_no,
6153
                        doc_id}, this.onEndGetDocInfoOneSelectDelegate, this.onGetDocInfoOneSelectCompletedDelegate, userState);
6154
        }
6155
        
6156
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> GetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList) {
6157
            return base.Channel.GetPrintDocItemList(project_no, doc_id, _markupInfoList);
6158
        }
6159
        
6160
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6161
        public System.IAsyncResult BeginGetPrintDocItemList(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList, System.AsyncCallback callback, object asyncState) {
6162
            return base.Channel.BeginGetPrintDocItemList(project_no, doc_id, _markupInfoList, callback, asyncState);
6163
        }
6164
        
6165
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6166
        public System.Collections.Generic.List<IKCOM.MarkupInfoItem> EndGetPrintDocItemList(System.IAsyncResult result) {
6167
            return base.Channel.EndGetPrintDocItemList(result);
6168
        }
6169
        
6170
        private System.IAsyncResult OnBeginGetPrintDocItemList(object[] inValues, System.AsyncCallback callback, object asyncState) {
6171
            string project_no = ((string)(inValues[0]));
6172
            string doc_id = ((string)(inValues[1]));
6173
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList = ((System.Collections.Generic.List<IKCOM.MarkupInfoItem>)(inValues[2]));
6174
            return this.BeginGetPrintDocItemList(project_no, doc_id, _markupInfoList, callback, asyncState);
6175
        }
6176
        
6177
        private object[] OnEndGetPrintDocItemList(System.IAsyncResult result) {
6178
            System.Collections.Generic.List<IKCOM.MarkupInfoItem> retVal = this.EndGetPrintDocItemList(result);
6179
            return new object[] {
6180
                    retVal};
6181
        }
6182
        
6183
        private void OnGetPrintDocItemListCompleted(object state) {
6184
            if ((this.GetPrintDocItemListCompleted != null)) {
6185
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6186
                this.GetPrintDocItemListCompleted(this, new GetPrintDocItemListCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6187
            }
6188
        }
6189
        
6190
        public void GetPrintDocItemListAsync(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList) {
6191
            this.GetPrintDocItemListAsync(project_no, doc_id, _markupInfoList, null);
6192
        }
6193
        
6194
        public void GetPrintDocItemListAsync(string project_no, string doc_id, System.Collections.Generic.List<IKCOM.MarkupInfoItem> _markupInfoList, object userState) {
6195
            if ((this.onBeginGetPrintDocItemListDelegate == null)) {
6196
                this.onBeginGetPrintDocItemListDelegate = new BeginOperationDelegate(this.OnBeginGetPrintDocItemList);
6197
            }
6198
            if ((this.onEndGetPrintDocItemListDelegate == null)) {
6199
                this.onEndGetPrintDocItemListDelegate = new EndOperationDelegate(this.OnEndGetPrintDocItemList);
6200
            }
6201
            if ((this.onGetPrintDocItemListCompletedDelegate == null)) {
6202
                this.onGetPrintDocItemListCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetPrintDocItemListCompleted);
6203
            }
6204
            base.InvokeAsync(this.onBeginGetPrintDocItemListDelegate, new object[] {
6205
                        project_no,
6206
                        doc_id,
6207
                        _markupInfoList}, this.onEndGetPrintDocItemListDelegate, this.onGetPrintDocItemListCompletedDelegate, userState);
6208
        }
6209
        
6210
        public bool AddMessage(string project_no, KCOMDataModel.DataModel.TALK value) {
6211
            return base.Channel.AddMessage(project_no, value);
6212
        }
6213
        
6214
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6215
        public System.IAsyncResult BeginAddMessage(string project_no, KCOMDataModel.DataModel.TALK value, System.AsyncCallback callback, object asyncState) {
6216
            return base.Channel.BeginAddMessage(project_no, value, callback, asyncState);
6217
        }
6218
        
6219
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6220
        public bool EndAddMessage(System.IAsyncResult result) {
6221
            return base.Channel.EndAddMessage(result);
6222
        }
6223
        
6224
        private System.IAsyncResult OnBeginAddMessage(object[] inValues, System.AsyncCallback callback, object asyncState) {
6225
            string project_no = ((string)(inValues[0]));
6226
            KCOMDataModel.DataModel.TALK value = ((KCOMDataModel.DataModel.TALK)(inValues[1]));
6227
            return this.BeginAddMessage(project_no, value, callback, asyncState);
6228
        }
6229
        
6230
        private object[] OnEndAddMessage(System.IAsyncResult result) {
6231
            bool retVal = this.EndAddMessage(result);
6232
            return new object[] {
6233
                    retVal};
6234
        }
6235
        
6236
        private void OnAddMessageCompleted(object state) {
6237
            if ((this.AddMessageCompleted != null)) {
6238
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6239
                this.AddMessageCompleted(this, new AddMessageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6240
            }
6241
        }
6242
        
6243
        public void AddMessageAsync(string project_no, KCOMDataModel.DataModel.TALK value) {
6244
            this.AddMessageAsync(project_no, value, null);
6245
        }
6246
        
6247
        public void AddMessageAsync(string project_no, KCOMDataModel.DataModel.TALK value, object userState) {
6248
            if ((this.onBeginAddMessageDelegate == null)) {
6249
                this.onBeginAddMessageDelegate = new BeginOperationDelegate(this.OnBeginAddMessage);
6250
            }
6251
            if ((this.onEndAddMessageDelegate == null)) {
6252
                this.onEndAddMessageDelegate = new EndOperationDelegate(this.OnEndAddMessage);
6253
            }
6254
            if ((this.onAddMessageCompletedDelegate == null)) {
6255
                this.onAddMessageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnAddMessageCompleted);
6256
            }
6257
            base.InvokeAsync(this.onBeginAddMessageDelegate, new object[] {
6258
                        project_no,
6259
                        value}, this.onEndAddMessageDelegate, this.onAddMessageCompletedDelegate, userState);
6260
        }
6261
        
6262
        public System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> GetMessage(string project_no, string doc_id) {
6263
            return base.Channel.GetMessage(project_no, doc_id);
6264
        }
6265
        
6266
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6267
        public System.IAsyncResult BeginGetMessage(string project_no, string doc_id, System.AsyncCallback callback, object asyncState) {
6268
            return base.Channel.BeginGetMessage(project_no, doc_id, callback, asyncState);
6269
        }
6270
        
6271
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6272
        public System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> EndGetMessage(System.IAsyncResult result) {
6273
            return base.Channel.EndGetMessage(result);
6274
        }
6275
        
6276
        private System.IAsyncResult OnBeginGetMessage(object[] inValues, System.AsyncCallback callback, object asyncState) {
6277
            string project_no = ((string)(inValues[0]));
6278
            string doc_id = ((string)(inValues[1]));
6279
            return this.BeginGetMessage(project_no, doc_id, callback, asyncState);
6280
        }
6281
        
6282
        private object[] OnEndGetMessage(System.IAsyncResult result) {
6283
            System.Collections.Generic.List<KCOMDataModel.DataModel.TALK> retVal = this.EndGetMessage(result);
6284
            return new object[] {
6285
                    retVal};
6286
        }
6287
        
6288
        private void OnGetMessageCompleted(object state) {
6289
            if ((this.GetMessageCompleted != null)) {
6290
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6291
                this.GetMessageCompleted(this, new GetMessageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6292
            }
6293
        }
6294
        
6295
        public void GetMessageAsync(string project_no, string doc_id) {
6296
            this.GetMessageAsync(project_no, doc_id, null);
6297
        }
6298
        
6299
        public void GetMessageAsync(string project_no, string doc_id, object userState) {
6300
            if ((this.onBeginGetMessageDelegate == null)) {
6301
                this.onBeginGetMessageDelegate = new BeginOperationDelegate(this.OnBeginGetMessage);
6302
            }
6303
            if ((this.onEndGetMessageDelegate == null)) {
6304
                this.onEndGetMessageDelegate = new EndOperationDelegate(this.OnEndGetMessage);
6305
            }
6306
            if ((this.onGetMessageCompletedDelegate == null)) {
6307
                this.onGetMessageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetMessageCompleted);
6308
            }
6309
            base.InvokeAsync(this.onBeginGetMessageDelegate, new object[] {
6310
                        project_no,
6311
                        doc_id}, this.onEndGetMessageDelegate, this.onGetMessageCompletedDelegate, userState);
6312
        }
6313
        
6314
        public KCOMDataModel.DataModel.DOCINFO FinalPDF_GetDocinfo(string project_no, string docinfo_id) {
6315
            return base.Channel.FinalPDF_GetDocinfo(project_no, docinfo_id);
6316
        }
6317
        
6318
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6319
        public System.IAsyncResult BeginFinalPDF_GetDocinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState) {
6320
            return base.Channel.BeginFinalPDF_GetDocinfo(project_no, docinfo_id, callback, asyncState);
6321
        }
6322
        
6323
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6324
        public KCOMDataModel.DataModel.DOCINFO EndFinalPDF_GetDocinfo(System.IAsyncResult result) {
6325
            return base.Channel.EndFinalPDF_GetDocinfo(result);
6326
        }
6327
        
6328
        private System.IAsyncResult OnBeginFinalPDF_GetDocinfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
6329
            string project_no = ((string)(inValues[0]));
6330
            string docinfo_id = ((string)(inValues[1]));
6331
            return this.BeginFinalPDF_GetDocinfo(project_no, docinfo_id, callback, asyncState);
6332
        }
6333
        
6334
        private object[] OnEndFinalPDF_GetDocinfo(System.IAsyncResult result) {
6335
            KCOMDataModel.DataModel.DOCINFO retVal = this.EndFinalPDF_GetDocinfo(result);
6336
            return new object[] {
6337
                    retVal};
6338
        }
6339
        
6340
        private void OnFinalPDF_GetDocinfoCompleted(object state) {
6341
            if ((this.FinalPDF_GetDocinfoCompleted != null)) {
6342
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6343
                this.FinalPDF_GetDocinfoCompleted(this, new FinalPDF_GetDocinfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6344
            }
6345
        }
6346
        
6347
        public void FinalPDF_GetDocinfoAsync(string project_no, string docinfo_id) {
6348
            this.FinalPDF_GetDocinfoAsync(project_no, docinfo_id, null);
6349
        }
6350
        
6351
        public void FinalPDF_GetDocinfoAsync(string project_no, string docinfo_id, object userState) {
6352
            if ((this.onBeginFinalPDF_GetDocinfoDelegate == null)) {
6353
                this.onBeginFinalPDF_GetDocinfoDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetDocinfo);
6354
            }
6355
            if ((this.onEndFinalPDF_GetDocinfoDelegate == null)) {
6356
                this.onEndFinalPDF_GetDocinfoDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetDocinfo);
6357
            }
6358
            if ((this.onFinalPDF_GetDocinfoCompletedDelegate == null)) {
6359
                this.onFinalPDF_GetDocinfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetDocinfoCompleted);
6360
            }
6361
            base.InvokeAsync(this.onBeginFinalPDF_GetDocinfoDelegate, new object[] {
6362
                        project_no,
6363
                        docinfo_id}, this.onEndFinalPDF_GetDocinfoDelegate, this.onFinalPDF_GetDocinfoCompletedDelegate, userState);
6364
        }
6365
        
6366
        public KCOMDataModel.DataModel.DOCUMENT_ITEM FinalPDF_GetDocumentItem(string project_no, string document_id) {
6367
            return base.Channel.FinalPDF_GetDocumentItem(project_no, document_id);
6368
        }
6369
        
6370
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6371
        public System.IAsyncResult BeginFinalPDF_GetDocumentItem(string project_no, string document_id, System.AsyncCallback callback, object asyncState) {
6372
            return base.Channel.BeginFinalPDF_GetDocumentItem(project_no, document_id, callback, asyncState);
6373
        }
6374
        
6375
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6376
        public KCOMDataModel.DataModel.DOCUMENT_ITEM EndFinalPDF_GetDocumentItem(System.IAsyncResult result) {
6377
            return base.Channel.EndFinalPDF_GetDocumentItem(result);
6378
        }
6379
        
6380
        private System.IAsyncResult OnBeginFinalPDF_GetDocumentItem(object[] inValues, System.AsyncCallback callback, object asyncState) {
6381
            string project_no = ((string)(inValues[0]));
6382
            string document_id = ((string)(inValues[1]));
6383
            return this.BeginFinalPDF_GetDocumentItem(project_no, document_id, callback, asyncState);
6384
        }
6385
        
6386
        private object[] OnEndFinalPDF_GetDocumentItem(System.IAsyncResult result) {
6387
            KCOMDataModel.DataModel.DOCUMENT_ITEM retVal = this.EndFinalPDF_GetDocumentItem(result);
6388
            return new object[] {
6389
                    retVal};
6390
        }
6391
        
6392
        private void OnFinalPDF_GetDocumentItemCompleted(object state) {
6393
            if ((this.FinalPDF_GetDocumentItemCompleted != null)) {
6394
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6395
                this.FinalPDF_GetDocumentItemCompleted(this, new FinalPDF_GetDocumentItemCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6396
            }
6397
        }
6398
        
6399
        public void FinalPDF_GetDocumentItemAsync(string project_no, string document_id) {
6400
            this.FinalPDF_GetDocumentItemAsync(project_no, document_id, null);
6401
        }
6402
        
6403
        public void FinalPDF_GetDocumentItemAsync(string project_no, string document_id, object userState) {
6404
            if ((this.onBeginFinalPDF_GetDocumentItemDelegate == null)) {
6405
                this.onBeginFinalPDF_GetDocumentItemDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetDocumentItem);
6406
            }
6407
            if ((this.onEndFinalPDF_GetDocumentItemDelegate == null)) {
6408
                this.onEndFinalPDF_GetDocumentItemDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetDocumentItem);
6409
            }
6410
            if ((this.onFinalPDF_GetDocumentItemCompletedDelegate == null)) {
6411
                this.onFinalPDF_GetDocumentItemCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetDocumentItemCompleted);
6412
            }
6413
            base.InvokeAsync(this.onBeginFinalPDF_GetDocumentItemDelegate, new object[] {
6414
                        project_no,
6415
                        document_id}, this.onEndFinalPDF_GetDocumentItemDelegate, this.onFinalPDF_GetDocumentItemCompletedDelegate, userState);
6416
        }
6417
        
6418
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> FinalPDF_GetMarkupdata(string project_no, string docinfo_id) {
6419
            return base.Channel.FinalPDF_GetMarkupdata(project_no, docinfo_id);
6420
        }
6421
        
6422
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6423
        public System.IAsyncResult BeginFinalPDF_GetMarkupdata(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState) {
6424
            return base.Channel.BeginFinalPDF_GetMarkupdata(project_no, docinfo_id, callback, asyncState);
6425
        }
6426
        
6427
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6428
        public System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> EndFinalPDF_GetMarkupdata(System.IAsyncResult result) {
6429
            return base.Channel.EndFinalPDF_GetMarkupdata(result);
6430
        }
6431
        
6432
        private System.IAsyncResult OnBeginFinalPDF_GetMarkupdata(object[] inValues, System.AsyncCallback callback, object asyncState) {
6433
            string project_no = ((string)(inValues[0]));
6434
            string docinfo_id = ((string)(inValues[1]));
6435
            return this.BeginFinalPDF_GetMarkupdata(project_no, docinfo_id, callback, asyncState);
6436
        }
6437
        
6438
        private object[] OnEndFinalPDF_GetMarkupdata(System.IAsyncResult result) {
6439
            System.Collections.Generic.List<KCOMDataModel.DataModel.MARKUP_DATA> retVal = this.EndFinalPDF_GetMarkupdata(result);
6440
            return new object[] {
6441
                    retVal};
6442
        }
6443
        
6444
        private void OnFinalPDF_GetMarkupdataCompleted(object state) {
6445
            if ((this.FinalPDF_GetMarkupdataCompleted != null)) {
6446
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6447
                this.FinalPDF_GetMarkupdataCompleted(this, new FinalPDF_GetMarkupdataCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6448
            }
6449
        }
6450
        
6451
        public void FinalPDF_GetMarkupdataAsync(string project_no, string docinfo_id) {
6452
            this.FinalPDF_GetMarkupdataAsync(project_no, docinfo_id, null);
6453
        }
6454
        
6455
        public void FinalPDF_GetMarkupdataAsync(string project_no, string docinfo_id, object userState) {
6456
            if ((this.onBeginFinalPDF_GetMarkupdataDelegate == null)) {
6457
                this.onBeginFinalPDF_GetMarkupdataDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetMarkupdata);
6458
            }
6459
            if ((this.onEndFinalPDF_GetMarkupdataDelegate == null)) {
6460
                this.onEndFinalPDF_GetMarkupdataDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetMarkupdata);
6461
            }
6462
            if ((this.onFinalPDF_GetMarkupdataCompletedDelegate == null)) {
6463
                this.onFinalPDF_GetMarkupdataCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetMarkupdataCompleted);
6464
            }
6465
            base.InvokeAsync(this.onBeginFinalPDF_GetMarkupdataDelegate, new object[] {
6466
                        project_no,
6467
                        docinfo_id}, this.onEndFinalPDF_GetMarkupdataDelegate, this.onFinalPDF_GetMarkupdataCompletedDelegate, userState);
6468
        }
6469
        
6470
        public KCOMDataModel.DataModel.MARKUP_INFO FinalPDF_GetMarkupinfo(string project_no, string docinfo_id) {
6471
            return base.Channel.FinalPDF_GetMarkupinfo(project_no, docinfo_id);
6472
        }
6473
        
6474
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6475
        public System.IAsyncResult BeginFinalPDF_GetMarkupinfo(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState) {
6476
            return base.Channel.BeginFinalPDF_GetMarkupinfo(project_no, docinfo_id, callback, asyncState);
6477
        }
6478
        
6479
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6480
        public KCOMDataModel.DataModel.MARKUP_INFO EndFinalPDF_GetMarkupinfo(System.IAsyncResult result) {
6481
            return base.Channel.EndFinalPDF_GetMarkupinfo(result);
6482
        }
6483
        
6484
        private System.IAsyncResult OnBeginFinalPDF_GetMarkupinfo(object[] inValues, System.AsyncCallback callback, object asyncState) {
6485
            string project_no = ((string)(inValues[0]));
6486
            string docinfo_id = ((string)(inValues[1]));
6487
            return this.BeginFinalPDF_GetMarkupinfo(project_no, docinfo_id, callback, asyncState);
6488
        }
6489
        
6490
        private object[] OnEndFinalPDF_GetMarkupinfo(System.IAsyncResult result) {
6491
            KCOMDataModel.DataModel.MARKUP_INFO retVal = this.EndFinalPDF_GetMarkupinfo(result);
6492
            return new object[] {
6493
                    retVal};
6494
        }
6495
        
6496
        private void OnFinalPDF_GetMarkupinfoCompleted(object state) {
6497
            if ((this.FinalPDF_GetMarkupinfoCompleted != null)) {
6498
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6499
                this.FinalPDF_GetMarkupinfoCompleted(this, new FinalPDF_GetMarkupinfoCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6500
            }
6501
        }
6502
        
6503
        public void FinalPDF_GetMarkupinfoAsync(string project_no, string docinfo_id) {
6504
            this.FinalPDF_GetMarkupinfoAsync(project_no, docinfo_id, null);
6505
        }
6506
        
6507
        public void FinalPDF_GetMarkupinfoAsync(string project_no, string docinfo_id, object userState) {
6508
            if ((this.onBeginFinalPDF_GetMarkupinfoDelegate == null)) {
6509
                this.onBeginFinalPDF_GetMarkupinfoDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetMarkupinfo);
6510
            }
6511
            if ((this.onEndFinalPDF_GetMarkupinfoDelegate == null)) {
6512
                this.onEndFinalPDF_GetMarkupinfoDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetMarkupinfo);
6513
            }
6514
            if ((this.onFinalPDF_GetMarkupinfoCompletedDelegate == null)) {
6515
                this.onFinalPDF_GetMarkupinfoCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetMarkupinfoCompleted);
6516
            }
6517
            base.InvokeAsync(this.onBeginFinalPDF_GetMarkupinfoDelegate, new object[] {
6518
                        project_no,
6519
                        docinfo_id}, this.onEndFinalPDF_GetMarkupinfoDelegate, this.onFinalPDF_GetMarkupinfoCompletedDelegate, userState);
6520
        }
6521
        
6522
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> FinalPDF_GetFinalPDFs(string final_id) {
6523
            return base.Channel.FinalPDF_GetFinalPDFs(final_id);
6524
        }
6525
        
6526
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6527
        public System.IAsyncResult BeginFinalPDF_GetFinalPDFs(string final_id, System.AsyncCallback callback, object asyncState) {
6528
            return base.Channel.BeginFinalPDF_GetFinalPDFs(final_id, callback, asyncState);
6529
        }
6530
        
6531
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6532
        public System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> EndFinalPDF_GetFinalPDFs(System.IAsyncResult result) {
6533
            return base.Channel.EndFinalPDF_GetFinalPDFs(result);
6534
        }
6535
        
6536
        private System.IAsyncResult OnBeginFinalPDF_GetFinalPDFs(object[] inValues, System.AsyncCallback callback, object asyncState) {
6537
            string final_id = ((string)(inValues[0]));
6538
            return this.BeginFinalPDF_GetFinalPDFs(final_id, callback, asyncState);
6539
        }
6540
        
6541
        private object[] OnEndFinalPDF_GetFinalPDFs(System.IAsyncResult result) {
6542
            System.Collections.Generic.List<KCOMDataModel.DataModel.FINAL_PDF> retVal = this.EndFinalPDF_GetFinalPDFs(result);
6543
            return new object[] {
6544
                    retVal};
6545
        }
6546
        
6547
        private void OnFinalPDF_GetFinalPDFsCompleted(object state) {
6548
            if ((this.FinalPDF_GetFinalPDFsCompleted != null)) {
6549
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6550
                this.FinalPDF_GetFinalPDFsCompleted(this, new FinalPDF_GetFinalPDFsCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6551
            }
6552
        }
6553
        
6554
        public void FinalPDF_GetFinalPDFsAsync(string final_id) {
6555
            this.FinalPDF_GetFinalPDFsAsync(final_id, null);
6556
        }
6557
        
6558
        public void FinalPDF_GetFinalPDFsAsync(string final_id, object userState) {
6559
            if ((this.onBeginFinalPDF_GetFinalPDFsDelegate == null)) {
6560
                this.onBeginFinalPDF_GetFinalPDFsDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetFinalPDFs);
6561
            }
6562
            if ((this.onEndFinalPDF_GetFinalPDFsDelegate == null)) {
6563
                this.onEndFinalPDF_GetFinalPDFsDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetFinalPDFs);
6564
            }
6565
            if ((this.onFinalPDF_GetFinalPDFsCompletedDelegate == null)) {
6566
                this.onFinalPDF_GetFinalPDFsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetFinalPDFsCompleted);
6567
            }
6568
            base.InvokeAsync(this.onBeginFinalPDF_GetFinalPDFsDelegate, new object[] {
6569
                        final_id}, this.onEndFinalPDF_GetFinalPDFsDelegate, this.onFinalPDF_GetFinalPDFsCompletedDelegate, userState);
6570
        }
6571
        
6572
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> FinalPDF_GetDocpage(string project_no, string docinfo_id) {
6573
            return base.Channel.FinalPDF_GetDocpage(project_no, docinfo_id);
6574
        }
6575
        
6576
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6577
        public System.IAsyncResult BeginFinalPDF_GetDocpage(string project_no, string docinfo_id, System.AsyncCallback callback, object asyncState) {
6578
            return base.Channel.BeginFinalPDF_GetDocpage(project_no, docinfo_id, callback, asyncState);
6579
        }
6580
        
6581
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6582
        public System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> EndFinalPDF_GetDocpage(System.IAsyncResult result) {
6583
            return base.Channel.EndFinalPDF_GetDocpage(result);
6584
        }
6585
        
6586
        private System.IAsyncResult OnBeginFinalPDF_GetDocpage(object[] inValues, System.AsyncCallback callback, object asyncState) {
6587
            string project_no = ((string)(inValues[0]));
6588
            string docinfo_id = ((string)(inValues[1]));
6589
            return this.BeginFinalPDF_GetDocpage(project_no, docinfo_id, callback, asyncState);
6590
        }
6591
        
6592
        private object[] OnEndFinalPDF_GetDocpage(System.IAsyncResult result) {
6593
            System.Collections.Generic.List<KCOMDataModel.DataModel.DOCPAGE> retVal = this.EndFinalPDF_GetDocpage(result);
6594
            return new object[] {
6595
                    retVal};
6596
        }
6597
        
6598
        private void OnFinalPDF_GetDocpageCompleted(object state) {
6599
            if ((this.FinalPDF_GetDocpageCompleted != null)) {
6600
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6601
                this.FinalPDF_GetDocpageCompleted(this, new FinalPDF_GetDocpageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6602
            }
6603
        }
6604
        
6605
        public void FinalPDF_GetDocpageAsync(string project_no, string docinfo_id) {
6606
            this.FinalPDF_GetDocpageAsync(project_no, docinfo_id, null);
6607
        }
6608
        
6609
        public void FinalPDF_GetDocpageAsync(string project_no, string docinfo_id, object userState) {
6610
            if ((this.onBeginFinalPDF_GetDocpageDelegate == null)) {
6611
                this.onBeginFinalPDF_GetDocpageDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetDocpage);
6612
            }
6613
            if ((this.onEndFinalPDF_GetDocpageDelegate == null)) {
6614
                this.onEndFinalPDF_GetDocpageDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetDocpage);
6615
            }
6616
            if ((this.onFinalPDF_GetDocpageCompletedDelegate == null)) {
6617
                this.onFinalPDF_GetDocpageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetDocpageCompleted);
6618
            }
6619
            base.InvokeAsync(this.onBeginFinalPDF_GetDocpageDelegate, new object[] {
6620
                        project_no,
6621
                        docinfo_id}, this.onEndFinalPDF_GetDocpageDelegate, this.onFinalPDF_GetDocpageCompletedDelegate, userState);
6622
        }
6623
        
6624
        public bool FinalPDF_SetFinalPDFStatus(string final_id, KCOM.ServiceDeepView.FinalStatus status) {
6625
            return base.Channel.FinalPDF_SetFinalPDFStatus(final_id, status);
6626
        }
6627
        
6628
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6629
        public System.IAsyncResult BeginFinalPDF_SetFinalPDFStatus(string final_id, KCOM.ServiceDeepView.FinalStatus status, System.AsyncCallback callback, object asyncState) {
6630
            return base.Channel.BeginFinalPDF_SetFinalPDFStatus(final_id, status, callback, asyncState);
6631
        }
6632
        
6633
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6634
        public bool EndFinalPDF_SetFinalPDFStatus(System.IAsyncResult result) {
6635
            return base.Channel.EndFinalPDF_SetFinalPDFStatus(result);
6636
        }
6637
        
6638
        private System.IAsyncResult OnBeginFinalPDF_SetFinalPDFStatus(object[] inValues, System.AsyncCallback callback, object asyncState) {
6639
            string final_id = ((string)(inValues[0]));
6640
            KCOM.ServiceDeepView.FinalStatus status = ((KCOM.ServiceDeepView.FinalStatus)(inValues[1]));
6641
            return this.BeginFinalPDF_SetFinalPDFStatus(final_id, status, callback, asyncState);
6642
        }
6643
        
6644
        private object[] OnEndFinalPDF_SetFinalPDFStatus(System.IAsyncResult result) {
6645
            bool retVal = this.EndFinalPDF_SetFinalPDFStatus(result);
6646
            return new object[] {
6647
                    retVal};
6648
        }
6649
        
6650
        private void OnFinalPDF_SetFinalPDFStatusCompleted(object state) {
6651
            if ((this.FinalPDF_SetFinalPDFStatusCompleted != null)) {
6652
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6653
                this.FinalPDF_SetFinalPDFStatusCompleted(this, new FinalPDF_SetFinalPDFStatusCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6654
            }
6655
        }
6656
        
6657
        public void FinalPDF_SetFinalPDFStatusAsync(string final_id, KCOM.ServiceDeepView.FinalStatus status) {
6658
            this.FinalPDF_SetFinalPDFStatusAsync(final_id, status, null);
6659
        }
6660
        
6661
        public void FinalPDF_SetFinalPDFStatusAsync(string final_id, KCOM.ServiceDeepView.FinalStatus status, object userState) {
6662
            if ((this.onBeginFinalPDF_SetFinalPDFStatusDelegate == null)) {
6663
                this.onBeginFinalPDF_SetFinalPDFStatusDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_SetFinalPDFStatus);
6664
            }
6665
            if ((this.onEndFinalPDF_SetFinalPDFStatusDelegate == null)) {
6666
                this.onEndFinalPDF_SetFinalPDFStatusDelegate = new EndOperationDelegate(this.OnEndFinalPDF_SetFinalPDFStatus);
6667
            }
6668
            if ((this.onFinalPDF_SetFinalPDFStatusCompletedDelegate == null)) {
6669
                this.onFinalPDF_SetFinalPDFStatusCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_SetFinalPDFStatusCompleted);
6670
            }
6671
            base.InvokeAsync(this.onBeginFinalPDF_SetFinalPDFStatusDelegate, new object[] {
6672
                        final_id,
6673
                        status}, this.onEndFinalPDF_SetFinalPDFStatusDelegate, this.onFinalPDF_SetFinalPDFStatusCompletedDelegate, userState);
6674
        }
6675
        
6676
        public bool FinalPDF_GetFinalPDFStatus(string DocInfoID, string MarkupInfoID, string CreateUserID) {
6677
            return base.Channel.FinalPDF_GetFinalPDFStatus(DocInfoID, MarkupInfoID, CreateUserID);
6678
        }
6679
        
6680
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6681
        public System.IAsyncResult BeginFinalPDF_GetFinalPDFStatus(string DocInfoID, string MarkupInfoID, string CreateUserID, System.AsyncCallback callback, object asyncState) {
6682
            return base.Channel.BeginFinalPDF_GetFinalPDFStatus(DocInfoID, MarkupInfoID, CreateUserID, callback, asyncState);
6683
        }
6684
        
6685
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6686
        public bool EndFinalPDF_GetFinalPDFStatus(System.IAsyncResult result) {
6687
            return base.Channel.EndFinalPDF_GetFinalPDFStatus(result);
6688
        }
6689
        
6690
        private System.IAsyncResult OnBeginFinalPDF_GetFinalPDFStatus(object[] inValues, System.AsyncCallback callback, object asyncState) {
6691
            string DocInfoID = ((string)(inValues[0]));
6692
            string MarkupInfoID = ((string)(inValues[1]));
6693
            string CreateUserID = ((string)(inValues[2]));
6694
            return this.BeginFinalPDF_GetFinalPDFStatus(DocInfoID, MarkupInfoID, CreateUserID, callback, asyncState);
6695
        }
6696
        
6697
        private object[] OnEndFinalPDF_GetFinalPDFStatus(System.IAsyncResult result) {
6698
            bool retVal = this.EndFinalPDF_GetFinalPDFStatus(result);
6699
            return new object[] {
6700
                    retVal};
6701
        }
6702
        
6703
        private void OnFinalPDF_GetFinalPDFStatusCompleted(object state) {
6704
            if ((this.FinalPDF_GetFinalPDFStatusCompleted != null)) {
6705
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6706
                this.FinalPDF_GetFinalPDFStatusCompleted(this, new FinalPDF_GetFinalPDFStatusCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6707
            }
6708
        }
6709
        
6710
        public void FinalPDF_GetFinalPDFStatusAsync(string DocInfoID, string MarkupInfoID, string CreateUserID) {
6711
            this.FinalPDF_GetFinalPDFStatusAsync(DocInfoID, MarkupInfoID, CreateUserID, null);
6712
        }
6713
        
6714
        public void FinalPDF_GetFinalPDFStatusAsync(string DocInfoID, string MarkupInfoID, string CreateUserID, object userState) {
6715
            if ((this.onBeginFinalPDF_GetFinalPDFStatusDelegate == null)) {
6716
                this.onBeginFinalPDF_GetFinalPDFStatusDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetFinalPDFStatus);
6717
            }
6718
            if ((this.onEndFinalPDF_GetFinalPDFStatusDelegate == null)) {
6719
                this.onEndFinalPDF_GetFinalPDFStatusDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetFinalPDFStatus);
6720
            }
6721
            if ((this.onFinalPDF_GetFinalPDFStatusCompletedDelegate == null)) {
6722
                this.onFinalPDF_GetFinalPDFStatusCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetFinalPDFStatusCompleted);
6723
            }
6724
            base.InvokeAsync(this.onBeginFinalPDF_GetFinalPDFStatusDelegate, new object[] {
6725
                        DocInfoID,
6726
                        MarkupInfoID,
6727
                        CreateUserID}, this.onEndFinalPDF_GetFinalPDFStatusDelegate, this.onFinalPDF_GetFinalPDFStatusCompletedDelegate, userState);
6728
        }
6729
        
6730
        public bool FinalPDF_SetCurrentPage(string final_id, int currentpage) {
6731
            return base.Channel.FinalPDF_SetCurrentPage(final_id, currentpage);
6732
        }
6733
        
6734
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6735
        public System.IAsyncResult BeginFinalPDF_SetCurrentPage(string final_id, int currentpage, System.AsyncCallback callback, object asyncState) {
6736
            return base.Channel.BeginFinalPDF_SetCurrentPage(final_id, currentpage, callback, asyncState);
6737
        }
6738
        
6739
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6740
        public bool EndFinalPDF_SetCurrentPage(System.IAsyncResult result) {
6741
            return base.Channel.EndFinalPDF_SetCurrentPage(result);
6742
        }
6743
        
6744
        private System.IAsyncResult OnBeginFinalPDF_SetCurrentPage(object[] inValues, System.AsyncCallback callback, object asyncState) {
6745
            string final_id = ((string)(inValues[0]));
6746
            int currentpage = ((int)(inValues[1]));
6747
            return this.BeginFinalPDF_SetCurrentPage(final_id, currentpage, callback, asyncState);
6748
        }
6749
        
6750
        private object[] OnEndFinalPDF_SetCurrentPage(System.IAsyncResult result) {
6751
            bool retVal = this.EndFinalPDF_SetCurrentPage(result);
6752
            return new object[] {
6753
                    retVal};
6754
        }
6755
        
6756
        private void OnFinalPDF_SetCurrentPageCompleted(object state) {
6757
            if ((this.FinalPDF_SetCurrentPageCompleted != null)) {
6758
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6759
                this.FinalPDF_SetCurrentPageCompleted(this, new FinalPDF_SetCurrentPageCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6760
            }
6761
        }
6762
        
6763
        public void FinalPDF_SetCurrentPageAsync(string final_id, int currentpage) {
6764
            this.FinalPDF_SetCurrentPageAsync(final_id, currentpage, null);
6765
        }
6766
        
6767
        public void FinalPDF_SetCurrentPageAsync(string final_id, int currentpage, object userState) {
6768
            if ((this.onBeginFinalPDF_SetCurrentPageDelegate == null)) {
6769
                this.onBeginFinalPDF_SetCurrentPageDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_SetCurrentPage);
6770
            }
6771
            if ((this.onEndFinalPDF_SetCurrentPageDelegate == null)) {
6772
                this.onEndFinalPDF_SetCurrentPageDelegate = new EndOperationDelegate(this.OnEndFinalPDF_SetCurrentPage);
6773
            }
6774
            if ((this.onFinalPDF_SetCurrentPageCompletedDelegate == null)) {
6775
                this.onFinalPDF_SetCurrentPageCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_SetCurrentPageCompleted);
6776
            }
6777
            base.InvokeAsync(this.onBeginFinalPDF_SetCurrentPageDelegate, new object[] {
6778
                        final_id,
6779
                        currentpage}, this.onEndFinalPDF_SetCurrentPageDelegate, this.onFinalPDF_SetCurrentPageCompletedDelegate, userState);
6780
        }
6781
        
6782
        public bool FinalPDF_SetError(string final_id, string msg) {
6783
            return base.Channel.FinalPDF_SetError(final_id, msg);
6784
        }
6785
        
6786
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6787
        public System.IAsyncResult BeginFinalPDF_SetError(string final_id, string msg, System.AsyncCallback callback, object asyncState) {
6788
            return base.Channel.BeginFinalPDF_SetError(final_id, msg, callback, asyncState);
6789
        }
6790
        
6791
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6792
        public bool EndFinalPDF_SetError(System.IAsyncResult result) {
6793
            return base.Channel.EndFinalPDF_SetError(result);
6794
        }
6795
        
6796
        private System.IAsyncResult OnBeginFinalPDF_SetError(object[] inValues, System.AsyncCallback callback, object asyncState) {
6797
            string final_id = ((string)(inValues[0]));
6798
            string msg = ((string)(inValues[1]));
6799
            return this.BeginFinalPDF_SetError(final_id, msg, callback, asyncState);
6800
        }
6801
        
6802
        private object[] OnEndFinalPDF_SetError(System.IAsyncResult result) {
6803
            bool retVal = this.EndFinalPDF_SetError(result);
6804
            return new object[] {
6805
                    retVal};
6806
        }
6807
        
6808
        private void OnFinalPDF_SetErrorCompleted(object state) {
6809
            if ((this.FinalPDF_SetErrorCompleted != null)) {
6810
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6811
                this.FinalPDF_SetErrorCompleted(this, new FinalPDF_SetErrorCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6812
            }
6813
        }
6814
        
6815
        public void FinalPDF_SetErrorAsync(string final_id, string msg) {
6816
            this.FinalPDF_SetErrorAsync(final_id, msg, null);
6817
        }
6818
        
6819
        public void FinalPDF_SetErrorAsync(string final_id, string msg, object userState) {
6820
            if ((this.onBeginFinalPDF_SetErrorDelegate == null)) {
6821
                this.onBeginFinalPDF_SetErrorDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_SetError);
6822
            }
6823
            if ((this.onEndFinalPDF_SetErrorDelegate == null)) {
6824
                this.onEndFinalPDF_SetErrorDelegate = new EndOperationDelegate(this.OnEndFinalPDF_SetError);
6825
            }
6826
            if ((this.onFinalPDF_SetErrorCompletedDelegate == null)) {
6827
                this.onFinalPDF_SetErrorCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_SetErrorCompleted);
6828
            }
6829
            base.InvokeAsync(this.onBeginFinalPDF_SetErrorDelegate, new object[] {
6830
                        final_id,
6831
                        msg}, this.onEndFinalPDF_SetErrorDelegate, this.onFinalPDF_SetErrorCompletedDelegate, userState);
6832
        }
6833
        
6834
        public bool FinalPDF_SetFinalResultPath(string project_no, string document_id, string url) {
6835
            return base.Channel.FinalPDF_SetFinalResultPath(project_no, document_id, url);
6836
        }
6837
        
6838
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6839
        public System.IAsyncResult BeginFinalPDF_SetFinalResultPath(string project_no, string document_id, string url, System.AsyncCallback callback, object asyncState) {
6840
            return base.Channel.BeginFinalPDF_SetFinalResultPath(project_no, document_id, url, callback, asyncState);
6841
        }
6842
        
6843
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6844
        public bool EndFinalPDF_SetFinalResultPath(System.IAsyncResult result) {
6845
            return base.Channel.EndFinalPDF_SetFinalResultPath(result);
6846
        }
6847
        
6848
        private System.IAsyncResult OnBeginFinalPDF_SetFinalResultPath(object[] inValues, System.AsyncCallback callback, object asyncState) {
6849
            string project_no = ((string)(inValues[0]));
6850
            string document_id = ((string)(inValues[1]));
6851
            string url = ((string)(inValues[2]));
6852
            return this.BeginFinalPDF_SetFinalResultPath(project_no, document_id, url, callback, asyncState);
6853
        }
6854
        
6855
        private object[] OnEndFinalPDF_SetFinalResultPath(System.IAsyncResult result) {
6856
            bool retVal = this.EndFinalPDF_SetFinalResultPath(result);
6857
            return new object[] {
6858
                    retVal};
6859
        }
6860
        
6861
        private void OnFinalPDF_SetFinalResultPathCompleted(object state) {
6862
            if ((this.FinalPDF_SetFinalResultPathCompleted != null)) {
6863
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6864
                this.FinalPDF_SetFinalResultPathCompleted(this, new FinalPDF_SetFinalResultPathCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6865
            }
6866
        }
6867
        
6868
        public void FinalPDF_SetFinalResultPathAsync(string project_no, string document_id, string url) {
6869
            this.FinalPDF_SetFinalResultPathAsync(project_no, document_id, url, null);
6870
        }
6871
        
6872
        public void FinalPDF_SetFinalResultPathAsync(string project_no, string document_id, string url, object userState) {
6873
            if ((this.onBeginFinalPDF_SetFinalResultPathDelegate == null)) {
6874
                this.onBeginFinalPDF_SetFinalResultPathDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_SetFinalResultPath);
6875
            }
6876
            if ((this.onEndFinalPDF_SetFinalResultPathDelegate == null)) {
6877
                this.onEndFinalPDF_SetFinalResultPathDelegate = new EndOperationDelegate(this.OnEndFinalPDF_SetFinalResultPath);
6878
            }
6879
            if ((this.onFinalPDF_SetFinalResultPathCompletedDelegate == null)) {
6880
                this.onFinalPDF_SetFinalResultPathCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_SetFinalResultPathCompleted);
6881
            }
6882
            base.InvokeAsync(this.onBeginFinalPDF_SetFinalResultPathDelegate, new object[] {
6883
                        project_no,
6884
                        document_id,
6885
                        url}, this.onEndFinalPDF_SetFinalResultPathDelegate, this.onFinalPDF_SetFinalResultPathCompletedDelegate, userState);
6886
        }
6887
        
6888
        public bool SaveLog(string project_no, string document_id, string Log) {
6889
            return base.Channel.SaveLog(project_no, document_id, Log);
6890
        }
6891
        
6892
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6893
        public System.IAsyncResult BeginSaveLog(string project_no, string document_id, string Log, System.AsyncCallback callback, object asyncState) {
6894
            return base.Channel.BeginSaveLog(project_no, document_id, Log, callback, asyncState);
6895
        }
6896
        
6897
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6898
        public bool EndSaveLog(System.IAsyncResult result) {
6899
            return base.Channel.EndSaveLog(result);
6900
        }
6901
        
6902
        private System.IAsyncResult OnBeginSaveLog(object[] inValues, System.AsyncCallback callback, object asyncState) {
6903
            string project_no = ((string)(inValues[0]));
6904
            string document_id = ((string)(inValues[1]));
6905
            string Log = ((string)(inValues[2]));
6906
            return this.BeginSaveLog(project_no, document_id, Log, callback, asyncState);
6907
        }
6908
        
6909
        private object[] OnEndSaveLog(System.IAsyncResult result) {
6910
            bool retVal = this.EndSaveLog(result);
6911
            return new object[] {
6912
                    retVal};
6913
        }
6914
        
6915
        private void OnSaveLogCompleted(object state) {
6916
            if ((this.SaveLogCompleted != null)) {
6917
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6918
                this.SaveLogCompleted(this, new SaveLogCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6919
            }
6920
        }
6921
        
6922
        public void SaveLogAsync(string project_no, string document_id, string Log) {
6923
            this.SaveLogAsync(project_no, document_id, Log, null);
6924
        }
6925
        
6926
        public void SaveLogAsync(string project_no, string document_id, string Log, object userState) {
6927
            if ((this.onBeginSaveLogDelegate == null)) {
6928
                this.onBeginSaveLogDelegate = new BeginOperationDelegate(this.OnBeginSaveLog);
6929
            }
6930
            if ((this.onEndSaveLogDelegate == null)) {
6931
                this.onEndSaveLogDelegate = new EndOperationDelegate(this.OnEndSaveLog);
6932
            }
6933
            if ((this.onSaveLogCompletedDelegate == null)) {
6934
                this.onSaveLogCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnSaveLogCompleted);
6935
            }
6936
            base.InvokeAsync(this.onBeginSaveLogDelegate, new object[] {
6937
                        project_no,
6938
                        document_id,
6939
                        Log}, this.onEndSaveLogDelegate, this.onSaveLogCompletedDelegate, userState);
6940
        }
6941
        
6942
        public KCOMDataModel.DataModel.MEMBER FinalPDF_GetCommentMember(string project_no, string markupdata_id) {
6943
            return base.Channel.FinalPDF_GetCommentMember(project_no, markupdata_id);
6944
        }
6945
        
6946
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6947
        public System.IAsyncResult BeginFinalPDF_GetCommentMember(string project_no, string markupdata_id, System.AsyncCallback callback, object asyncState) {
6948
            return base.Channel.BeginFinalPDF_GetCommentMember(project_no, markupdata_id, callback, asyncState);
6949
        }
6950
        
6951
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6952
        public KCOMDataModel.DataModel.MEMBER EndFinalPDF_GetCommentMember(System.IAsyncResult result) {
6953
            return base.Channel.EndFinalPDF_GetCommentMember(result);
6954
        }
6955
        
6956
        private System.IAsyncResult OnBeginFinalPDF_GetCommentMember(object[] inValues, System.AsyncCallback callback, object asyncState) {
6957
            string project_no = ((string)(inValues[0]));
6958
            string markupdata_id = ((string)(inValues[1]));
6959
            return this.BeginFinalPDF_GetCommentMember(project_no, markupdata_id, callback, asyncState);
6960
        }
6961
        
6962
        private object[] OnEndFinalPDF_GetCommentMember(System.IAsyncResult result) {
6963
            KCOMDataModel.DataModel.MEMBER retVal = this.EndFinalPDF_GetCommentMember(result);
6964
            return new object[] {
6965
                    retVal};
6966
        }
6967
        
6968
        private void OnFinalPDF_GetCommentMemberCompleted(object state) {
6969
            if ((this.FinalPDF_GetCommentMemberCompleted != null)) {
6970
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
6971
                this.FinalPDF_GetCommentMemberCompleted(this, new FinalPDF_GetCommentMemberCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
6972
            }
6973
        }
6974
        
6975
        public void FinalPDF_GetCommentMemberAsync(string project_no, string markupdata_id) {
6976
            this.FinalPDF_GetCommentMemberAsync(project_no, markupdata_id, null);
6977
        }
6978
        
6979
        public void FinalPDF_GetCommentMemberAsync(string project_no, string markupdata_id, object userState) {
6980
            if ((this.onBeginFinalPDF_GetCommentMemberDelegate == null)) {
6981
                this.onBeginFinalPDF_GetCommentMemberDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetCommentMember);
6982
            }
6983
            if ((this.onEndFinalPDF_GetCommentMemberDelegate == null)) {
6984
                this.onEndFinalPDF_GetCommentMemberDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetCommentMember);
6985
            }
6986
            if ((this.onFinalPDF_GetCommentMemberCompletedDelegate == null)) {
6987
                this.onFinalPDF_GetCommentMemberCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetCommentMemberCompleted);
6988
            }
6989
            base.InvokeAsync(this.onBeginFinalPDF_GetCommentMemberDelegate, new object[] {
6990
                        project_no,
6991
                        markupdata_id}, this.onEndFinalPDF_GetCommentMemberDelegate, this.onFinalPDF_GetCommentMemberCompletedDelegate, userState);
6992
        }
6993
        
6994
        public System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> FinalPDF_GetProperties(string project_no) {
6995
            return base.Channel.FinalPDF_GetProperties(project_no);
6996
        }
6997
        
6998
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
6999
        public System.IAsyncResult BeginFinalPDF_GetProperties(string project_no, System.AsyncCallback callback, object asyncState) {
7000
            return base.Channel.BeginFinalPDF_GetProperties(project_no, callback, asyncState);
7001
        }
7002
        
7003
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
7004
        public System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> EndFinalPDF_GetProperties(System.IAsyncResult result) {
7005
            return base.Channel.EndFinalPDF_GetProperties(result);
7006
        }
7007
        
7008
        private System.IAsyncResult OnBeginFinalPDF_GetProperties(object[] inValues, System.AsyncCallback callback, object asyncState) {
7009
            string project_no = ((string)(inValues[0]));
7010
            return this.BeginFinalPDF_GetProperties(project_no, callback, asyncState);
7011
        }
7012
        
7013
        private object[] OnEndFinalPDF_GetProperties(System.IAsyncResult result) {
7014
            System.Collections.Generic.List<KCOMDataModel.DataModel.PROPERTIES> retVal = this.EndFinalPDF_GetProperties(result);
7015
            return new object[] {
7016
                    retVal};
7017
        }
7018
        
7019
        private void OnFinalPDF_GetPropertiesCompleted(object state) {
7020
            if ((this.FinalPDF_GetPropertiesCompleted != null)) {
7021
                InvokeAsyncCompletedEventArgs e = ((InvokeAsyncCompletedEventArgs)(state));
7022
                this.FinalPDF_GetPropertiesCompleted(this, new FinalPDF_GetPropertiesCompletedEventArgs(e.Results, e.Error, e.Cancelled, e.UserState));
7023
            }
7024
        }
7025
        
7026
        public void FinalPDF_GetPropertiesAsync(string project_no) {
7027
            this.FinalPDF_GetPropertiesAsync(project_no, null);
7028
        }
7029
        
7030
        public void FinalPDF_GetPropertiesAsync(string project_no, object userState) {
7031
            if ((this.onBeginFinalPDF_GetPropertiesDelegate == null)) {
7032
                this.onBeginFinalPDF_GetPropertiesDelegate = new BeginOperationDelegate(this.OnBeginFinalPDF_GetProperties);
7033
            }
7034
            if ((this.onEndFinalPDF_GetPropertiesDelegate == null)) {
7035
                this.onEndFinalPDF_GetPropertiesDelegate = new EndOperationDelegate(this.OnEndFinalPDF_GetProperties);
7036
            }
7037
            if ((this.onFinalPDF_GetPropertiesCompletedDelegate == null)) {
7038
                this.onFinalPDF_GetPropertiesCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnFinalPDF_GetPropertiesCompleted);
7039
            }
7040
            base.InvokeAsync(this.onBeginFinalPDF_GetPropertiesDelegate, new object[] {
7041
                        project_no}, this.onEndFinalPDF_GetPropertiesDelegate, this.onFinalPDF_GetPropertiesCompletedDelegate, userState);
7042
        }
7043
    }
7044
}
클립보드 이미지 추가 (최대 크기: 500 MB)