-
Notifications
You must be signed in to change notification settings - Fork 2
/
Bitcoin.Core.xml
3311 lines (3311 loc) · 157 KB
/
Bitcoin.Core.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Confuser.Core</name>
</assembly>
<members>
<member name="T:Confuser.Core.Annotations">
<summary>
Provides methods to annotate objects.
</summary>
<remarks>
The annotations are stored using <see cref="T:System.WeakReference"/>
</remarks>
</member>
<member name="M:Confuser.Core.Annotations.Get``1(System.Object,System.Object,``0)">
<summary>
Retrieves the annotation on the specified object associated with the specified key.
</summary>
<typeparam name="TValue">The type of the value.</typeparam>
<param name="obj">The object.</param>
<param name="key">The key of annotation.</param>
<param name="defValue">The default value if the specified annotation does not exists on the object.</param>
<returns>The value of annotation, or default value if the annotation does not exist.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="obj"/> or <paramref name="key"/> is <c>null</c>.
</exception>
</member>
<member name="M:Confuser.Core.Annotations.GetLazy``1(System.Object,System.Object,System.Func{System.Object,``0})">
<summary>
Retrieves the annotation on the specified object associated with the specified key.
</summary>
<typeparam name="TValue">The type of the value.</typeparam>
<param name="obj">The object.</param>
<param name="key">The key of annotation.</param>
<param name="defValueFactory">The default value factory function.</param>
<returns>The value of annotation, or default value if the annotation does not exist.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="obj"/> or <paramref name="key"/> is <c>null</c>.
</exception>
</member>
<member name="M:Confuser.Core.Annotations.GetOrCreate``1(System.Object,System.Object,System.Func{System.Object,``0})">
<summary>
Retrieves or create the annotation on the specified object associated with the specified key.
</summary>
<typeparam name="TValue">The type of the value.</typeparam>
<param name="obj">The object.</param>
<param name="key">The key of annotation.</param>
<param name="factory">The factory function to create the annotation value when the annotation does not exist.</param>
<returns>The value of annotation, or the newly created value.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="obj"/> or <paramref name="key"/> is <c>null</c>.
</exception>
</member>
<member name="M:Confuser.Core.Annotations.Set``1(System.Object,System.Object,``0)">
<summary>
Sets an annotation on the specified object.
</summary>
<typeparam name="TValue">The type of the value.</typeparam>
<param name="obj">The object.</param>
<param name="key">The key of annotation.</param>
<param name="value">The value of annotation.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="obj"/> or <paramref name="key"/> is <c>null</c>.
</exception>
</member>
<member name="M:Confuser.Core.Annotations.Trim">
<summary>
Trims the annotations of unreachable objects from this instance.
</summary>
</member>
<member name="T:Confuser.Core.Annotations.WeakReferenceComparer">
<summary>
Equality comparer of weak references.
</summary>
</member>
<member name="F:Confuser.Core.Annotations.WeakReferenceComparer.Instance">
<summary>
The singleton instance of this comparer.
</summary>
</member>
<member name="M:Confuser.Core.Annotations.WeakReferenceComparer.#ctor">
<summary>
Prevents a default instance of the <see cref="T:Confuser.Core.Annotations.WeakReferenceComparer"/> class from being created.
</summary>
</member>
<member name="M:Confuser.Core.Annotations.WeakReferenceComparer.Equals(System.Object,System.Object)">
<inheritdoc />
</member>
<member name="M:Confuser.Core.Annotations.WeakReferenceComparer.GetHashCode(System.Object)">
<inheritdoc />
</member>
<member name="T:Confuser.Core.Annotations.WeakReferenceKey">
<summary>
Represent a key using <see cref="T:System.WeakReference"/>.
</summary>
</member>
<member name="M:Confuser.Core.Annotations.WeakReferenceKey.#ctor(System.Object)">
<inheritdoc />
</member>
<member name="P:Confuser.Core.Annotations.WeakReferenceKey.HashCode">
<summary>
Gets the hash code of the target object.
</summary>
<value>The hash code.</value>
</member>
<member name="T:Confuser.Core.API.IAPIStore">
<summary>
Provides storage for API interfaces
</summary>
</member>
<member name="M:Confuser.Core.API.IAPIStore.AddStore(Confuser.Core.API.IDataStore)">
<summary>
Adds the specified data store into this store.
</summary>
<param name="dataStore">The data store.</param>
</member>
<member name="M:Confuser.Core.API.IAPIStore.GetStore(dnlib.DotNet.MethodDef)">
<summary>
Finds a suitable data store for the specified method, with the
specified number of keys.
</summary>
<param name="method">The method.</param>
<returns>The suitable data store if found, or <c>null</c> if not found.</returns>
<remarks>
It should never returns null --- ConfuserEx has internal data store.
</remarks>
</member>
<member name="M:Confuser.Core.API.IAPIStore.AddPredicate(Confuser.Core.API.IOpaquePredicateDescriptor)">
<summary>
Adds the specified opaque predicate into this store.
</summary>
<param name="predicate">The opaque predicate.</param>
</member>
<member name="M:Confuser.Core.API.IAPIStore.GetPredicate(dnlib.DotNet.MethodDef,System.Nullable{Confuser.Core.API.OpaquePredicateType},System.Int32[])">
<summary>
Finds a suitable opaque predicate for the specified method, with the
specified properties.
</summary>
<param name="method">The method.</param>
<param name="type">The required type of predicate, or <c>null</c> if it does not matter.</param>
<param name="argCount">The required numbers of arguments, or <c>null</c> if it does not matter.</param>
<returns>The suitable opaque predicate if found, or <c>null</c> if not found.</returns>
</member>
<member name="M:Confuser.Core.API.APIStore.#ctor(Confuser.Core.ConfuserContext)">
<summary>
Initializes a new instance of the <see cref="T:Confuser.Core.API.APIStore"/> class.
</summary>
<param name="context">The working context.</param>
</member>
<member name="M:Confuser.Core.API.APIStore.AddStore(Confuser.Core.API.IDataStore)">
<inheritdoc />
</member>
<member name="M:Confuser.Core.API.APIStore.AddPredicate(Confuser.Core.API.IOpaquePredicateDescriptor)">
<inheritdoc />
</member>
<member name="M:Confuser.Core.API.APIStore.GetStore(dnlib.DotNet.MethodDef)">
<inheritdoc />
</member>
<member name="M:Confuser.Core.API.APIStore.GetPredicate(dnlib.DotNet.MethodDef,System.Nullable{Confuser.Core.API.OpaquePredicateType},System.Int32[])">
<inheritdoc />
</member>
<member name="T:Confuser.Core.API.IDataStore">
<summary>
A data store.
</summary>
</member>
<member name="M:Confuser.Core.API.IDataStore.IsUsable(dnlib.DotNet.MethodDef)">
<summary>
Determines whether this data store can be used in the specified method.
</summary>
<param name="method">The method.</param>
<value><c>true</c> if this data store can be used in the specified method; otherwise, <c>false</c>.</value>
</member>
<member name="M:Confuser.Core.API.IDataStore.CreateAccessor(dnlib.DotNet.MethodDef,System.UInt32[],System.Byte[])">
<summary>
Creates an accessor of this data store for the specified method.
</summary>
<param name="method">The method.</param>
<param name="keys">The keys.</param>
<param name="data">The data to store.</param>
<returns>A newly accessor of this data store.</returns>
</member>
<member name="P:Confuser.Core.API.IDataStore.Priority">
<summary>
Gets the priority of this data store; higher priority means it
would be tried earlier.
</summary>
<value>The priority of this data store.</value>
</member>
<member name="P:Confuser.Core.API.IDataStore.KeyCount">
<summary>
Gets the number of keys this predicate has.
</summary>
<remarks>
Keys are used by the data store to encrypt data/whatever purpose.
</remarks>
<value>The number of keys this data store has.</value>
</member>
<member name="T:Confuser.Core.API.IDataStoreAccessor">
<summary>
An accessor of data store.
</summary>
</member>
<member name="M:Confuser.Core.API.IDataStoreAccessor.Emit">
<summary>
Emits the runtime instruction sequence for this accessor.
</summary>
<returns>An instruction sequence that returns the stored data.</returns>
</member>
<member name="T:Confuser.Core.API.IOpaquePredicateDescriptor">
<summary>
The descriptor of a type of opaque predicate.
</summary>
</member>
<member name="M:Confuser.Core.API.IOpaquePredicateDescriptor.IsUsable(dnlib.DotNet.MethodDef)">
<summary>
Determines whether this predicate can be used with the specified method.
</summary>
<param name="method">The method.</param>
<value><c>true</c> if this predicate can be used with the specified method; otherwise, <c>false</c>.</value>
</member>
<member name="M:Confuser.Core.API.IOpaquePredicateDescriptor.CreatePredicate(dnlib.DotNet.MethodDef)">
<summary>
Creates a new opaque predicate for the specified method.
</summary>
<param name="method">The method.</param>
<returns>A newly create opaque predicate.</returns>
</member>
<member name="P:Confuser.Core.API.IOpaquePredicateDescriptor.Type">
<summary>
Gets the type of the opaque predicate.
</summary>
<value>The type of the opaque predicate.</value>
</member>
<member name="P:Confuser.Core.API.IOpaquePredicateDescriptor.ArgumentCount">
<summary>
Gets the number of arguments this predicate has.
</summary>
<remarks>
When <see cref="P:Confuser.Core.API.IOpaquePredicateDescriptor.Type"/> is <see cref="F:Confuser.Core.API.OpaquePredicateType.Invariant"/>,
there can be 0 or more arguments.
When <see cref="P:Confuser.Core.API.IOpaquePredicateDescriptor.Type"/> is <see cref="F:Confuser.Core.API.OpaquePredicateType.Function"/>,
there must be more than 0 arguments.
</remarks>
<value>The number of arguments this predicate has.</value>
</member>
<member name="T:Confuser.Core.API.IOpaquePredicate">
<summary>
An instance of opaque predicate.
</summary>
</member>
<member name="M:Confuser.Core.API.IOpaquePredicate.Emit(System.Func{dnlib.DotNet.Emit.Instruction[]})">
<summary>
Emits the runtime instruction sequence for this predicate.
</summary>
<param name="loadArg">
A function that returns an instruction sequence that returns the input value,
or <c>null</c> if <see cref="P:Confuser.Core.API.IOpaquePredicateDescriptor.ArgumentCount"/> is 0.
</param>
<returns>An instruction sequence that returns the value of this predicate.</returns>
</member>
<member name="M:Confuser.Core.API.IOpaquePredicate.GetValue(System.UInt32[])">
<summary>
Computes the value of this predicate with the specified argument.
</summary>
<param name="arg">The argument to this predicate.</param>
<returns>The return value of this predicate.</returns>
</member>
<member name="T:Confuser.Core.API.OpaquePredicateType">
<summary>
The type of opaque predicate.
</summary>
</member>
<member name="F:Confuser.Core.API.OpaquePredicateType.Function">
<summary>
A function, in a mathematics sense, with one input and one output.
</summary>
</member>
<member name="F:Confuser.Core.API.OpaquePredicateType.Invariant">
<summary>
A constant function, always returning the same value.
</summary>
</member>
<member name="T:Confuser.Core.ModuleSorter">
<summary>
Sort modules according dependencies.
</summary>
</member>
<member name="T:Confuser.Core.Helpers.ControlFlowGraph">
<summary>
A Control Flow Graph (CFG) of a method
</summary>
</member>
<member name="M:Confuser.Core.Helpers.ControlFlowGraph.GetContainingBlock(System.Int32)">
<summary>
Gets the block containing the specified instruction.
</summary>
<param name="instrIndex">The index of instruction.</param>
<returns>The block containing the instruction.</returns>
</member>
<member name="M:Confuser.Core.Helpers.ControlFlowGraph.IndexOf(dnlib.DotNet.Emit.Instruction)">
<summary>
Gets the index of the specified instruction.
</summary>
<param name="instr">The instruction.</param>
<returns>The index of instruction.</returns>
</member>
<member name="M:Confuser.Core.Helpers.ControlFlowGraph.Construct(dnlib.DotNet.Emit.CilBody)">
<summary>
Constructs a CFG from the specified method body.
</summary>
<param name="body">The method body.</param>
<returns>The CFG of the given method body.</returns>
</member>
<member name="P:Confuser.Core.Helpers.ControlFlowGraph.Count">
<summary>
Gets the number of blocks in this CFG.
</summary>
<value>The number of blocks.</value>
</member>
<member name="P:Confuser.Core.Helpers.ControlFlowGraph.Item(System.Int32)">
<summary>
Gets the <see cref="T:Confuser.Core.Helpers.ControlFlowBlock"/> of the specified id.
</summary>
<param name="id">The id.</param>
<returns>The block with specified id.</returns>
</member>
<member name="P:Confuser.Core.Helpers.ControlFlowGraph.Body">
<summary>
Gets the corresponding method body.
</summary>
<value>The method body.</value>
</member>
<member name="T:Confuser.Core.Helpers.ControlFlowBlockType">
<summary>
The type of Control Flow Block
</summary>
</member>
<member name="F:Confuser.Core.Helpers.ControlFlowBlockType.Normal">
<summary>
The block is a normal block
</summary>
</member>
<member name="F:Confuser.Core.Helpers.ControlFlowBlockType.Entry">
<summary>
There are unknown edges to this block. Usually used at exception handlers / method entry.
</summary>
</member>
<member name="F:Confuser.Core.Helpers.ControlFlowBlockType.Exit">
<summary>
There are unknown edges from this block. Usually used at filter blocks / throw / method exit.
</summary>
</member>
<member name="T:Confuser.Core.Helpers.ControlFlowBlock">
<summary>
A block in Control Flow Graph (CFG).
</summary>
</member>
<member name="F:Confuser.Core.Helpers.ControlFlowBlock.Footer">
<summary>
The footer instruction
</summary>
</member>
<member name="F:Confuser.Core.Helpers.ControlFlowBlock.Header">
<summary>
The header instruction
</summary>
</member>
<member name="F:Confuser.Core.Helpers.ControlFlowBlock.Id">
<summary>
The identifier of this block
</summary>
</member>
<member name="F:Confuser.Core.Helpers.ControlFlowBlock.Type">
<summary>
The type of this block
</summary>
</member>
<member name="M:Confuser.Core.Helpers.ControlFlowBlock.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents this block.
</summary>
<returns>A <see cref="T:System.String"/> that represents this block.</returns>
</member>
<member name="P:Confuser.Core.Helpers.ControlFlowBlock.Sources">
<summary>
Gets the source blocks of this control flow block.
</summary>
<value>The source blocks.</value>
</member>
<member name="P:Confuser.Core.Helpers.ControlFlowBlock.Targets">
<summary>
Gets the target blocks of this control flow block.
</summary>
<value>The target blocks.</value>
</member>
<member name="T:Confuser.Core.Helpers.BlockKeyType">
<summary>
The type of block in the key sequence
</summary>
</member>
<member name="F:Confuser.Core.Helpers.BlockKeyType.Explicit">
<summary>
The state key should be explicitly set in the block
</summary>
</member>
<member name="F:Confuser.Core.Helpers.BlockKeyType.Incremental">
<summary>
The state key could be assumed to be same as <see cref="F:Confuser.Core.Helpers.BlockKey.EntryState"/> at the beginning of block.
</summary>
</member>
<member name="T:Confuser.Core.Helpers.BlockKey">
<summary>
The information of the block in the key sequence
</summary>
</member>
<member name="F:Confuser.Core.Helpers.BlockKey.EntryState">
<summary>
The state key at the beginning of the block
</summary>
</member>
<member name="F:Confuser.Core.Helpers.BlockKey.ExitState">
<summary>
The state key at the end of the block
</summary>
</member>
<member name="F:Confuser.Core.Helpers.BlockKey.Type">
<summary>
The type of block
</summary>
</member>
<member name="T:Confuser.Core.Helpers.KeySequence">
<summary>
Computes a key sequence that is valid according to the execution of the CFG.
</summary>
<remarks>
The caller can utilize the information provided by this classes to instruments state machines.
For example:
<code>
int state = 4;
for (int i = 0 ; i < 10; i++) {
state = 6;
if (i % 2 == 0) {
state = 3;
else {
// The state varaible is guaranteed to be 6 in here.
}
}
</code>
</remarks>
</member>
<member name="M:Confuser.Core.Helpers.KeySequence.ComputeKeys(Confuser.Core.Helpers.ControlFlowGraph,Confuser.Core.Services.RandomGenerator)">
<summary>
Computes a key sequence of the given CFG.
</summary>
<param name="graph">The CFG.</param>
<param name="random">The random source, or <c>null</c> if key id is needed.</param>
<returns>The generated key sequence of the CFG.</returns>
</member>
<member name="M:SevenZip.ICoder.Code(System.IO.Stream,System.IO.Stream,System.Int64,System.Int64,SevenZip.ICodeProgress)">
<summary>
Codes streams.
</summary>
<param name="inStream">
input Stream.
</param>
<param name="outStream">
output Stream.
</param>
<param name="inSize">
input Size. -1 if unknown.
</param>
<param name="outSize">
output Size. -1 if unknown.
</param>
<param name="progress">
callback progress reference.
</param>
<exception cref="T:SevenZip.DataErrorException">
if input stream is not valid
</exception>
</member>
<member name="T:SevenZip.DataErrorException">
<summary>
The exception that is thrown when an error in input stream occurs during decoding.
</summary>
</member>
<member name="T:SevenZip.InvalidParamException">
<summary>
The exception that is thrown when the value of an argument is outside the allowable range.
</summary>
</member>
<member name="M:SevenZip.ICodeProgress.SetProgress(System.Int64,System.Int64)">
<summary>
Callback progress.
</summary>
<param name="inSize">
input size. -1 if unknown.
</param>
<param name="outSize">
output size. -1 if unknown.
</param>
</member>
<member name="T:SevenZip.CoderPropID">
<summary>
Provides the fields that represent properties idenitifiers for compressing.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.DefaultProp">
<summary>
Specifies default property.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.DictionarySize">
<summary>
Specifies size of dictionary.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.UsedMemorySize">
<summary>
Specifies size of memory for PPM*.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.Order">
<summary>
Specifies order for PPM methods.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.BlockSize">
<summary>
Specifies Block Size.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.PosStateBits">
<summary>
Specifies number of postion state bits for LZMA (0 <= x <= 4).
</summary>
</member>
<member name="F:SevenZip.CoderPropID.LitContextBits">
<summary>
Specifies number of literal context bits for LZMA (0 <= x <= 8).
</summary>
</member>
<member name="F:SevenZip.CoderPropID.LitPosBits">
<summary>
Specifies number of literal position bits for LZMA (0 <= x <= 4).
</summary>
</member>
<member name="F:SevenZip.CoderPropID.NumFastBytes">
<summary>
Specifies number of fast bytes for LZ*.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.MatchFinder">
<summary>
Specifies match finder. LZMA: "BT2", "BT4" or "BT4B".
</summary>
</member>
<member name="F:SevenZip.CoderPropID.MatchFinderCycles">
<summary>
Specifies the number of match finder cyckes.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.NumPasses">
<summary>
Specifies number of passes.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.Algorithm">
<summary>
Specifies number of algorithm.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.NumThreads">
<summary>
Specifies the number of threads.
</summary>
</member>
<member name="F:SevenZip.CoderPropID.EndMarker">
<summary>
Specifies mode with end marker.
</summary>
</member>
<member name="T:Confuser.Core.ConfuserEngine">
<summary>
The processing engine of ConfuserEx.
</summary>
</member>
<member name="F:Confuser.Core.ConfuserEngine.Version">
<summary>
The version of ConfuserEx.
</summary>
</member>
<member name="M:Confuser.Core.ConfuserEngine.Run(Confuser.Core.ConfuserParameters,System.Nullable{System.Threading.CancellationToken})">
<summary>
Runs the engine with the specified parameters.
</summary>
<param name="parameters">The parameters.</param>
<param name="token">The token used for cancellation.</param>
<returns>Task to run the engine.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="parameters"/>.Project is <c>null</c>.
</exception>
</member>
<member name="M:Confuser.Core.ConfuserEngine.RunInternal(Confuser.Core.ConfuserParameters,System.Threading.CancellationToken)">
<summary>
Runs the engine.
</summary>
<param name="parameters">The parameters.</param>
<param name="token">The cancellation token.</param>
</member>
<member name="M:Confuser.Core.ConfuserEngine.RunPipeline(Confuser.Core.ProtectionPipeline,Confuser.Core.ConfuserContext)">
<summary>
Runs the protection pipeline.
</summary>
<param name="pipeline">The protection pipeline.</param>
<param name="context">The context.</param>
</member>
<member name="M:Confuser.Core.ConfuserEngine.PrintInfo(Confuser.Core.ConfuserContext)">
<summary>
Prints the copyright stuff and environment information.
</summary>
<param name="context">The working context.</param>
</member>
<member name="M:Confuser.Core.ConfuserEngine.PrintEnvironmentInfo(Confuser.Core.ConfuserContext)">
<summary>
Prints the environment information when error occurred.
</summary>
<param name="context">The working context.</param>
</member>
<member name="T:Confuser.Core.ConfuserException">
<summary>
The exception that is thrown when a handled error occurred during the protection process.
</summary>
</member>
<member name="M:Confuser.Core.ConfuserException.#ctor(System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Confuser.Core.ConfuserException"/> class.
</summary>
<param name="innerException">The inner exception, or null if no exception is associated with the error.</param>
</member>
<member name="T:Confuser.Core.ConfuserParameters">
<summary>
Parameters that passed to <see cref="T:Confuser.Core.ConfuserEngine"/>.
</summary>
</member>
<member name="M:Confuser.Core.ConfuserParameters.GetLogger">
<summary>
Gets the actual non-null logger.
</summary>
<returns>The logger.</returns>
</member>
<member name="M:Confuser.Core.ConfuserParameters.GetPluginDiscovery">
<summary>
Gets the actual non-null plugin discovery service.
</summary>
<returns>The plugin discovery service.</returns>
</member>
<member name="M:Confuser.Core.ConfuserParameters.GetMarker">
<summary>
Gets the actual non-null marker.
</summary>
<returns>The marker.</returns>
</member>
<member name="P:Confuser.Core.ConfuserParameters.Project">
<summary>
Gets or sets the project that would be processed.
</summary>
<value>The Confuser project.</value>
</member>
<member name="P:Confuser.Core.ConfuserParameters.Logger">
<summary>
Gets or sets the logger that used to log the protection process.
</summary>
<value>The logger, or <c>null</c> if logging is not needed.</value>
</member>
<member name="P:Confuser.Core.ConfuserParameters.PluginDiscovery">
<summary>
Gets or sets the plugin discovery service.
</summary>
<value>The plugin discovery service, or <c>null</c> if default discovery is used.</value>
</member>
<member name="P:Confuser.Core.ConfuserParameters.Marker">
<summary>
Gets or sets the marker.
</summary>
<value>The marker, or <c>null</c> if default marker is used.</value>
</member>
<member name="T:Confuser.Core.CoreComponent">
<summary>
Core component of Confuser.
</summary>
</member>
<member name="T:Confuser.Core.ConfuserComponent">
<summary>
Represent a component in Confuser
</summary>
</member>
<member name="M:Confuser.Core.ConfuserComponent.Initialize(Confuser.Core.ConfuserContext)">
<summary>
Initializes the component.
</summary>
<param name="context">The working context.</param>
</member>
<member name="M:Confuser.Core.ConfuserComponent.PopulatePipeline(Confuser.Core.ProtectionPipeline)">
<summary>
Inserts protection stages into processing pipeline.
</summary>
<param name="pipeline">The processing pipeline.</param>
</member>
<member name="P:Confuser.Core.ConfuserComponent.Name">
<summary>
Gets the name of component.
</summary>
<value>The name of component.</value>
</member>
<member name="P:Confuser.Core.ConfuserComponent.Description">
<summary>
Gets the description of component.
</summary>
<value>The description of component.</value>
</member>
<member name="P:Confuser.Core.ConfuserComponent.Id">
<summary>
Gets the identifier of component used by users.
</summary>
<value>The identifier of component.</value>
</member>
<member name="P:Confuser.Core.ConfuserComponent.FullId">
<summary>
Gets the full identifier of component used in Confuser.
</summary>
<value>The full identifier of component.</value>
</member>
<member name="F:Confuser.Core.CoreComponent._RandomServiceId">
<summary>
The service ID of RNG
</summary>
</member>
<member name="F:Confuser.Core.CoreComponent._MarkerServiceId">
<summary>
The service ID of Marker
</summary>
</member>
<member name="F:Confuser.Core.CoreComponent._TraceServiceId">
<summary>
The service ID of Trace
</summary>
</member>
<member name="F:Confuser.Core.CoreComponent._RuntimeServiceId">
<summary>
The service ID of Runtime
</summary>
</member>
<member name="F:Confuser.Core.CoreComponent._CompressionServiceId">
<summary>
The service ID of Compression
</summary>
</member>
<member name="F:Confuser.Core.CoreComponent._APIStoreId">
<summary>
The service ID of API Store
</summary>
</member>
<member name="M:Confuser.Core.CoreComponent.#ctor(Confuser.Core.ConfuserParameters,Confuser.Core.Marker)">
<summary>
Initializes a new instance of the <see cref="T:Confuser.Core.CoreComponent"/> class.
</summary>
<param name="parameters">The parameters.</param>
<param name="marker">The marker.</param>
</member>
<member name="M:Confuser.Core.CoreComponent.Initialize(Confuser.Core.ConfuserContext)">
<inheritdoc />
</member>
<member name="M:Confuser.Core.CoreComponent.PopulatePipeline(Confuser.Core.ProtectionPipeline)">
<inheritdoc />
</member>
<member name="P:Confuser.Core.CoreComponent.Name">
<inheritdoc />
</member>
<member name="P:Confuser.Core.CoreComponent.Description">
<inheritdoc />
</member>
<member name="P:Confuser.Core.CoreComponent.Id">
<inheritdoc />
</member>
<member name="P:Confuser.Core.CoreComponent.FullId">
<inheritdoc />
</member>
<member name="T:Confuser.Core.DependencyResolver">
<summary>
Resolves dependency between protections.
</summary>
</member>
<member name="M:Confuser.Core.DependencyResolver.#ctor(System.Collections.Generic.IEnumerable{Confuser.Core.Protection})">
<summary>
Initializes a new instance of the <see cref="T:Confuser.Core.DependencyResolver"/> class.
</summary>
<param name="protections">The protections for resolution.</param>
</member>
<member name="M:Confuser.Core.DependencyResolver.SortDependency">
<summary>
Sort the protection according to their dependency.
</summary>
<returns>Sorted protections with respect to dependencies.</returns>
<exception cref="T:CircularDependencyException">
The protections contain circular dependencies.
</exception>
</member>
<member name="M:Confuser.Core.DependencyResolver.SortGraph(System.Collections.Generic.IEnumerable{Confuser.Core.Protection},System.Collections.Generic.IList{Confuser.Core.DependencyResolver.DependencyGraphEdge})">
<summary>
Topologically sort the dependency graph.
</summary>
<param name="roots">The root protections.</param>
<param name="edges">The dependency graph edges.</param>
<returns>Topological sorted protections.</returns>
</member>
<member name="T:Confuser.Core.DependencyResolver.DependencyGraphEdge">
<summary>
An edge of dependency graph.
</summary>
</member>
<member name="M:Confuser.Core.DependencyResolver.DependencyGraphEdge.#ctor(Confuser.Core.Protection,Confuser.Core.Protection)">
<summary>
Initializes a new instance of the <see cref="T:Confuser.Core.DependencyResolver.DependencyGraphEdge"/> class.
</summary>
<param name="from">The source protection node.</param>
<param name="to">The destination protection node.</param>
</member>
<member name="P:Confuser.Core.DependencyResolver.DependencyGraphEdge.From">
<summary>
The source protection node.
</summary>
</member>
<member name="P:Confuser.Core.DependencyResolver.DependencyGraphEdge.To">
<summary>
The destination protection node.
</summary>
</member>
<member name="T:Confuser.Core.CircularDependencyException">
<summary>
The exception that is thrown when there exists circular dependency between protections.
</summary>
</member>
<member name="M:Confuser.Core.CircularDependencyException.#ctor(Confuser.Core.Protection,Confuser.Core.Protection)">
<summary>
Initializes a new instance of the <see cref="T:Confuser.Core.CircularDependencyException"/> class.
</summary>
<param name="a">The first protection.</param>
<param name="b">The second protection.</param>
</member>
<member name="P:Confuser.Core.CircularDependencyException.ProtectionA">
<summary>
First protection that involved in circular dependency.
</summary>
</member>
<member name="P:Confuser.Core.CircularDependencyException.ProtectionB">
<summary>
Second protection that involved in circular dependency.
</summary>
</member>
<member name="T:Confuser.Core.DnlibUtils">
<summary>
Provides a set of utility methods about dnlib
</summary>
</member>
<member name="M:Confuser.Core.DnlibUtils.FindDefinitions(dnlib.DotNet.ModuleDef)">
<summary>
Finds all definitions of interest in a module.
</summary>
<param name="module">The module.</param>
<returns>A collection of all required definitions</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.FindDefinitions(dnlib.DotNet.TypeDef)">
<summary>
Finds all definitions of interest in a type.
</summary>
<param name="typeDef">The type.</param>
<returns>A collection of all required definitions</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsVisibleOutside(dnlib.DotNet.TypeDef,System.Boolean)">
<summary>
Determines whether the specified type is visible outside the containing assembly.
</summary>
<param name="typeDef">The type.</param>
<param name="exeNonPublic">Visibility of executable modules.</param>
<returns><c>true</c> if the specified type is visible outside the containing assembly; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.HasAttribute(dnlib.DotNet.IHasCustomAttribute,System.String)">
<summary>
Determines whether the object has the specified custom attribute.
</summary>
<param name="obj">The object.</param>
<param name="fullName">The full name of the type of custom attribute.</param>
<returns><c>true</c> if the specified object has custom attribute; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsComImport(dnlib.DotNet.TypeDef)">
<summary>
Determines whether the specified type is COM import.
</summary>
<param name="type">The type.</param>
<returns><c>true</c> if specified type is COM import; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsCompilerGenerated(dnlib.DotNet.TypeDef)">
<summary>
Determines whether the specified type is compiler generated.
</summary>
<param name="type">The type.</param>
<returns><c>true</c> if specified type is compiler generated; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsDelegate(dnlib.DotNet.TypeDef)">
<summary>
Determines whether the specified type is a delegate.
</summary>
<param name="type">The type.</param>
<returns><c>true</c> if the specified type is a delegate; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.InheritsFromCorlib(dnlib.DotNet.TypeDef,System.String)">
<summary>
Determines whether the specified type is inherited from a base type in corlib.
</summary>
<param name="type">The type.</param>
<param name="baseType">The full name of base type.</param>
<returns><c>true</c> if the specified type is inherited from a base type; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.InheritsFrom(dnlib.DotNet.TypeDef,System.String)">
<summary>
Determines whether the specified type is inherited from a base type.
</summary>
<param name="type">The type.</param>
<param name="baseType">The full name of base type.</param>
<returns><c>true</c> if the specified type is inherited from a base type; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.Implements(dnlib.DotNet.TypeDef,System.String)">
<summary>
Determines whether the specified type implements the specified interface.
</summary>
<param name="type">The type.</param>
<param name="fullName">The full name of the type of interface.</param>
<returns><c>true</c> if the specified type implements the interface; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.ResolveThrow(dnlib.DotNet.IMethod)">
<summary>
Resolves the method.
</summary>
<param name="method">The method to resolve.</param>
<returns>A <see cref="T:dnlib.DotNet.MethodDef"/> instance.</returns>
<exception cref="T:dnlib.DotNet.MemberRefResolveException">The method couldn't be resolved.</exception>
</member>
<member name="M:Confuser.Core.DnlibUtils.ResolveThrow(dnlib.DotNet.IField)">
<summary>
Resolves the field.
</summary>
<param name="field">The field to resolve.</param>
<returns>A <see cref="T:dnlib.DotNet.FieldDef"/> instance.</returns>
<exception cref="T:dnlib.DotNet.MemberRefResolveException">The method couldn't be resolved.</exception>
</member>
<member name="M:Confuser.Core.DnlibUtils.ToBasicTypeDefOrRef(dnlib.DotNet.TypeSig)">
<summary>
Find the basic type reference.
</summary>
<param name="typeSig">The type signature to get the basic type.</param>
<returns>A <see cref="T:dnlib.DotNet.ITypeDefOrRef"/> instance, or null if the typeSig cannot be resolved to basic type.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.FindTypeRefs(dnlib.DotNet.TypeSig)">
<summary>
Find the type references within the specified type signature.
</summary>
<param name="typeSig">The type signature to find the type references.</param>
<returns>A list of <see cref="T:dnlib.DotNet.ITypeDefOrRef"/> instance.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsPublic(dnlib.DotNet.PropertyDef)">
<summary>
Determines whether the specified property is public.
</summary>
<param name="property">The property.</param>
<returns><c>true</c> if the specified property is public; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsStatic(dnlib.DotNet.PropertyDef)">
<summary>
Determines whether the specified property is static.
</summary>
<param name="property">The property.</param>
<returns><c>true</c> if the specified property is static; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsPublic(dnlib.DotNet.EventDef)">
<summary>
Determines whether the specified event is public.
</summary>
<param name="evt">The event.</param>
<returns><c>true</c> if the specified event is public; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.IsStatic(dnlib.DotNet.EventDef)">
<summary>
Determines whether the specified event is static.
</summary>
<param name="evt">The event.</param>
<returns><c>true</c> if the specified event is static; otherwise, <c>false</c>.</returns>
</member>
<member name="M:Confuser.Core.DnlibUtils.ReplaceReference(dnlib.DotNet.Emit.CilBody,dnlib.DotNet.Emit.Instruction,dnlib.DotNet.Emit.Instruction)">