-
Notifications
You must be signed in to change notification settings - Fork 0
/
managedCS.il
1539 lines (1335 loc) · 88 KB
/
managedCS.il
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
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Microsoft (R) .NET Framework IL Disassembler. Version 3.5.30729.1
// Copyright (c) Microsoft Corporation. All rights reserved.
// Metadata version: v2.0.50727
.assembly extern mscorlib
{
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
.ver 2:0:0:0
}
.assembly csexts
{
.custom instance void [mscorlib]System.Reflection.AssemblyCopyrightAttribute::.ctor(string) = ( 01 00 27 43 6F 70 79 72 69 67 68 74 20 C2 A9 20 // ..'Copyright ..
4D 69 63 72 6F 73 6F 66 74 20 43 6F 72 70 6F 72 // Microsoft Corpor
61 74 69 6F 6E 20 32 30 30 39 00 00 ) // ation 2009..
.custom instance void [mscorlib]System.Reflection.AssemblyTrademarkAttribute::.ctor(string) = ( 01 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.InteropServices.ComVisibleAttribute::.ctor(bool) = ( 01 00 00 00 00 )
.custom instance void [mscorlib]System.Reflection.AssemblyProductAttribute::.ctor(string) = ( 01 00 06 63 73 65 78 74 73 00 00 ) // ...csexts..
// --- The following custom attribute is added automatically, do not uncomment -------
// .custom instance void [mscorlib]System.Diagnostics.DebuggableAttribute::.ctor(valuetype [mscorlib]System.Diagnostics.DebuggableAttribute/DebuggingModes) = ( 01 00 07 01 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(int32) = ( 01 00 08 00 00 00 00 00 )
.custom instance void [mscorlib]System.Reflection.AssemblyCompanyAttribute::.ctor(string) = ( 01 00 15 4D 69 63 72 6F 73 6F 66 74 20 43 6F 72 // ...Microsoft Cor
70 6F 72 61 74 69 6F 6E 00 00 ) // poration..
.custom instance void [mscorlib]System.Runtime.InteropServices.GuidAttribute::.ctor(string) = ( 01 00 24 64 37 30 37 63 37 30 61 2D 38 65 62 33 // ..$d707c70a-8eb3
2D 34 65 64 65 2D 61 36 34 31 2D 38 35 36 32 66 // -4ede-a641-8562f
33 38 39 65 30 38 62 00 00 ) // 389e08b..
.custom instance void [mscorlib]System.Reflection.AssemblyConfigurationAttribute::.ctor(string) = ( 01 00 00 00 00 )
.custom instance void [mscorlib]System.Reflection.AssemblyFileVersionAttribute::.ctor(string) = ( 01 00 07 31 2E 30 2E 30 2E 30 00 00 ) // ...1.0.0.0..
.custom instance void [mscorlib]System.Reflection.AssemblyDescriptionAttribute::.ctor(string) = ( 01 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor() = ( 01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78 // ....T..WrapNonEx
63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01 ) // ceptionThrows.
.custom instance void [mscorlib]System.Reflection.AssemblyTitleAttribute::.ctor(string) = ( 01 00 06 63 73 65 78 74 73 00 00 ) // ...csexts..
.hash algorithm 0x00008004
.ver 1:0:0:0
}
.module csexts.dll
// MVID: {4A5AEFA4-802C-4531-BC39-BA849EC10EF9}
.imagebase 0x00400000
.file alignment 0x00000200
.stackreserve 0x00100000
.subsystem 0x0003 // WINDOWS_CUI
.corflags 0x00000001 // ILONLY
// Image base: 0x00350000
// =============== CLASS MEMBERS DECLARATION ===================
.class public abstract auto ansi sealed beforefieldinit CsExts.UnsafeNativeMethods
extends [mscorlib]System.Object
{
.custom instance void [mscorlib]System.Security.SuppressUnmanagedCodeSecurityAttribute::.ctor() = ( 01 00 00 00 )
.class auto ansi sealed nested public OutputControl
extends [mscorlib]System.Enum
{
.custom instance void [mscorlib]System.FlagsAttribute::.ctor() = ( 01 00 00 00 )
.field public specialname rtspecialname int32 value__
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl Ambient = int32(0xFFFFFFFF)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl AmbientDml = int32(0xFFFFFFFE)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl AmbientText = int32(0xFFFFFFFF)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl Dml = int32(0x00000020)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl Ignore = int32(0x00000003)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl LogOnly = int32(0x00000004)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl NotLogged = int32(0x00000008)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl Override = int32(0x00000010)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl SendMask = int32(0x00000007)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl ToAllClients = int32(0x00000001)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl ToAllOtherClients = int32(0x00000002)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl ToThisClient = int32(0x00000000)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputControl Default = int32(0x00000019)
} // end of class OutputControl
.class auto ansi sealed nested public ExecuteOptions
extends [mscorlib]System.Enum
{
.custom instance void [mscorlib]System.FlagsAttribute::.ctor() = ( 01 00 00 00 )
.field public specialname rtspecialname int32 value__
.field public static literal valuetype CsExts.UnsafeNativeMethods/ExecuteOptions Default = int32(0x00000000)
.field public static literal valuetype CsExts.UnsafeNativeMethods/ExecuteOptions Echo = int32(0x00000001)
.field public static literal valuetype CsExts.UnsafeNativeMethods/ExecuteOptions NoRepeat = int32(0x00000004)
.field public static literal valuetype CsExts.UnsafeNativeMethods/ExecuteOptions NotLogged = int32(0x00000002)
} // end of class ExecuteOptions
.class auto ansi sealed nested public OutputModes
extends [mscorlib]System.Enum
{
.custom instance void [mscorlib]System.FlagsAttribute::.ctor() = ( 01 00 00 00 )
.field public specialname rtspecialname int32 value__
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes BreakpointOutput = int32(0x20000000)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Debuggee = int32(0x00000080)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes DebuggeePrompt = int32(0x00000100)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Error = int32(0x00000002)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes EventOutput = int32(0x10000000)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes ExtensionWarning = int32(0x00000040)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes KdProtocolOutput = int32(0x80000000)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Normal = int32(0x00000001)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Prompt = int32(0x00000010)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes PromptRegisters = int32(0x00000020)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes RemotingOutput = int32(0x40000000)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Symbols = int32(0x00000200)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Verbose = int32(0x00000008)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Warning = int32(0x00000004)
.field public static literal valuetype CsExts.UnsafeNativeMethods/OutputModes Default = int32(0x00000019)
} // end of class OutputModes
.class explicit ansi sealed nested public beforefieldinit DEBUG_VALUE
extends [mscorlib]System.ValueType
{
.pack 0
.size 32
.field [0] public int32 I32
} // end of class DEBUG_VALUE
.class interface abstract auto ansi import nested public IDebugClient4
{
.custom instance void [mscorlib]System.Runtime.InteropServices.InterfaceTypeAttribute::.ctor(valuetype [mscorlib]System.Runtime.InteropServices.ComInterfaceType) = ( 01 00 01 00 00 00 00 00 )
.custom instance void [mscorlib]System.Security.SuppressUnmanagedCodeSecurityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.InteropServices.GuidAttribute::.ctor(string) = ( 01 00 24 63 61 38 33 63 33 64 65 2D 35 30 38 39 // ..$ca83c3de-5089
2D 34 63 66 38 2D 39 33 63 38 2D 64 38 39 32 33 // -4cf8-93c8-d8923
38 37 66 32 61 35 65 00 00 ) // 87f2a5e..
.method public hidebysig newslot abstract virtual
instance void AttachKernel() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::AttachKernel
.method public hidebysig newslot abstract virtual
instance void GetKernelConnectionOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetKernelConnectionOptions
.method public hidebysig newslot abstract virtual
instance void SetKernelConnectionOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetKernelConnectionOptions
.method public hidebysig newslot abstract virtual
instance void StartProcessServer() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::StartProcessServer
.method public hidebysig newslot abstract virtual
instance void ConnectProcessServer() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::ConnectProcessServer
.method public hidebysig newslot abstract virtual
instance void DisconnectProcessServer() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::DisconnectProcessServer
.method public hidebysig newslot abstract virtual
instance void GetRunningProcessSystemIds() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetRunningProcessSystemIds
.method public hidebysig newslot abstract virtual
instance void GetRunningProcessSystemIdByExecutableName() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetRunningProcessSystemIdByExecutableName
.method public hidebysig newslot abstract virtual
instance void GetRunningProcessDescription() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetRunningProcessDescription
.method public hidebysig newslot abstract virtual
instance void AttachProcess() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::AttachProcess
.method public hidebysig newslot abstract virtual
instance void CreateProcess() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::CreateProcess
.method public hidebysig newslot abstract virtual
instance void CreateProcessAndAttach() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::CreateProcessAndAttach
.method public hidebysig newslot abstract virtual
instance void GetProcessOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetProcessOptions
.method public hidebysig newslot abstract virtual
instance void AddProcessOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::AddProcessOptions
.method public hidebysig newslot abstract virtual
instance void RemoveProcessOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::RemoveProcessOptions
.method public hidebysig newslot abstract virtual
instance void SetProcessOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetProcessOptions
.method public hidebysig newslot abstract virtual
instance void OpenDumpFile() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::OpenDumpFile
.method public hidebysig newslot abstract virtual
instance void WriteDumpFile() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::WriteDumpFile
.method public hidebysig newslot abstract virtual
instance void ConnectSession() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::ConnectSession
.method public hidebysig newslot abstract virtual
instance void StartServer() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::StartServer
.method public hidebysig newslot abstract virtual
instance void OutputServers() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::OutputServers
.method public hidebysig newslot abstract virtual
instance void TerminateProcesses() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::TerminateProcesses
.method public hidebysig newslot abstract virtual
instance void DetachProcesses() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::DetachProcesses
.method public hidebysig newslot abstract virtual
instance void EndSession() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::EndSession
.method public hidebysig newslot abstract virtual
instance void GetExitCode() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetExitCode
.method public hidebysig newslot abstract virtual
instance void DispatchCallbacks() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::DispatchCallbacks
.method public hidebysig newslot abstract virtual
instance void ExitDispatch() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::ExitDispatch
.method public hidebysig newslot abstract virtual
instance void CreateClient() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::CreateClient
.method public hidebysig newslot abstract virtual
instance void GetInputCallbacks() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetInputCallbacks
.method public hidebysig newslot abstract virtual
instance void SetInputCallbacks() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetInputCallbacks
.method public hidebysig newslot abstract virtual
instance void GetOutputCallbacks([out] class CsExts.UnsafeNativeMethods/IDebugOutputCallbacks& callback) cil managed
{
} // end of method IDebugClient4::GetOutputCallbacks
.method public hidebysig newslot abstract virtual
instance void SetOutputCallbacks(class CsExts.UnsafeNativeMethods/IDebugOutputCallbacks callback) cil managed
{
} // end of method IDebugClient4::SetOutputCallbacks
.method public hidebysig newslot abstract virtual
instance void GetOutputMask() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetOutputMask
.method public hidebysig newslot abstract virtual
instance void SetOutputMask() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetOutputMask
.method public hidebysig newslot abstract virtual
instance void GetOtherOutputMask() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetOtherOutputMask
.method public hidebysig newslot abstract virtual
instance void SetOtherOutputMask() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetOtherOutputMask
.method public hidebysig newslot abstract virtual
instance void GetOutputWidth() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetOutputWidth
.method public hidebysig newslot abstract virtual
instance void SetOutputWidth() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetOutputWidth
.method public hidebysig newslot abstract virtual
instance void GetOutputLinePrefix() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetOutputLinePrefix
.method public hidebysig newslot abstract virtual
instance void SetOutputLinePrefix() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetOutputLinePrefix
.method public hidebysig newslot abstract virtual
instance void GetIdentity() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetIdentity
.method public hidebysig newslot abstract virtual
instance void OutputIdentity() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::OutputIdentity
.method public hidebysig newslot abstract virtual
instance void GetEventCallbacks() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetEventCallbacks
.method public hidebysig newslot abstract virtual
instance void SetEventCallbacks() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::SetEventCallbacks
.method public hidebysig newslot abstract virtual
instance void FlushCallbacks() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::FlushCallbacks
.method public hidebysig newslot abstract virtual
instance void WriteDumpFile2() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::WriteDumpFile2
.method public hidebysig newslot abstract virtual
instance void AddDumpInformationFile() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::AddDumpInformationFile
.method public hidebysig newslot abstract virtual
instance void EndProcessServer() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::EndProcessServer
.method public hidebysig newslot abstract virtual
instance void WaitForProcessServerEnd() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::WaitForProcessServerEnd
.method public hidebysig newslot abstract virtual
instance void IsKernelDebuggerEnabled() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::IsKernelDebuggerEnabled
.method public hidebysig newslot abstract virtual
instance void TerminateCurrentProcess() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::TerminateCurrentProcess
.method public hidebysig newslot abstract virtual
instance void DetachCurrentProcess() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::DetachCurrentProcess
.method public hidebysig newslot abstract virtual
instance void AbandonCurrentProcess() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::AbandonCurrentProcess
.method public hidebysig newslot abstract virtual
instance void GetRunningProcessSystemIdByExecutableNameWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetRunningProcessSystemIdByExecutableNameWide
.method public hidebysig newslot abstract virtual
instance void GetRunningProcessDescriptionWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetRunningProcessDescriptionWide
.method public hidebysig newslot abstract virtual
instance void CreateProcessWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::CreateProcessWide
.method public hidebysig newslot abstract virtual
instance void CreateProcessAndAttachWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::CreateProcessAndAttachWide
.method public hidebysig newslot abstract virtual
instance void OpenDumpFileWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::OpenDumpFileWide
.method public hidebysig newslot abstract virtual
instance void WriteDumpFileWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::WriteDumpFileWide
.method public hidebysig newslot abstract virtual
instance void AddDumpInformationFileWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::AddDumpInformationFileWide
.method public hidebysig newslot abstract virtual
instance void GetNumberDumpFiles() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetNumberDumpFiles
.method public hidebysig newslot abstract virtual
instance void GetDumpFile() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetDumpFile
.method public hidebysig newslot abstract virtual
instance void GetDumpFileWide() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugClient4::GetDumpFileWide
} // end of class IDebugClient4
.class interface abstract auto ansi import nested public IDebugControl
{
.custom instance void [mscorlib]System.Security.SuppressUnmanagedCodeSecurityAttribute::.ctor() = ( 01 00 00 00 )
.custom instance void [mscorlib]System.Runtime.InteropServices.InterfaceTypeAttribute::.ctor(valuetype [mscorlib]System.Runtime.InteropServices.ComInterfaceType) = ( 01 00 01 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.InteropServices.GuidAttribute::.ctor(string) = ( 01 00 24 35 31 38 32 65 36 36 38 2D 31 30 35 65 // ..$5182e668-105e
2D 34 31 36 65 2D 61 64 39 32 2D 32 34 65 66 38 // -416e-ad92-24ef8
30 30 34 32 34 62 61 00 00 ) // 00424ba..
.method public hidebysig newslot abstract virtual
instance int32 GetInterrupt() cil managed preservesig
{
} // end of method IDebugControl::GetInterrupt
.method public hidebysig newslot abstract virtual
instance void SetInterrupt() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetInterrupt
.method public hidebysig newslot abstract virtual
instance void GetInterruptTimeout() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetInterruptTimeout
.method public hidebysig newslot abstract virtual
instance void SetInterruptTimeout() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetInterruptTimeout
.method public hidebysig newslot abstract virtual
instance void GetLogFile() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetLogFile
.method public hidebysig newslot abstract virtual
instance void OpenLogFile() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OpenLogFile
.method public hidebysig newslot abstract virtual
instance void CloseLogFile() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::CloseLogFile
.method public hidebysig newslot abstract virtual
instance void GetLogMask() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetLogMask
.method public hidebysig newslot abstract virtual
instance void SetLogMask() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetLogMask
.method public hidebysig newslot abstract virtual
instance void Input() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::Input
.method public hidebysig newslot abstract virtual
instance void ReturnInput() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::ReturnInput
.method public hidebysig newslot abstract virtual
instance void Output(valuetype CsExts.UnsafeNativeMethods/OutputControl ctls,
string marshal( lpstr) text) cil managed
{
} // end of method IDebugControl::Output
.method public hidebysig newslot abstract virtual
instance void OutputVaList() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputVaList
.method public hidebysig newslot abstract virtual
instance void ControlledOutput() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::ControlledOutput
.method public hidebysig newslot abstract virtual
instance void ControlledOutputVaList() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::ControlledOutputVaList
.method public hidebysig newslot abstract virtual
instance void OutputPrompt() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputPrompt
.method public hidebysig newslot abstract virtual
instance void OutputPromptVaList() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputPromptVaList
.method public hidebysig newslot abstract virtual
instance void GetPromptText() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetPromptText
.method public hidebysig newslot abstract virtual
instance void OutputCurrentState() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputCurrentState
.method public hidebysig newslot abstract virtual
instance void OutputVersionInformation() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputVersionInformation
.method public hidebysig newslot abstract virtual
instance void GetNotifyEventHandle() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetNotifyEventHandle
.method public hidebysig newslot abstract virtual
instance void SetNotifyEventHandle() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetNotifyEventHandle
.method public hidebysig newslot abstract virtual
instance void Assemble() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::Assemble
.method public hidebysig newslot abstract virtual
instance void Disassemble() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::Disassemble
.method public hidebysig newslot abstract virtual
instance void GetDisassembleEffectiveOffset() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetDisassembleEffectiveOffset
.method public hidebysig newslot abstract virtual
instance void OutputDisassembly() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputDisassembly
.method public hidebysig newslot abstract virtual
instance void OutputDisassemblyLines() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputDisassemblyLines
.method public hidebysig newslot abstract virtual
instance void GetNearInstruction() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetNearInstruction
.method public hidebysig newslot abstract virtual
instance void GetStackTrace() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetStackTrace
.method public hidebysig newslot abstract virtual
instance void GetReturnOffset() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetReturnOffset
.method public hidebysig newslot abstract virtual
instance void OutputStackTrace() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::OutputStackTrace
.method public hidebysig newslot abstract virtual
instance void GetDebuggeeType() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetDebuggeeType
.method public hidebysig newslot abstract virtual
instance void GetActualProcessorType() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetActualProcessorType
.method public hidebysig newslot abstract virtual
instance void GetExecutingProcessorType() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetExecutingProcessorType
.method public hidebysig newslot abstract virtual
instance void GetNumberPossibleExecutingProcessorTypes() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetNumberPossibleExecutingProcessorTypes
.method public hidebysig newslot abstract virtual
instance void GetPossibleExecutingProcessorTypes() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetPossibleExecutingProcessorTypes
.method public hidebysig newslot abstract virtual
instance void GetNumberProcessors() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetNumberProcessors
.method public hidebysig newslot abstract virtual
instance void GetSystemVersion() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetSystemVersion
.method public hidebysig newslot abstract virtual
instance void GetPageSize() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetPageSize
.method public hidebysig newslot abstract virtual
instance void IsPointer64Bit() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::IsPointer64Bit
.method public hidebysig newslot abstract virtual
instance void ReadBugCheckData() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::ReadBugCheckData
.method public hidebysig newslot abstract virtual
instance void GetNumberSupportedProcessorTypes() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetNumberSupportedProcessorTypes
.method public hidebysig newslot abstract virtual
instance void GetSupportedProcessorTypes() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetSupportedProcessorTypes
.method public hidebysig newslot abstract virtual
instance void GetProcessorTypeNames() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetProcessorTypeNames
.method public hidebysig newslot abstract virtual
instance void GetEffectiveProcessorType() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetEffectiveProcessorType
.method public hidebysig newslot abstract virtual
instance void SetEffectiveProcessorType() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetEffectiveProcessorType
.method public hidebysig newslot abstract virtual
instance void GetExecutionStatus() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetExecutionStatus
.method public hidebysig newslot abstract virtual
instance void SetExecutionStatus() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetExecutionStatus
.method public hidebysig newslot abstract virtual
instance void GetCodeLevel() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetCodeLevel
.method public hidebysig newslot abstract virtual
instance void SetCodeLevel() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetCodeLevel
.method public hidebysig newslot abstract virtual
instance void GetEngineOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetEngineOptions
.method public hidebysig newslot abstract virtual
instance void AddEngineOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::AddEngineOptions
.method public hidebysig newslot abstract virtual
instance void RemoveEngineOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::RemoveEngineOptions
.method public hidebysig newslot abstract virtual
instance void SetEngineOptions() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetEngineOptions
.method public hidebysig newslot abstract virtual
instance void GetSystemErrorControl() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetSystemErrorControl
.method public hidebysig newslot abstract virtual
instance void SetSystemErrorControl() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetSystemErrorControl
.method public hidebysig newslot abstract virtual
instance void GetTextMacro() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetTextMacro
.method public hidebysig newslot abstract virtual
instance void SetTextMacro() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetTextMacro
.method public hidebysig newslot abstract virtual
instance void GetRadix() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::GetRadix
.method public hidebysig newslot abstract virtual
instance void SetRadix() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::SetRadix
.method public hidebysig newslot abstract virtual
instance void Evaluate(string marshal( lpstr) expression,
int32 desiredType,
[out] valuetype CsExts.UnsafeNativeMethods/DEBUG_VALUE& 'value',
[out] uint32& remainder) cil managed
{
} // end of method IDebugControl::Evaluate
.method public hidebysig newslot abstract virtual
instance void CoerceValue() cil managed
{
.custom instance void [mscorlib]System.ObsoleteAttribute::.ctor(string,
bool) = ( 01 00 08 6E 6F 74 20 75 73 65 64 01 00 00 ) // ...not used...
} // end of method IDebugControl::CoerceValue