ke_junjie
2025-06-04 2462b97ab51eb872b1a873cfd6de0b750123123a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Threading;
using System.Web.Services;
using System.Web.Services.Description;
using System.Web.Services.Protocols;
using System.Xml.Serialization;
using QQShow.Properties;
 
namespace QQShow.SrmService
{
    // Token: 0x02000064 RID: 100
    [DebuggerStepThrough]
    [WebServiceBinding(Name = "BasicHttpBinding_ISrmService", Namespace = "http://tempuri.org/")]
    [GeneratedCode("System.Web.Services", "4.8.4084.0")]
    [DesignerCategory("code")]
    public class SrmService : SoapHttpClientProtocol
    {
        // Token: 0x060007BC RID: 1980 RVA: 0x0001367C File Offset: 0x0001187C
        public SrmService()
        {
            this.Url = Settings.Default.QQShow_SrmService_SrmService;
            if (this.IsLocalFileSystemWebService(this.Url))
            {
                this.UseDefaultCredentials = true;
                this.useDefaultCredentialsSetExplicitly = false;
            }
            else
            {
                this.useDefaultCredentialsSetExplicitly = true;
            }
        }
 
        // Token: 0x17000378 RID: 888
        // (get) Token: 0x060007BD RID: 1981 RVA: 0x000136D4 File Offset: 0x000118D4
        // (set) Token: 0x060007BE RID: 1982 RVA: 0x000136EC File Offset: 0x000118EC
        public new string Url
        {
            get
            {
                return base.Url;
            }
            set
            {
                if (this.IsLocalFileSystemWebService(base.Url) && !this.useDefaultCredentialsSetExplicitly && !this.IsLocalFileSystemWebService(value))
                {
                    base.UseDefaultCredentials = false;
                }
                base.Url = value;
            }
        }
 
        // Token: 0x17000379 RID: 889
        // (get) Token: 0x060007BF RID: 1983 RVA: 0x00013734 File Offset: 0x00011934
        // (set) Token: 0x060007C0 RID: 1984 RVA: 0x0001374C File Offset: 0x0001194C
        public new bool UseDefaultCredentials
        {
            get
            {
                return base.UseDefaultCredentials;
            }
            set
            {
                base.UseDefaultCredentials = value;
                this.useDefaultCredentialsSetExplicitly = true;
            }
        }
 
        // Token: 0x1400000C RID: 12
        // (add) Token: 0x060007C1 RID: 1985 RVA: 0x00013760 File Offset: 0x00011960
        // (remove) Token: 0x060007C2 RID: 1986 RVA: 0x0001379C File Offset: 0x0001199C
        public event GetSrmInfoCompletedEventHandler GetSrmInfoCompleted;
 
        // Token: 0x1400000D RID: 13
        // (add) Token: 0x060007C3 RID: 1987 RVA: 0x000137D8 File Offset: 0x000119D8
        // (remove) Token: 0x060007C4 RID: 1988 RVA: 0x00013814 File Offset: 0x00011A14
        public event SendSrmDeleteCompletedEventHandler SendSrmDeleteCompleted;
 
        // Token: 0x1400000E RID: 14
        // (add) Token: 0x060007C5 RID: 1989 RVA: 0x00013850 File Offset: 0x00011A50
        // (remove) Token: 0x060007C6 RID: 1990 RVA: 0x0001388C File Offset: 0x00011A8C
        public event SendSrmTaskFinishConfirmCompletedEventHandler SendSrmTaskFinishConfirmCompleted;
 
        // Token: 0x1400000F RID: 15
        // (add) Token: 0x060007C7 RID: 1991 RVA: 0x000138C8 File Offset: 0x00011AC8
        // (remove) Token: 0x060007C8 RID: 1992 RVA: 0x00013904 File Offset: 0x00011B04
        public event SendSrmEStopCompletedEventHandler SendSrmEStopCompleted;
 
        // Token: 0x14000010 RID: 16
        // (add) Token: 0x060007C9 RID: 1993 RVA: 0x00013940 File Offset: 0x00011B40
        // (remove) Token: 0x060007CA RID: 1994 RVA: 0x0001397C File Offset: 0x00011B7C
        public event SendSrmMoveCompletedEventHandler SendSrmMoveCompleted;
 
        // Token: 0x14000011 RID: 17
        // (add) Token: 0x060007CB RID: 1995 RVA: 0x000139B8 File Offset: 0x00011BB8
        // (remove) Token: 0x060007CC RID: 1996 RVA: 0x000139F4 File Offset: 0x00011BF4
        public event SendSrmTaskCompletedEventHandler SendSrmTaskCompleted;
 
        // Token: 0x14000012 RID: 18
        // (add) Token: 0x060007CD RID: 1997 RVA: 0x00013A30 File Offset: 0x00011C30
        // (remove) Token: 0x060007CE RID: 1998 RVA: 0x00013A6C File Offset: 0x00011C6C
        public event SrmRlsAlertCompletedEventHandler SrmRlsAlertCompleted;
 
        // Token: 0x14000013 RID: 19
        // (add) Token: 0x060007CF RID: 1999 RVA: 0x00013AA8 File Offset: 0x00011CA8
        // (remove) Token: 0x060007D0 RID: 2000 RVA: 0x00013AE4 File Offset: 0x00011CE4
        public event IsTaskFinishCompletedEventHandler IsTaskFinishCompleted;
 
        // Token: 0x14000014 RID: 20
        // (add) Token: 0x060007D1 RID: 2001 RVA: 0x00013B20 File Offset: 0x00011D20
        // (remove) Token: 0x060007D2 RID: 2002 RVA: 0x00013B5C File Offset: 0x00011D5C
        public event IsReadyCompletedEventHandler IsReadyCompleted;
 
        // Token: 0x14000015 RID: 21
        // (add) Token: 0x060007D3 RID: 2003 RVA: 0x00013B98 File Offset: 0x00011D98
        // (remove) Token: 0x060007D4 RID: 2004 RVA: 0x00013BD4 File Offset: 0x00011DD4
        public event FinishTaskCompletedEventHandler FinishTaskCompleted;
 
        // Token: 0x14000016 RID: 22
        // (add) Token: 0x060007D5 RID: 2005 RVA: 0x00013C10 File Offset: 0x00011E10
        // (remove) Token: 0x060007D6 RID: 2006 RVA: 0x00013C4C File Offset: 0x00011E4C
        public event DeleteMainTaskCompletedEventHandler DeleteMainTaskCompleted;
 
        // Token: 0x14000017 RID: 23
        // (add) Token: 0x060007D7 RID: 2007 RVA: 0x00013C88 File Offset: 0x00011E88
        // (remove) Token: 0x060007D8 RID: 2008 RVA: 0x00013CC4 File Offset: 0x00011EC4
        public event DeleteMainTaskByContainerNameCompletedEventHandler DeleteMainTaskByContainerNameCompleted;
 
        // Token: 0x14000018 RID: 24
        // (add) Token: 0x060007D9 RID: 2009 RVA: 0x00013D00 File Offset: 0x00011F00
        // (remove) Token: 0x060007DA RID: 2010 RVA: 0x00013D3C File Offset: 0x00011F3C
        public event IsNotAlarmCompletedEventHandler IsNotAlarmCompleted;
 
        // Token: 0x14000019 RID: 25
        // (add) Token: 0x060007DB RID: 2011 RVA: 0x00013D78 File Offset: 0x00011F78
        // (remove) Token: 0x060007DC RID: 2012 RVA: 0x00013DB4 File Offset: 0x00011FB4
        public event UseAutoMoveCompletedEventHandler UseAutoMoveCompleted;
 
        // Token: 0x060007DD RID: 2013 RVA: 0x00013DF0 File Offset: 0x00011FF0
        [SoapRpcMethod("http://tempuri.org/ISrmService/GetSrmInfo", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public string GetSrmInfo(int srmId)
        {
            object[] results = base.Invoke("GetSrmInfo", new object[]
            {
                srmId
            });
            return (string)results[0];
        }
 
        // Token: 0x060007DE RID: 2014 RVA: 0x00013E27 File Offset: 0x00012027
        public void GetSrmInfoAsync(int srmId)
        {
            this.GetSrmInfoAsync(srmId, null);
        }
 
        // Token: 0x060007DF RID: 2015 RVA: 0x00013E34 File Offset: 0x00012034
        public void GetSrmInfoAsync(int srmId, object userState)
        {
            if (this.GetSrmInfoOperationCompleted == null)
            {
                this.GetSrmInfoOperationCompleted = new SendOrPostCallback(this.OnGetSrmInfoOperationCompleted);
            }
            base.InvokeAsync("GetSrmInfo", new object[]
            {
                srmId
            }, this.GetSrmInfoOperationCompleted, userState);
        }
 
        // Token: 0x060007E0 RID: 2016 RVA: 0x00013E8C File Offset: 0x0001208C
        private void OnGetSrmInfoOperationCompleted(object arg)
        {
            if (this.GetSrmInfoCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.GetSrmInfoCompleted(this, new GetSrmInfoCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007E1 RID: 2017 RVA: 0x00013EDC File Offset: 0x000120DC
        [SoapRpcMethod("http://tempuri.org/ISrmService/SendSrmDelete", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public int SendSrmDelete(int srmId)
        {
            object[] results = base.Invoke("SendSrmDelete", new object[]
            {
                srmId
            });
            return (int)results[0];
        }
 
        // Token: 0x060007E2 RID: 2018 RVA: 0x00013F13 File Offset: 0x00012113
        public void SendSrmDeleteAsync(int srmId)
        {
            this.SendSrmDeleteAsync(srmId, null);
        }
 
        // Token: 0x060007E3 RID: 2019 RVA: 0x00013F20 File Offset: 0x00012120
        public void SendSrmDeleteAsync(int srmId, object userState)
        {
            if (this.SendSrmDeleteOperationCompleted == null)
            {
                this.SendSrmDeleteOperationCompleted = new SendOrPostCallback(this.OnSendSrmDeleteOperationCompleted);
            }
            base.InvokeAsync("SendSrmDelete", new object[]
            {
                srmId
            }, this.SendSrmDeleteOperationCompleted, userState);
        }
 
        // Token: 0x060007E4 RID: 2020 RVA: 0x00013F78 File Offset: 0x00012178
        private void OnSendSrmDeleteOperationCompleted(object arg)
        {
            if (this.SendSrmDeleteCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.SendSrmDeleteCompleted(this, new SendSrmDeleteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007E5 RID: 2021 RVA: 0x00013FC8 File Offset: 0x000121C8
        [SoapRpcMethod("http://tempuri.org/ISrmService/SendSrmTaskFinishConfirm", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public int SendSrmTaskFinishConfirm(int srmId)
        {
            object[] results = base.Invoke("SendSrmTaskFinishConfirm", new object[]
            {
                srmId
            });
            return (int)results[0];
        }
 
        // Token: 0x060007E6 RID: 2022 RVA: 0x00013FFF File Offset: 0x000121FF
        public void SendSrmTaskFinishConfirmAsync(int srmId)
        {
            this.SendSrmTaskFinishConfirmAsync(srmId, null);
        }
 
        // Token: 0x060007E7 RID: 2023 RVA: 0x0001400C File Offset: 0x0001220C
        public void SendSrmTaskFinishConfirmAsync(int srmId, object userState)
        {
            if (this.SendSrmTaskFinishConfirmOperationCompleted == null)
            {
                this.SendSrmTaskFinishConfirmOperationCompleted = new SendOrPostCallback(this.OnSendSrmTaskFinishConfirmOperationCompleted);
            }
            base.InvokeAsync("SendSrmTaskFinishConfirm", new object[]
            {
                srmId
            }, this.SendSrmTaskFinishConfirmOperationCompleted, userState);
        }
 
        // Token: 0x060007E8 RID: 2024 RVA: 0x00014064 File Offset: 0x00012264
        private void OnSendSrmTaskFinishConfirmOperationCompleted(object arg)
        {
            if (this.SendSrmTaskFinishConfirmCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.SendSrmTaskFinishConfirmCompleted(this, new SendSrmTaskFinishConfirmCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007E9 RID: 2025 RVA: 0x000140B4 File Offset: 0x000122B4
        [SoapRpcMethod("http://tempuri.org/ISrmService/SendSrmEStop", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public int SendSrmEStop(int srmId)
        {
            object[] results = base.Invoke("SendSrmEStop", new object[]
            {
                srmId
            });
            return (int)results[0];
        }
 
        // Token: 0x060007EA RID: 2026 RVA: 0x000140EB File Offset: 0x000122EB
        public void SendSrmEStopAsync(int srmId)
        {
            this.SendSrmEStopAsync(srmId, null);
        }
 
        // Token: 0x060007EB RID: 2027 RVA: 0x000140F8 File Offset: 0x000122F8
        public void SendSrmEStopAsync(int srmId, object userState)
        {
            if (this.SendSrmEStopOperationCompleted == null)
            {
                this.SendSrmEStopOperationCompleted = new SendOrPostCallback(this.OnSendSrmEStopOperationCompleted);
            }
            base.InvokeAsync("SendSrmEStop", new object[]
            {
                srmId
            }, this.SendSrmEStopOperationCompleted, userState);
        }
 
        // Token: 0x060007EC RID: 2028 RVA: 0x00014150 File Offset: 0x00012350
        private void OnSendSrmEStopOperationCompleted(object arg)
        {
            if (this.SendSrmEStopCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.SendSrmEStopCompleted(this, new SendSrmEStopCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007ED RID: 2029 RVA: 0x000141A0 File Offset: 0x000123A0
        [SoapRpcMethod("http://tempuri.org/ISrmService/SendSrmMove", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public int SendSrmMove(int srmId, int taskId, string toPlace, int command, int palletType, int taskFather)
        {
            object[] results = base.Invoke("SendSrmMove", new object[]
            {
                srmId,
                taskId,
                toPlace,
                command,
                palletType,
                taskFather
            });
            return (int)results[0];
        }
 
        // Token: 0x060007EE RID: 2030 RVA: 0x00014202 File Offset: 0x00012402
        public void SendSrmMoveAsync(int srmId, int taskId, string toPlace, int command, int palletType, int taskFather)
        {
            this.SendSrmMoveAsync(srmId, taskId, toPlace, command, palletType, taskFather, null);
        }
 
        // Token: 0x060007EF RID: 2031 RVA: 0x00014218 File Offset: 0x00012418
        public void SendSrmMoveAsync(int srmId, int taskId, string toPlace, int command, int palletType, int taskFather, object userState)
        {
            if (this.SendSrmMoveOperationCompleted == null)
            {
                this.SendSrmMoveOperationCompleted = new SendOrPostCallback(this.OnSendSrmMoveOperationCompleted);
            }
            base.InvokeAsync("SendSrmMove", new object[]
            {
                srmId,
                taskId,
                toPlace,
                command,
                palletType,
                taskFather
            }, this.SendSrmMoveOperationCompleted, userState);
        }
 
        // Token: 0x060007F0 RID: 2032 RVA: 0x0001429C File Offset: 0x0001249C
        private void OnSendSrmMoveOperationCompleted(object arg)
        {
            if (this.SendSrmMoveCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.SendSrmMoveCompleted(this, new SendSrmMoveCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007F1 RID: 2033 RVA: 0x000142EC File Offset: 0x000124EC
        [SoapRpcMethod("http://tempuri.org/ISrmService/SendSrmTask", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public int SendSrmTask(int srmId, int taskId, string sourcePlace, string toPlace, int pallet, int taskFather)
        {
            object[] results = base.Invoke("SendSrmTask", new object[]
            {
                srmId,
                taskId,
                sourcePlace,
                toPlace,
                pallet,
                taskFather
            });
            return (int)results[0];
        }
 
        // Token: 0x060007F2 RID: 2034 RVA: 0x00014349 File Offset: 0x00012549
        public void SendSrmTaskAsync(int srmId, int taskId, string sourcePlace, string toPlace, int pallet, int taskFather)
        {
            this.SendSrmTaskAsync(srmId, taskId, sourcePlace, toPlace, pallet, taskFather, null);
        }
 
        // Token: 0x060007F3 RID: 2035 RVA: 0x00014360 File Offset: 0x00012560
        public void SendSrmTaskAsync(int srmId, int taskId, string sourcePlace, string toPlace, int pallet, int taskFather, object userState)
        {
            if (this.SendSrmTaskOperationCompleted == null)
            {
                this.SendSrmTaskOperationCompleted = new SendOrPostCallback(this.OnSendSrmTaskOperationCompleted);
            }
            base.InvokeAsync("SendSrmTask", new object[]
            {
                srmId,
                taskId,
                sourcePlace,
                toPlace,
                pallet,
                taskFather
            }, this.SendSrmTaskOperationCompleted, userState);
        }
 
        // Token: 0x060007F4 RID: 2036 RVA: 0x000143E0 File Offset: 0x000125E0
        private void OnSendSrmTaskOperationCompleted(object arg)
        {
            if (this.SendSrmTaskCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.SendSrmTaskCompleted(this, new SendSrmTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007F5 RID: 2037 RVA: 0x00014430 File Offset: 0x00012630
        [SoapRpcMethod("http://tempuri.org/ISrmService/SrmRlsAlert", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public void SrmRlsAlert(int srmId)
        {
            base.Invoke("SrmRlsAlert", new object[]
            {
                srmId
            });
        }
 
        // Token: 0x060007F6 RID: 2038 RVA: 0x0001445B File Offset: 0x0001265B
        public void SrmRlsAlertAsync(int srmId)
        {
            this.SrmRlsAlertAsync(srmId, null);
        }
 
        // Token: 0x060007F7 RID: 2039 RVA: 0x00014468 File Offset: 0x00012668
        public void SrmRlsAlertAsync(int srmId, object userState)
        {
            if (this.SrmRlsAlertOperationCompleted == null)
            {
                this.SrmRlsAlertOperationCompleted = new SendOrPostCallback(this.OnSrmRlsAlertOperationCompleted);
            }
            base.InvokeAsync("SrmRlsAlert", new object[]
            {
                srmId
            }, this.SrmRlsAlertOperationCompleted, userState);
        }
 
        // Token: 0x060007F8 RID: 2040 RVA: 0x000144C0 File Offset: 0x000126C0
        private void OnSrmRlsAlertOperationCompleted(object arg)
        {
            if (this.SrmRlsAlertCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.SrmRlsAlertCompleted(this, new AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007F9 RID: 2041 RVA: 0x00014508 File Offset: 0x00012708
        [SoapRpcMethod("http://tempuri.org/ISrmService/IsTaskFinish", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public int IsTaskFinish(int srmId)
        {
            object[] results = base.Invoke("IsTaskFinish", new object[]
            {
                srmId
            });
            return (int)results[0];
        }
 
        // Token: 0x060007FA RID: 2042 RVA: 0x0001453F File Offset: 0x0001273F
        public void IsTaskFinishAsync(int srmId)
        {
            this.IsTaskFinishAsync(srmId, null);
        }
 
        // Token: 0x060007FB RID: 2043 RVA: 0x0001454C File Offset: 0x0001274C
        public void IsTaskFinishAsync(int srmId, object userState)
        {
            if (this.IsTaskFinishOperationCompleted == null)
            {
                this.IsTaskFinishOperationCompleted = new SendOrPostCallback(this.OnIsTaskFinishOperationCompleted);
            }
            base.InvokeAsync("IsTaskFinish", new object[]
            {
                srmId
            }, this.IsTaskFinishOperationCompleted, userState);
        }
 
        // Token: 0x060007FC RID: 2044 RVA: 0x000145A4 File Offset: 0x000127A4
        private void OnIsTaskFinishOperationCompleted(object arg)
        {
            if (this.IsTaskFinishCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.IsTaskFinishCompleted(this, new IsTaskFinishCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x060007FD RID: 2045 RVA: 0x000145F4 File Offset: 0x000127F4
        [SoapRpcMethod("http://tempuri.org/ISrmService/IsReady", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public bool IsReady(int srmId)
        {
            object[] results = base.Invoke("IsReady", new object[]
            {
                srmId
            });
            return (bool)results[0];
        }
 
        // Token: 0x060007FE RID: 2046 RVA: 0x0001462B File Offset: 0x0001282B
        public void IsReadyAsync(int srmId)
        {
            this.IsReadyAsync(srmId, null);
        }
 
        // Token: 0x060007FF RID: 2047 RVA: 0x00014638 File Offset: 0x00012838
        public void IsReadyAsync(int srmId, object userState)
        {
            if (this.IsReadyOperationCompleted == null)
            {
                this.IsReadyOperationCompleted = new SendOrPostCallback(this.OnIsReadyOperationCompleted);
            }
            base.InvokeAsync("IsReady", new object[]
            {
                srmId
            }, this.IsReadyOperationCompleted, userState);
        }
 
        // Token: 0x06000800 RID: 2048 RVA: 0x00014690 File Offset: 0x00012890
        private void OnIsReadyOperationCompleted(object arg)
        {
            if (this.IsReadyCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.IsReadyCompleted(this, new IsReadyCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x06000801 RID: 2049 RVA: 0x000146E0 File Offset: 0x000128E0
        [SoapRpcMethod("http://tempuri.org/ISrmService/FinishTask", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public int FinishTask(int srmId)
        {
            object[] results = base.Invoke("FinishTask", new object[]
            {
                srmId
            });
            return (int)results[0];
        }
 
        // Token: 0x06000802 RID: 2050 RVA: 0x00014717 File Offset: 0x00012917
        public void FinishTaskAsync(int srmId)
        {
            this.FinishTaskAsync(srmId, null);
        }
 
        // Token: 0x06000803 RID: 2051 RVA: 0x00014724 File Offset: 0x00012924
        public void FinishTaskAsync(int srmId, object userState)
        {
            if (this.FinishTaskOperationCompleted == null)
            {
                this.FinishTaskOperationCompleted = new SendOrPostCallback(this.OnFinishTaskOperationCompleted);
            }
            base.InvokeAsync("FinishTask", new object[]
            {
                srmId
            }, this.FinishTaskOperationCompleted, userState);
        }
 
        // Token: 0x06000804 RID: 2052 RVA: 0x0001477C File Offset: 0x0001297C
        private void OnFinishTaskOperationCompleted(object arg)
        {
            if (this.FinishTaskCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.FinishTaskCompleted(this, new FinishTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x06000805 RID: 2053 RVA: 0x000147CC File Offset: 0x000129CC
        [SoapRpcMethod("http://tempuri.org/ISrmService/DeleteMainTask", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public bool DeleteMainTask(int id, [XmlArrayItem(Namespace = "http://tempuri.org/", IsNullable = false)] out int[] tranDoingId, [XmlArrayItem(Namespace = "http://tempuri.org/", IsNullable = false)] out int[] rgvDoingId, [XmlArrayItem(Namespace = "http://tempuri.org/", IsNullable = false)] out int[] srmDoingId, [XmlArrayItem(Namespace = "http://tempuri.org/")] out string[] placeList, out int dir)
        {
            object[] results = base.Invoke("DeleteMainTask", new object[]
            {
                id
            });
            tranDoingId = (int[])results[1];
            rgvDoingId = (int[])results[2];
            srmDoingId = (int[])results[3];
            placeList = (string[])results[4];
            dir = (int)results[5];
            return (bool)results[0];
        }
 
        // Token: 0x06000806 RID: 2054 RVA: 0x00014838 File Offset: 0x00012A38
        public void DeleteMainTaskAsync(int id)
        {
            this.DeleteMainTaskAsync(id, null);
        }
 
        // Token: 0x06000807 RID: 2055 RVA: 0x00014844 File Offset: 0x00012A44
        public void DeleteMainTaskAsync(int id, object userState)
        {
            if (this.DeleteMainTaskOperationCompleted == null)
            {
                this.DeleteMainTaskOperationCompleted = new SendOrPostCallback(this.OnDeleteMainTaskOperationCompleted);
            }
            base.InvokeAsync("DeleteMainTask", new object[]
            {
                id
            }, this.DeleteMainTaskOperationCompleted, userState);
        }
 
        // Token: 0x06000808 RID: 2056 RVA: 0x0001489C File Offset: 0x00012A9C
        private void OnDeleteMainTaskOperationCompleted(object arg)
        {
            if (this.DeleteMainTaskCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.DeleteMainTaskCompleted(this, new DeleteMainTaskCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x06000809 RID: 2057 RVA: 0x000148EC File Offset: 0x00012AEC
        [SoapRpcMethod("http://tempuri.org/ISrmService/DeleteMainTaskByContainerName", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public bool DeleteMainTaskByContainerName(string containerName, [XmlArrayItem(Namespace = "http://tempuri.org/", IsNullable = false)] out int[] tranDoingId, [XmlArrayItem(Namespace = "http://tempuri.org/", IsNullable = false)] out int[] rgvDoingId, [XmlArrayItem(Namespace = "http://tempuri.org/", IsNullable = false)] out int[] srmDoingId, [XmlArrayItem(Namespace = "http://tempuri.org/")] out string[] placeList, out int dir)
        {
            object[] results = base.Invoke("DeleteMainTaskByContainerName", new object[]
            {
                containerName
            });
            tranDoingId = (int[])results[1];
            rgvDoingId = (int[])results[2];
            srmDoingId = (int[])results[3];
            placeList = (string[])results[4];
            dir = (int)results[5];
            return (bool)results[0];
        }
 
        // Token: 0x0600080A RID: 2058 RVA: 0x00014953 File Offset: 0x00012B53
        public void DeleteMainTaskByContainerNameAsync(string containerName)
        {
            this.DeleteMainTaskByContainerNameAsync(containerName, null);
        }
 
        // Token: 0x0600080B RID: 2059 RVA: 0x00014960 File Offset: 0x00012B60
        public void DeleteMainTaskByContainerNameAsync(string containerName, object userState)
        {
            if (this.DeleteMainTaskByContainerNameOperationCompleted == null)
            {
                this.DeleteMainTaskByContainerNameOperationCompleted = new SendOrPostCallback(this.OnDeleteMainTaskByContainerNameOperationCompleted);
            }
            base.InvokeAsync("DeleteMainTaskByContainerName", new object[]
            {
                containerName
            }, this.DeleteMainTaskByContainerNameOperationCompleted, userState);
        }
 
        // Token: 0x0600080C RID: 2060 RVA: 0x000149B4 File Offset: 0x00012BB4
        private void OnDeleteMainTaskByContainerNameOperationCompleted(object arg)
        {
            if (this.DeleteMainTaskByContainerNameCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.DeleteMainTaskByContainerNameCompleted(this, new DeleteMainTaskByContainerNameCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x0600080D RID: 2061 RVA: 0x00014A04 File Offset: 0x00012C04
        [SoapRpcMethod("http://tempuri.org/ISrmService/IsNotAlarm", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public bool IsNotAlarm(int srmId)
        {
            object[] results = base.Invoke("IsNotAlarm", new object[]
            {
                srmId
            });
            return (bool)results[0];
        }
 
        // Token: 0x0600080E RID: 2062 RVA: 0x00014A3B File Offset: 0x00012C3B
        public void IsNotAlarmAsync(int srmId)
        {
            this.IsNotAlarmAsync(srmId, null);
        }
 
        // Token: 0x0600080F RID: 2063 RVA: 0x00014A48 File Offset: 0x00012C48
        public void IsNotAlarmAsync(int srmId, object userState)
        {
            if (this.IsNotAlarmOperationCompleted == null)
            {
                this.IsNotAlarmOperationCompleted = new SendOrPostCallback(this.OnIsNotAlarmOperationCompleted);
            }
            base.InvokeAsync("IsNotAlarm", new object[]
            {
                srmId
            }, this.IsNotAlarmOperationCompleted, userState);
        }
 
        // Token: 0x06000810 RID: 2064 RVA: 0x00014AA0 File Offset: 0x00012CA0
        private void OnIsNotAlarmOperationCompleted(object arg)
        {
            if (this.IsNotAlarmCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.IsNotAlarmCompleted(this, new IsNotAlarmCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x06000811 RID: 2065 RVA: 0x00014AF0 File Offset: 0x00012CF0
        [SoapRpcMethod("http://tempuri.org/ISrmService/UseAutoMove", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = SoapBindingUse.Literal)]
        public bool UseAutoMove(int srmId)
        {
            object[] results = base.Invoke("UseAutoMove", new object[]
            {
                srmId
            });
            return (bool)results[0];
        }
 
        // Token: 0x06000812 RID: 2066 RVA: 0x00014B27 File Offset: 0x00012D27
        public void UseAutoMoveAsync(int srmId)
        {
            this.UseAutoMoveAsync(srmId, null);
        }
 
        // Token: 0x06000813 RID: 2067 RVA: 0x00014B34 File Offset: 0x00012D34
        public void UseAutoMoveAsync(int srmId, object userState)
        {
            if (this.UseAutoMoveOperationCompleted == null)
            {
                this.UseAutoMoveOperationCompleted = new SendOrPostCallback(this.OnUseAutoMoveOperationCompleted);
            }
            base.InvokeAsync("UseAutoMove", new object[]
            {
                srmId
            }, this.UseAutoMoveOperationCompleted, userState);
        }
 
        // Token: 0x06000814 RID: 2068 RVA: 0x00014B8C File Offset: 0x00012D8C
        private void OnUseAutoMoveOperationCompleted(object arg)
        {
            if (this.UseAutoMoveCompleted != null)
            {
                InvokeCompletedEventArgs invokeArgs = (InvokeCompletedEventArgs)arg;
                this.UseAutoMoveCompleted(this, new UseAutoMoveCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
            }
        }
 
        // Token: 0x06000815 RID: 2069 RVA: 0x00014BDA File Offset: 0x00012DDA
        public new void CancelAsync(object userState)
        {
            base.CancelAsync(userState);
        }
 
        // Token: 0x06000816 RID: 2070 RVA: 0x00014BE8 File Offset: 0x00012DE8
        private bool IsLocalFileSystemWebService(string url)
        {
            bool result;
            if (url == null || url == string.Empty)
            {
                result = false;
            }
            else
            {
                Uri wsUri = new Uri(url);
                result = (wsUri.Port >= 1024 && string.Compare(wsUri.Host, "localHost", StringComparison.OrdinalIgnoreCase) == 0);
            }
            return result;
        }
 
        // Token: 0x0400045D RID: 1117
        private SendOrPostCallback GetSrmInfoOperationCompleted;
 
        // Token: 0x0400045E RID: 1118
        private SendOrPostCallback SendSrmDeleteOperationCompleted;
 
        // Token: 0x0400045F RID: 1119
        private SendOrPostCallback SendSrmTaskFinishConfirmOperationCompleted;
 
        // Token: 0x04000460 RID: 1120
        private SendOrPostCallback SendSrmEStopOperationCompleted;
 
        // Token: 0x04000461 RID: 1121
        private SendOrPostCallback SendSrmMoveOperationCompleted;
 
        // Token: 0x04000462 RID: 1122
        private SendOrPostCallback SendSrmTaskOperationCompleted;
 
        // Token: 0x04000463 RID: 1123
        private SendOrPostCallback SrmRlsAlertOperationCompleted;
 
        // Token: 0x04000464 RID: 1124
        private SendOrPostCallback IsTaskFinishOperationCompleted;
 
        // Token: 0x04000465 RID: 1125
        private SendOrPostCallback IsReadyOperationCompleted;
 
        // Token: 0x04000466 RID: 1126
        private SendOrPostCallback FinishTaskOperationCompleted;
 
        // Token: 0x04000467 RID: 1127
        private SendOrPostCallback DeleteMainTaskOperationCompleted;
 
        // Token: 0x04000468 RID: 1128
        private SendOrPostCallback DeleteMainTaskByContainerNameOperationCompleted;
 
        // Token: 0x04000469 RID: 1129
        private SendOrPostCallback IsNotAlarmOperationCompleted;
 
        // Token: 0x0400046A RID: 1130
        private SendOrPostCallback UseAutoMoveOperationCompleted;
 
        // Token: 0x0400046B RID: 1131
        private bool useDefaultCredentialsSetExplicitly;
    }
}