-
-
Notifications
You must be signed in to change notification settings - Fork 499
/
xrefmap.yml
6892 lines (6892 loc) · 406 KB
/
xrefmap.yml
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
### YamlMime:XRefMap
sorted: true
references:
- uid: HarmonyLib
name: HarmonyLib
href: api/HarmonyLib.html
commentId: N:HarmonyLib
fullName: HarmonyLib
nameWithType: HarmonyLib
- uid: HarmonyLib.AccessTools
name: AccessTools
href: api/HarmonyLib.AccessTools.html
commentId: T:HarmonyLib.AccessTools
fullName: HarmonyLib.AccessTools
nameWithType: AccessTools
- uid: HarmonyLib.AccessTools.ActualParameters(System.Reflection.MethodBase,System.Object[])
name: ActualParameters(MethodBase, Object[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_ActualParameters_System_Reflection_MethodBase_System_Object___
commentId: M:HarmonyLib.AccessTools.ActualParameters(System.Reflection.MethodBase,System.Object[])
name.vb: ActualParameters(MethodBase, Object())
fullName: HarmonyLib.AccessTools.ActualParameters(System.Reflection.MethodBase, System.Object[])
fullName.vb: HarmonyLib.AccessTools.ActualParameters(System.Reflection.MethodBase, System.Object())
nameWithType: AccessTools.ActualParameters(MethodBase, Object[])
nameWithType.vb: AccessTools.ActualParameters(MethodBase, Object())
- uid: HarmonyLib.AccessTools.ActualParameters*
name: ActualParameters
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_ActualParameters_
commentId: Overload:HarmonyLib.AccessTools.ActualParameters
isSpec: "True"
fullName: HarmonyLib.AccessTools.ActualParameters
nameWithType: AccessTools.ActualParameters
- uid: HarmonyLib.AccessTools.all
name: all
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_all
commentId: F:HarmonyLib.AccessTools.all
fullName: HarmonyLib.AccessTools.all
nameWithType: AccessTools.all
- uid: HarmonyLib.AccessTools.AllAssemblies
name: AllAssemblies()
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_AllAssemblies
commentId: M:HarmonyLib.AccessTools.AllAssemblies
fullName: HarmonyLib.AccessTools.AllAssemblies()
nameWithType: AccessTools.AllAssemblies()
- uid: HarmonyLib.AccessTools.AllAssemblies*
name: AllAssemblies
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_AllAssemblies_
commentId: Overload:HarmonyLib.AccessTools.AllAssemblies
isSpec: "True"
fullName: HarmonyLib.AccessTools.AllAssemblies
nameWithType: AccessTools.AllAssemblies
- uid: HarmonyLib.AccessTools.allDeclared
name: allDeclared
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_allDeclared
commentId: F:HarmonyLib.AccessTools.allDeclared
fullName: HarmonyLib.AccessTools.allDeclared
nameWithType: AccessTools.allDeclared
- uid: HarmonyLib.AccessTools.AllTypes
name: AllTypes()
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_AllTypes
commentId: M:HarmonyLib.AccessTools.AllTypes
fullName: HarmonyLib.AccessTools.AllTypes()
nameWithType: AccessTools.AllTypes()
- uid: HarmonyLib.AccessTools.AllTypes*
name: AllTypes
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_AllTypes_
commentId: Overload:HarmonyLib.AccessTools.AllTypes
isSpec: "True"
fullName: HarmonyLib.AccessTools.AllTypes
nameWithType: AccessTools.AllTypes
- uid: HarmonyLib.AccessTools.CombinedHashCode(System.Collections.Generic.IEnumerable{System.Object})
name: CombinedHashCode(IEnumerable<Object>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_CombinedHashCode_System_Collections_Generic_IEnumerable_System_Object__
commentId: M:HarmonyLib.AccessTools.CombinedHashCode(System.Collections.Generic.IEnumerable{System.Object})
name.vb: CombinedHashCode(IEnumerable(Of Object))
fullName: HarmonyLib.AccessTools.CombinedHashCode(System.Collections.Generic.IEnumerable<System.Object>)
fullName.vb: HarmonyLib.AccessTools.CombinedHashCode(System.Collections.Generic.IEnumerable(Of System.Object))
nameWithType: AccessTools.CombinedHashCode(IEnumerable<Object>)
nameWithType.vb: AccessTools.CombinedHashCode(IEnumerable(Of Object))
- uid: HarmonyLib.AccessTools.CombinedHashCode*
name: CombinedHashCode
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_CombinedHashCode_
commentId: Overload:HarmonyLib.AccessTools.CombinedHashCode
isSpec: "True"
fullName: HarmonyLib.AccessTools.CombinedHashCode
nameWithType: AccessTools.CombinedHashCode
- uid: HarmonyLib.AccessTools.Constructor(System.Type,System.Type[],System.Boolean)
name: Constructor(Type, Type[], Boolean)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Constructor_System_Type_System_Type___System_Boolean_
commentId: M:HarmonyLib.AccessTools.Constructor(System.Type,System.Type[],System.Boolean)
name.vb: Constructor(Type, Type(), Boolean)
fullName: HarmonyLib.AccessTools.Constructor(System.Type, System.Type[], System.Boolean)
fullName.vb: HarmonyLib.AccessTools.Constructor(System.Type, System.Type(), System.Boolean)
nameWithType: AccessTools.Constructor(Type, Type[], Boolean)
nameWithType.vb: AccessTools.Constructor(Type, Type(), Boolean)
- uid: HarmonyLib.AccessTools.Constructor*
name: Constructor
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Constructor_
commentId: Overload:HarmonyLib.AccessTools.Constructor
isSpec: "True"
fullName: HarmonyLib.AccessTools.Constructor
nameWithType: AccessTools.Constructor
- uid: HarmonyLib.AccessTools.CreateInstance(System.Type)
name: CreateInstance(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_CreateInstance_System_Type_
commentId: M:HarmonyLib.AccessTools.CreateInstance(System.Type)
fullName: HarmonyLib.AccessTools.CreateInstance(System.Type)
nameWithType: AccessTools.CreateInstance(Type)
- uid: HarmonyLib.AccessTools.CreateInstance*
name: CreateInstance
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_CreateInstance_
commentId: Overload:HarmonyLib.AccessTools.CreateInstance
isSpec: "True"
fullName: HarmonyLib.AccessTools.CreateInstance
nameWithType: AccessTools.CreateInstance
- uid: HarmonyLib.AccessTools.CreateInstance``1
name: CreateInstance<T>()
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_CreateInstance__1
commentId: M:HarmonyLib.AccessTools.CreateInstance``1
name.vb: CreateInstance(Of T)()
fullName: HarmonyLib.AccessTools.CreateInstance<T>()
fullName.vb: HarmonyLib.AccessTools.CreateInstance(Of T)()
nameWithType: AccessTools.CreateInstance<T>()
nameWithType.vb: AccessTools.CreateInstance(Of T)()
- uid: HarmonyLib.AccessTools.DeclaredConstructor(System.Type,System.Type[],System.Boolean)
name: DeclaredConstructor(Type, Type[], Boolean)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredConstructor_System_Type_System_Type___System_Boolean_
commentId: M:HarmonyLib.AccessTools.DeclaredConstructor(System.Type,System.Type[],System.Boolean)
name.vb: DeclaredConstructor(Type, Type(), Boolean)
fullName: HarmonyLib.AccessTools.DeclaredConstructor(System.Type, System.Type[], System.Boolean)
fullName.vb: HarmonyLib.AccessTools.DeclaredConstructor(System.Type, System.Type(), System.Boolean)
nameWithType: AccessTools.DeclaredConstructor(Type, Type[], Boolean)
nameWithType.vb: AccessTools.DeclaredConstructor(Type, Type(), Boolean)
- uid: HarmonyLib.AccessTools.DeclaredConstructor*
name: DeclaredConstructor
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredConstructor_
commentId: Overload:HarmonyLib.AccessTools.DeclaredConstructor
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredConstructor
nameWithType: AccessTools.DeclaredConstructor
- uid: HarmonyLib.AccessTools.DeclaredField(System.String)
name: DeclaredField(String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredField_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredField(System.String)
fullName: HarmonyLib.AccessTools.DeclaredField(System.String)
nameWithType: AccessTools.DeclaredField(String)
- uid: HarmonyLib.AccessTools.DeclaredField(System.Type,System.Int32)
name: DeclaredField(Type, Int32)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredField_System_Type_System_Int32_
commentId: M:HarmonyLib.AccessTools.DeclaredField(System.Type,System.Int32)
fullName: HarmonyLib.AccessTools.DeclaredField(System.Type, System.Int32)
nameWithType: AccessTools.DeclaredField(Type, Int32)
- uid: HarmonyLib.AccessTools.DeclaredField(System.Type,System.String)
name: DeclaredField(Type, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredField_System_Type_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredField(System.Type,System.String)
fullName: HarmonyLib.AccessTools.DeclaredField(System.Type, System.String)
nameWithType: AccessTools.DeclaredField(Type, String)
- uid: HarmonyLib.AccessTools.DeclaredField*
name: DeclaredField
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredField_
commentId: Overload:HarmonyLib.AccessTools.DeclaredField
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredField
nameWithType: AccessTools.DeclaredField
- uid: HarmonyLib.AccessTools.DeclaredIndexer(System.Type,System.Type[])
name: DeclaredIndexer(Type, Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredIndexer_System_Type_System_Type___
commentId: M:HarmonyLib.AccessTools.DeclaredIndexer(System.Type,System.Type[])
name.vb: DeclaredIndexer(Type, Type())
fullName: HarmonyLib.AccessTools.DeclaredIndexer(System.Type, System.Type[])
fullName.vb: HarmonyLib.AccessTools.DeclaredIndexer(System.Type, System.Type())
nameWithType: AccessTools.DeclaredIndexer(Type, Type[])
nameWithType.vb: AccessTools.DeclaredIndexer(Type, Type())
- uid: HarmonyLib.AccessTools.DeclaredIndexer*
name: DeclaredIndexer
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredIndexer_
commentId: Overload:HarmonyLib.AccessTools.DeclaredIndexer
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredIndexer
nameWithType: AccessTools.DeclaredIndexer
- uid: HarmonyLib.AccessTools.DeclaredIndexerGetter(System.Type,System.Type[])
name: DeclaredIndexerGetter(Type, Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredIndexerGetter_System_Type_System_Type___
commentId: M:HarmonyLib.AccessTools.DeclaredIndexerGetter(System.Type,System.Type[])
name.vb: DeclaredIndexerGetter(Type, Type())
fullName: HarmonyLib.AccessTools.DeclaredIndexerGetter(System.Type, System.Type[])
fullName.vb: HarmonyLib.AccessTools.DeclaredIndexerGetter(System.Type, System.Type())
nameWithType: AccessTools.DeclaredIndexerGetter(Type, Type[])
nameWithType.vb: AccessTools.DeclaredIndexerGetter(Type, Type())
- uid: HarmonyLib.AccessTools.DeclaredIndexerGetter*
name: DeclaredIndexerGetter
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredIndexerGetter_
commentId: Overload:HarmonyLib.AccessTools.DeclaredIndexerGetter
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredIndexerGetter
nameWithType: AccessTools.DeclaredIndexerGetter
- uid: HarmonyLib.AccessTools.DeclaredIndexerSetter(System.Type,System.Type[])
name: DeclaredIndexerSetter(Type, Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredIndexerSetter_System_Type_System_Type___
commentId: M:HarmonyLib.AccessTools.DeclaredIndexerSetter(System.Type,System.Type[])
name.vb: DeclaredIndexerSetter(Type, Type())
fullName: HarmonyLib.AccessTools.DeclaredIndexerSetter(System.Type, System.Type[])
fullName.vb: HarmonyLib.AccessTools.DeclaredIndexerSetter(System.Type, System.Type())
nameWithType: AccessTools.DeclaredIndexerSetter(Type, Type[])
nameWithType.vb: AccessTools.DeclaredIndexerSetter(Type, Type())
- uid: HarmonyLib.AccessTools.DeclaredIndexerSetter*
name: DeclaredIndexerSetter
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredIndexerSetter_
commentId: Overload:HarmonyLib.AccessTools.DeclaredIndexerSetter
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredIndexerSetter
nameWithType: AccessTools.DeclaredIndexerSetter
- uid: HarmonyLib.AccessTools.DeclaredMethod(System.String,System.Type[],System.Type[])
name: DeclaredMethod(String, Type[], Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredMethod_System_String_System_Type___System_Type___
commentId: M:HarmonyLib.AccessTools.DeclaredMethod(System.String,System.Type[],System.Type[])
name.vb: DeclaredMethod(String, Type(), Type())
fullName: HarmonyLib.AccessTools.DeclaredMethod(System.String, System.Type[], System.Type[])
fullName.vb: HarmonyLib.AccessTools.DeclaredMethod(System.String, System.Type(), System.Type())
nameWithType: AccessTools.DeclaredMethod(String, Type[], Type[])
nameWithType.vb: AccessTools.DeclaredMethod(String, Type(), Type())
- uid: HarmonyLib.AccessTools.DeclaredMethod(System.Type,System.String,System.Type[],System.Type[])
name: DeclaredMethod(Type, String, Type[], Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredMethod_System_Type_System_String_System_Type___System_Type___
commentId: M:HarmonyLib.AccessTools.DeclaredMethod(System.Type,System.String,System.Type[],System.Type[])
name.vb: DeclaredMethod(Type, String, Type(), Type())
fullName: HarmonyLib.AccessTools.DeclaredMethod(System.Type, System.String, System.Type[], System.Type[])
fullName.vb: HarmonyLib.AccessTools.DeclaredMethod(System.Type, System.String, System.Type(), System.Type())
nameWithType: AccessTools.DeclaredMethod(Type, String, Type[], Type[])
nameWithType.vb: AccessTools.DeclaredMethod(Type, String, Type(), Type())
- uid: HarmonyLib.AccessTools.DeclaredMethod*
name: DeclaredMethod
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredMethod_
commentId: Overload:HarmonyLib.AccessTools.DeclaredMethod
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredMethod
nameWithType: AccessTools.DeclaredMethod
- uid: HarmonyLib.AccessTools.DeclaredProperty(System.String)
name: DeclaredProperty(String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredProperty_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredProperty(System.String)
fullName: HarmonyLib.AccessTools.DeclaredProperty(System.String)
nameWithType: AccessTools.DeclaredProperty(String)
- uid: HarmonyLib.AccessTools.DeclaredProperty(System.Type,System.String)
name: DeclaredProperty(Type, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredProperty_System_Type_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredProperty(System.Type,System.String)
fullName: HarmonyLib.AccessTools.DeclaredProperty(System.Type, System.String)
nameWithType: AccessTools.DeclaredProperty(Type, String)
- uid: HarmonyLib.AccessTools.DeclaredProperty*
name: DeclaredProperty
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredProperty_
commentId: Overload:HarmonyLib.AccessTools.DeclaredProperty
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredProperty
nameWithType: AccessTools.DeclaredProperty
- uid: HarmonyLib.AccessTools.DeclaredPropertyGetter(System.String)
name: DeclaredPropertyGetter(String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredPropertyGetter_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredPropertyGetter(System.String)
fullName: HarmonyLib.AccessTools.DeclaredPropertyGetter(System.String)
nameWithType: AccessTools.DeclaredPropertyGetter(String)
- uid: HarmonyLib.AccessTools.DeclaredPropertyGetter(System.Type,System.String)
name: DeclaredPropertyGetter(Type, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredPropertyGetter_System_Type_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredPropertyGetter(System.Type,System.String)
fullName: HarmonyLib.AccessTools.DeclaredPropertyGetter(System.Type, System.String)
nameWithType: AccessTools.DeclaredPropertyGetter(Type, String)
- uid: HarmonyLib.AccessTools.DeclaredPropertyGetter*
name: DeclaredPropertyGetter
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredPropertyGetter_
commentId: Overload:HarmonyLib.AccessTools.DeclaredPropertyGetter
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredPropertyGetter
nameWithType: AccessTools.DeclaredPropertyGetter
- uid: HarmonyLib.AccessTools.DeclaredPropertySetter(System.String)
name: DeclaredPropertySetter(String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredPropertySetter_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredPropertySetter(System.String)
fullName: HarmonyLib.AccessTools.DeclaredPropertySetter(System.String)
nameWithType: AccessTools.DeclaredPropertySetter(String)
- uid: HarmonyLib.AccessTools.DeclaredPropertySetter(System.Type,System.String)
name: DeclaredPropertySetter(Type, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredPropertySetter_System_Type_System_String_
commentId: M:HarmonyLib.AccessTools.DeclaredPropertySetter(System.Type,System.String)
fullName: HarmonyLib.AccessTools.DeclaredPropertySetter(System.Type, System.String)
nameWithType: AccessTools.DeclaredPropertySetter(Type, String)
- uid: HarmonyLib.AccessTools.DeclaredPropertySetter*
name: DeclaredPropertySetter
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_DeclaredPropertySetter_
commentId: Overload:HarmonyLib.AccessTools.DeclaredPropertySetter
isSpec: "True"
fullName: HarmonyLib.AccessTools.DeclaredPropertySetter
nameWithType: AccessTools.DeclaredPropertySetter
- uid: HarmonyLib.AccessTools.EnumeratorMoveNext(System.Reflection.MethodBase)
name: EnumeratorMoveNext(MethodBase)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_EnumeratorMoveNext_System_Reflection_MethodBase_
commentId: M:HarmonyLib.AccessTools.EnumeratorMoveNext(System.Reflection.MethodBase)
fullName: HarmonyLib.AccessTools.EnumeratorMoveNext(System.Reflection.MethodBase)
nameWithType: AccessTools.EnumeratorMoveNext(MethodBase)
- uid: HarmonyLib.AccessTools.EnumeratorMoveNext*
name: EnumeratorMoveNext
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_EnumeratorMoveNext_
commentId: Overload:HarmonyLib.AccessTools.EnumeratorMoveNext
isSpec: "True"
fullName: HarmonyLib.AccessTools.EnumeratorMoveNext
nameWithType: AccessTools.EnumeratorMoveNext
- uid: HarmonyLib.AccessTools.Field(System.String)
name: Field(String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Field_System_String_
commentId: M:HarmonyLib.AccessTools.Field(System.String)
fullName: HarmonyLib.AccessTools.Field(System.String)
nameWithType: AccessTools.Field(String)
- uid: HarmonyLib.AccessTools.Field(System.Type,System.String)
name: Field(Type, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Field_System_Type_System_String_
commentId: M:HarmonyLib.AccessTools.Field(System.Type,System.String)
fullName: HarmonyLib.AccessTools.Field(System.Type, System.String)
nameWithType: AccessTools.Field(Type, String)
- uid: HarmonyLib.AccessTools.Field*
name: Field
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Field_
commentId: Overload:HarmonyLib.AccessTools.Field
isSpec: "True"
fullName: HarmonyLib.AccessTools.Field
nameWithType: AccessTools.Field
- uid: HarmonyLib.AccessTools.FieldRef`1
name: AccessTools.FieldRef<F>
href: api/HarmonyLib.AccessTools.FieldRef-1.html
commentId: T:HarmonyLib.AccessTools.FieldRef`1
name.vb: AccessTools.FieldRef(Of F)
fullName: HarmonyLib.AccessTools.FieldRef<F>
fullName.vb: HarmonyLib.AccessTools.FieldRef(Of F)
nameWithType: AccessTools.FieldRef<F>
nameWithType.vb: AccessTools.FieldRef(Of F)
- uid: HarmonyLib.AccessTools.FieldRef`2
name: AccessTools.FieldRef<T, F>
href: api/HarmonyLib.AccessTools.FieldRef-2.html
commentId: T:HarmonyLib.AccessTools.FieldRef`2
name.vb: AccessTools.FieldRef(Of T, F)
fullName: HarmonyLib.AccessTools.FieldRef<T, F>
fullName.vb: HarmonyLib.AccessTools.FieldRef(Of T, F)
nameWithType: AccessTools.FieldRef<T, F>
nameWithType.vb: AccessTools.FieldRef(Of T, F)
- uid: HarmonyLib.AccessTools.FieldRefAccess*
name: FieldRefAccess
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FieldRefAccess_
commentId: Overload:HarmonyLib.AccessTools.FieldRefAccess
isSpec: "True"
fullName: HarmonyLib.AccessTools.FieldRefAccess
nameWithType: AccessTools.FieldRefAccess
- uid: HarmonyLib.AccessTools.FieldRefAccess``1(System.String)
name: FieldRefAccess<F>(String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FieldRefAccess__1_System_String_
commentId: M:HarmonyLib.AccessTools.FieldRefAccess``1(System.String)
name.vb: FieldRefAccess(Of F)(String)
fullName: HarmonyLib.AccessTools.FieldRefAccess<F>(System.String)
fullName.vb: HarmonyLib.AccessTools.FieldRefAccess(Of F)(System.String)
nameWithType: AccessTools.FieldRefAccess<F>(String)
nameWithType.vb: AccessTools.FieldRefAccess(Of F)(String)
- uid: HarmonyLib.AccessTools.FieldRefAccess``1(System.Type,System.String)
name: FieldRefAccess<F>(Type, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FieldRefAccess__1_System_Type_System_String_
commentId: M:HarmonyLib.AccessTools.FieldRefAccess``1(System.Type,System.String)
name.vb: FieldRefAccess(Of F)(Type, String)
fullName: HarmonyLib.AccessTools.FieldRefAccess<F>(System.Type, System.String)
fullName.vb: HarmonyLib.AccessTools.FieldRefAccess(Of F)(System.Type, System.String)
nameWithType: AccessTools.FieldRefAccess<F>(Type, String)
nameWithType.vb: AccessTools.FieldRefAccess(Of F)(Type, String)
- uid: HarmonyLib.AccessTools.FieldRefAccess``2(``0,System.Reflection.FieldInfo)
name: FieldRefAccess<T, F>(T, FieldInfo)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FieldRefAccess__2___0_System_Reflection_FieldInfo_
commentId: M:HarmonyLib.AccessTools.FieldRefAccess``2(``0,System.Reflection.FieldInfo)
name.vb: FieldRefAccess(Of T, F)(T, FieldInfo)
fullName: HarmonyLib.AccessTools.FieldRefAccess<T, F>(T, System.Reflection.FieldInfo)
fullName.vb: HarmonyLib.AccessTools.FieldRefAccess(Of T, F)(T, System.Reflection.FieldInfo)
nameWithType: AccessTools.FieldRefAccess<T, F>(T, FieldInfo)
nameWithType.vb: AccessTools.FieldRefAccess(Of T, F)(T, FieldInfo)
- uid: HarmonyLib.AccessTools.FieldRefAccess``2(``0,System.String)
name: FieldRefAccess<T, F>(T, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FieldRefAccess__2___0_System_String_
commentId: M:HarmonyLib.AccessTools.FieldRefAccess``2(``0,System.String)
name.vb: FieldRefAccess(Of T, F)(T, String)
fullName: HarmonyLib.AccessTools.FieldRefAccess<T, F>(T, System.String)
fullName.vb: HarmonyLib.AccessTools.FieldRefAccess(Of T, F)(T, System.String)
nameWithType: AccessTools.FieldRefAccess<T, F>(T, String)
nameWithType.vb: AccessTools.FieldRefAccess(Of T, F)(T, String)
- uid: HarmonyLib.AccessTools.FieldRefAccess``2(System.Reflection.FieldInfo)
name: FieldRefAccess<T, F>(FieldInfo)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FieldRefAccess__2_System_Reflection_FieldInfo_
commentId: M:HarmonyLib.AccessTools.FieldRefAccess``2(System.Reflection.FieldInfo)
name.vb: FieldRefAccess(Of T, F)(FieldInfo)
fullName: HarmonyLib.AccessTools.FieldRefAccess<T, F>(System.Reflection.FieldInfo)
fullName.vb: HarmonyLib.AccessTools.FieldRefAccess(Of T, F)(System.Reflection.FieldInfo)
nameWithType: AccessTools.FieldRefAccess<T, F>(FieldInfo)
nameWithType.vb: AccessTools.FieldRefAccess(Of T, F)(FieldInfo)
- uid: HarmonyLib.AccessTools.FieldRefAccess``2(System.String)
name: FieldRefAccess<T, F>(String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FieldRefAccess__2_System_String_
commentId: M:HarmonyLib.AccessTools.FieldRefAccess``2(System.String)
name.vb: FieldRefAccess(Of T, F)(String)
fullName: HarmonyLib.AccessTools.FieldRefAccess<T, F>(System.String)
fullName.vb: HarmonyLib.AccessTools.FieldRefAccess(Of T, F)(System.String)
nameWithType: AccessTools.FieldRefAccess<T, F>(String)
nameWithType.vb: AccessTools.FieldRefAccess(Of T, F)(String)
- uid: HarmonyLib.AccessTools.FindIncludingBaseTypes*
name: FindIncludingBaseTypes
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FindIncludingBaseTypes_
commentId: Overload:HarmonyLib.AccessTools.FindIncludingBaseTypes
isSpec: "True"
fullName: HarmonyLib.AccessTools.FindIncludingBaseTypes
nameWithType: AccessTools.FindIncludingBaseTypes
- uid: HarmonyLib.AccessTools.FindIncludingBaseTypes``1(System.Type,System.Func{System.Type,``0})
name: FindIncludingBaseTypes<T>(Type, Func<Type, T>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FindIncludingBaseTypes__1_System_Type_System_Func_System_Type___0__
commentId: M:HarmonyLib.AccessTools.FindIncludingBaseTypes``1(System.Type,System.Func{System.Type,``0})
name.vb: FindIncludingBaseTypes(Of T)(Type, Func(Of Type, T))
fullName: HarmonyLib.AccessTools.FindIncludingBaseTypes<T>(System.Type, System.Func<System.Type, T>)
fullName.vb: HarmonyLib.AccessTools.FindIncludingBaseTypes(Of T)(System.Type, System.Func(Of System.Type, T))
nameWithType: AccessTools.FindIncludingBaseTypes<T>(Type, Func<Type, T>)
nameWithType.vb: AccessTools.FindIncludingBaseTypes(Of T)(Type, Func(Of Type, T))
- uid: HarmonyLib.AccessTools.FindIncludingInnerTypes*
name: FindIncludingInnerTypes
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FindIncludingInnerTypes_
commentId: Overload:HarmonyLib.AccessTools.FindIncludingInnerTypes
isSpec: "True"
fullName: HarmonyLib.AccessTools.FindIncludingInnerTypes
nameWithType: AccessTools.FindIncludingInnerTypes
- uid: HarmonyLib.AccessTools.FindIncludingInnerTypes``1(System.Type,System.Func{System.Type,``0})
name: FindIncludingInnerTypes<T>(Type, Func<Type, T>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FindIncludingInnerTypes__1_System_Type_System_Func_System_Type___0__
commentId: M:HarmonyLib.AccessTools.FindIncludingInnerTypes``1(System.Type,System.Func{System.Type,``0})
name.vb: FindIncludingInnerTypes(Of T)(Type, Func(Of Type, T))
fullName: HarmonyLib.AccessTools.FindIncludingInnerTypes<T>(System.Type, System.Func<System.Type, T>)
fullName.vb: HarmonyLib.AccessTools.FindIncludingInnerTypes(Of T)(System.Type, System.Func(Of System.Type, T))
nameWithType: AccessTools.FindIncludingInnerTypes<T>(Type, Func<Type, T>)
nameWithType.vb: AccessTools.FindIncludingInnerTypes(Of T)(Type, Func(Of Type, T))
- uid: HarmonyLib.AccessTools.FirstConstructor(System.Type,System.Func{System.Reflection.ConstructorInfo,System.Boolean})
name: FirstConstructor(Type, Func<ConstructorInfo, Boolean>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstConstructor_System_Type_System_Func_System_Reflection_ConstructorInfo_System_Boolean__
commentId: M:HarmonyLib.AccessTools.FirstConstructor(System.Type,System.Func{System.Reflection.ConstructorInfo,System.Boolean})
name.vb: FirstConstructor(Type, Func(Of ConstructorInfo, Boolean))
fullName: HarmonyLib.AccessTools.FirstConstructor(System.Type, System.Func<System.Reflection.ConstructorInfo, System.Boolean>)
fullName.vb: HarmonyLib.AccessTools.FirstConstructor(System.Type, System.Func(Of System.Reflection.ConstructorInfo, System.Boolean))
nameWithType: AccessTools.FirstConstructor(Type, Func<ConstructorInfo, Boolean>)
nameWithType.vb: AccessTools.FirstConstructor(Type, Func(Of ConstructorInfo, Boolean))
- uid: HarmonyLib.AccessTools.FirstConstructor*
name: FirstConstructor
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstConstructor_
commentId: Overload:HarmonyLib.AccessTools.FirstConstructor
isSpec: "True"
fullName: HarmonyLib.AccessTools.FirstConstructor
nameWithType: AccessTools.FirstConstructor
- uid: HarmonyLib.AccessTools.FirstInner(System.Type,System.Func{System.Type,System.Boolean})
name: FirstInner(Type, Func<Type, Boolean>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstInner_System_Type_System_Func_System_Type_System_Boolean__
commentId: M:HarmonyLib.AccessTools.FirstInner(System.Type,System.Func{System.Type,System.Boolean})
name.vb: FirstInner(Type, Func(Of Type, Boolean))
fullName: HarmonyLib.AccessTools.FirstInner(System.Type, System.Func<System.Type, System.Boolean>)
fullName.vb: HarmonyLib.AccessTools.FirstInner(System.Type, System.Func(Of System.Type, System.Boolean))
nameWithType: AccessTools.FirstInner(Type, Func<Type, Boolean>)
nameWithType.vb: AccessTools.FirstInner(Type, Func(Of Type, Boolean))
- uid: HarmonyLib.AccessTools.FirstInner*
name: FirstInner
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstInner_
commentId: Overload:HarmonyLib.AccessTools.FirstInner
isSpec: "True"
fullName: HarmonyLib.AccessTools.FirstInner
nameWithType: AccessTools.FirstInner
- uid: HarmonyLib.AccessTools.FirstMethod(System.Type,System.Func{System.Reflection.MethodInfo,System.Boolean})
name: FirstMethod(Type, Func<MethodInfo, Boolean>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstMethod_System_Type_System_Func_System_Reflection_MethodInfo_System_Boolean__
commentId: M:HarmonyLib.AccessTools.FirstMethod(System.Type,System.Func{System.Reflection.MethodInfo,System.Boolean})
name.vb: FirstMethod(Type, Func(Of MethodInfo, Boolean))
fullName: HarmonyLib.AccessTools.FirstMethod(System.Type, System.Func<System.Reflection.MethodInfo, System.Boolean>)
fullName.vb: HarmonyLib.AccessTools.FirstMethod(System.Type, System.Func(Of System.Reflection.MethodInfo, System.Boolean))
nameWithType: AccessTools.FirstMethod(Type, Func<MethodInfo, Boolean>)
nameWithType.vb: AccessTools.FirstMethod(Type, Func(Of MethodInfo, Boolean))
- uid: HarmonyLib.AccessTools.FirstMethod*
name: FirstMethod
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstMethod_
commentId: Overload:HarmonyLib.AccessTools.FirstMethod
isSpec: "True"
fullName: HarmonyLib.AccessTools.FirstMethod
nameWithType: AccessTools.FirstMethod
- uid: HarmonyLib.AccessTools.FirstProperty(System.Type,System.Func{System.Reflection.PropertyInfo,System.Boolean})
name: FirstProperty(Type, Func<PropertyInfo, Boolean>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstProperty_System_Type_System_Func_System_Reflection_PropertyInfo_System_Boolean__
commentId: M:HarmonyLib.AccessTools.FirstProperty(System.Type,System.Func{System.Reflection.PropertyInfo,System.Boolean})
name.vb: FirstProperty(Type, Func(Of PropertyInfo, Boolean))
fullName: HarmonyLib.AccessTools.FirstProperty(System.Type, System.Func<System.Reflection.PropertyInfo, System.Boolean>)
fullName.vb: HarmonyLib.AccessTools.FirstProperty(System.Type, System.Func(Of System.Reflection.PropertyInfo, System.Boolean))
nameWithType: AccessTools.FirstProperty(Type, Func<PropertyInfo, Boolean>)
nameWithType.vb: AccessTools.FirstProperty(Type, Func(Of PropertyInfo, Boolean))
- uid: HarmonyLib.AccessTools.FirstProperty*
name: FirstProperty
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_FirstProperty_
commentId: Overload:HarmonyLib.AccessTools.FirstProperty
isSpec: "True"
fullName: HarmonyLib.AccessTools.FirstProperty
nameWithType: AccessTools.FirstProperty
- uid: HarmonyLib.AccessTools.GetDeclaredConstructors(System.Type,System.Nullable{System.Boolean})
name: GetDeclaredConstructors(Type, Nullable<Boolean>)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredConstructors_System_Type_System_Nullable_System_Boolean__
commentId: M:HarmonyLib.AccessTools.GetDeclaredConstructors(System.Type,System.Nullable{System.Boolean})
name.vb: GetDeclaredConstructors(Type, Nullable(Of Boolean))
fullName: HarmonyLib.AccessTools.GetDeclaredConstructors(System.Type, System.Nullable<System.Boolean>)
fullName.vb: HarmonyLib.AccessTools.GetDeclaredConstructors(System.Type, System.Nullable(Of System.Boolean))
nameWithType: AccessTools.GetDeclaredConstructors(Type, Nullable<Boolean>)
nameWithType.vb: AccessTools.GetDeclaredConstructors(Type, Nullable(Of Boolean))
- uid: HarmonyLib.AccessTools.GetDeclaredConstructors*
name: GetDeclaredConstructors
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredConstructors_
commentId: Overload:HarmonyLib.AccessTools.GetDeclaredConstructors
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetDeclaredConstructors
nameWithType: AccessTools.GetDeclaredConstructors
- uid: HarmonyLib.AccessTools.GetDeclaredFields(System.Type)
name: GetDeclaredFields(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredFields_System_Type_
commentId: M:HarmonyLib.AccessTools.GetDeclaredFields(System.Type)
fullName: HarmonyLib.AccessTools.GetDeclaredFields(System.Type)
nameWithType: AccessTools.GetDeclaredFields(Type)
- uid: HarmonyLib.AccessTools.GetDeclaredFields*
name: GetDeclaredFields
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredFields_
commentId: Overload:HarmonyLib.AccessTools.GetDeclaredFields
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetDeclaredFields
nameWithType: AccessTools.GetDeclaredFields
- uid: HarmonyLib.AccessTools.GetDeclaredMember*
name: GetDeclaredMember
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredMember_
commentId: Overload:HarmonyLib.AccessTools.GetDeclaredMember
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetDeclaredMember
nameWithType: AccessTools.GetDeclaredMember
- uid: HarmonyLib.AccessTools.GetDeclaredMember``1(``0)
name: GetDeclaredMember<T>(T)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredMember__1___0_
commentId: M:HarmonyLib.AccessTools.GetDeclaredMember``1(``0)
name.vb: GetDeclaredMember(Of T)(T)
fullName: HarmonyLib.AccessTools.GetDeclaredMember<T>(T)
fullName.vb: HarmonyLib.AccessTools.GetDeclaredMember(Of T)(T)
nameWithType: AccessTools.GetDeclaredMember<T>(T)
nameWithType.vb: AccessTools.GetDeclaredMember(Of T)(T)
- uid: HarmonyLib.AccessTools.GetDeclaredMethods(System.Type)
name: GetDeclaredMethods(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredMethods_System_Type_
commentId: M:HarmonyLib.AccessTools.GetDeclaredMethods(System.Type)
fullName: HarmonyLib.AccessTools.GetDeclaredMethods(System.Type)
nameWithType: AccessTools.GetDeclaredMethods(Type)
- uid: HarmonyLib.AccessTools.GetDeclaredMethods*
name: GetDeclaredMethods
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredMethods_
commentId: Overload:HarmonyLib.AccessTools.GetDeclaredMethods
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetDeclaredMethods
nameWithType: AccessTools.GetDeclaredMethods
- uid: HarmonyLib.AccessTools.GetDeclaredProperties(System.Type)
name: GetDeclaredProperties(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredProperties_System_Type_
commentId: M:HarmonyLib.AccessTools.GetDeclaredProperties(System.Type)
fullName: HarmonyLib.AccessTools.GetDeclaredProperties(System.Type)
nameWithType: AccessTools.GetDeclaredProperties(Type)
- uid: HarmonyLib.AccessTools.GetDeclaredProperties*
name: GetDeclaredProperties
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDeclaredProperties_
commentId: Overload:HarmonyLib.AccessTools.GetDeclaredProperties
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetDeclaredProperties
nameWithType: AccessTools.GetDeclaredProperties
- uid: HarmonyLib.AccessTools.GetDefaultValue(System.Type)
name: GetDefaultValue(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDefaultValue_System_Type_
commentId: M:HarmonyLib.AccessTools.GetDefaultValue(System.Type)
fullName: HarmonyLib.AccessTools.GetDefaultValue(System.Type)
nameWithType: AccessTools.GetDefaultValue(Type)
- uid: HarmonyLib.AccessTools.GetDefaultValue*
name: GetDefaultValue
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetDefaultValue_
commentId: Overload:HarmonyLib.AccessTools.GetDefaultValue
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetDefaultValue
nameWithType: AccessTools.GetDefaultValue
- uid: HarmonyLib.AccessTools.GetFieldNames(System.Object)
name: GetFieldNames(Object)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetFieldNames_System_Object_
commentId: M:HarmonyLib.AccessTools.GetFieldNames(System.Object)
fullName: HarmonyLib.AccessTools.GetFieldNames(System.Object)
nameWithType: AccessTools.GetFieldNames(Object)
- uid: HarmonyLib.AccessTools.GetFieldNames(System.Type)
name: GetFieldNames(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetFieldNames_System_Type_
commentId: M:HarmonyLib.AccessTools.GetFieldNames(System.Type)
fullName: HarmonyLib.AccessTools.GetFieldNames(System.Type)
nameWithType: AccessTools.GetFieldNames(Type)
- uid: HarmonyLib.AccessTools.GetFieldNames*
name: GetFieldNames
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetFieldNames_
commentId: Overload:HarmonyLib.AccessTools.GetFieldNames
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetFieldNames
nameWithType: AccessTools.GetFieldNames
- uid: HarmonyLib.AccessTools.GetMethodNames(System.Object)
name: GetMethodNames(Object)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetMethodNames_System_Object_
commentId: M:HarmonyLib.AccessTools.GetMethodNames(System.Object)
fullName: HarmonyLib.AccessTools.GetMethodNames(System.Object)
nameWithType: AccessTools.GetMethodNames(Object)
- uid: HarmonyLib.AccessTools.GetMethodNames(System.Type)
name: GetMethodNames(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetMethodNames_System_Type_
commentId: M:HarmonyLib.AccessTools.GetMethodNames(System.Type)
fullName: HarmonyLib.AccessTools.GetMethodNames(System.Type)
nameWithType: AccessTools.GetMethodNames(Type)
- uid: HarmonyLib.AccessTools.GetMethodNames*
name: GetMethodNames
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetMethodNames_
commentId: Overload:HarmonyLib.AccessTools.GetMethodNames
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetMethodNames
nameWithType: AccessTools.GetMethodNames
- uid: HarmonyLib.AccessTools.GetOutsideCaller
name: GetOutsideCaller()
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetOutsideCaller
commentId: M:HarmonyLib.AccessTools.GetOutsideCaller
fullName: HarmonyLib.AccessTools.GetOutsideCaller()
nameWithType: AccessTools.GetOutsideCaller()
- uid: HarmonyLib.AccessTools.GetOutsideCaller*
name: GetOutsideCaller
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetOutsideCaller_
commentId: Overload:HarmonyLib.AccessTools.GetOutsideCaller
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetOutsideCaller
nameWithType: AccessTools.GetOutsideCaller
- uid: HarmonyLib.AccessTools.GetPropertyNames(System.Object)
name: GetPropertyNames(Object)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetPropertyNames_System_Object_
commentId: M:HarmonyLib.AccessTools.GetPropertyNames(System.Object)
fullName: HarmonyLib.AccessTools.GetPropertyNames(System.Object)
nameWithType: AccessTools.GetPropertyNames(Object)
- uid: HarmonyLib.AccessTools.GetPropertyNames(System.Type)
name: GetPropertyNames(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetPropertyNames_System_Type_
commentId: M:HarmonyLib.AccessTools.GetPropertyNames(System.Type)
fullName: HarmonyLib.AccessTools.GetPropertyNames(System.Type)
nameWithType: AccessTools.GetPropertyNames(Type)
- uid: HarmonyLib.AccessTools.GetPropertyNames*
name: GetPropertyNames
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetPropertyNames_
commentId: Overload:HarmonyLib.AccessTools.GetPropertyNames
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetPropertyNames
nameWithType: AccessTools.GetPropertyNames
- uid: HarmonyLib.AccessTools.GetReturnedType(System.Reflection.MethodBase)
name: GetReturnedType(MethodBase)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetReturnedType_System_Reflection_MethodBase_
commentId: M:HarmonyLib.AccessTools.GetReturnedType(System.Reflection.MethodBase)
fullName: HarmonyLib.AccessTools.GetReturnedType(System.Reflection.MethodBase)
nameWithType: AccessTools.GetReturnedType(MethodBase)
- uid: HarmonyLib.AccessTools.GetReturnedType*
name: GetReturnedType
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetReturnedType_
commentId: Overload:HarmonyLib.AccessTools.GetReturnedType
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetReturnedType
nameWithType: AccessTools.GetReturnedType
- uid: HarmonyLib.AccessTools.GetTypes(System.Object[])
name: GetTypes(Object[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetTypes_System_Object___
commentId: M:HarmonyLib.AccessTools.GetTypes(System.Object[])
name.vb: GetTypes(Object())
fullName: HarmonyLib.AccessTools.GetTypes(System.Object[])
fullName.vb: HarmonyLib.AccessTools.GetTypes(System.Object())
nameWithType: AccessTools.GetTypes(Object[])
nameWithType.vb: AccessTools.GetTypes(Object())
- uid: HarmonyLib.AccessTools.GetTypes*
name: GetTypes
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetTypes_
commentId: Overload:HarmonyLib.AccessTools.GetTypes
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetTypes
nameWithType: AccessTools.GetTypes
- uid: HarmonyLib.AccessTools.GetTypesFromAssembly(System.Reflection.Assembly)
name: GetTypesFromAssembly(Assembly)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetTypesFromAssembly_System_Reflection_Assembly_
commentId: M:HarmonyLib.AccessTools.GetTypesFromAssembly(System.Reflection.Assembly)
fullName: HarmonyLib.AccessTools.GetTypesFromAssembly(System.Reflection.Assembly)
nameWithType: AccessTools.GetTypesFromAssembly(Assembly)
- uid: HarmonyLib.AccessTools.GetTypesFromAssembly*
name: GetTypesFromAssembly
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetTypesFromAssembly_
commentId: Overload:HarmonyLib.AccessTools.GetTypesFromAssembly
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetTypesFromAssembly
nameWithType: AccessTools.GetTypesFromAssembly
- uid: HarmonyLib.AccessTools.GetUnderlyingType(System.Reflection.MemberInfo)
name: GetUnderlyingType(MemberInfo)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetUnderlyingType_System_Reflection_MemberInfo_
commentId: M:HarmonyLib.AccessTools.GetUnderlyingType(System.Reflection.MemberInfo)
fullName: HarmonyLib.AccessTools.GetUnderlyingType(System.Reflection.MemberInfo)
nameWithType: AccessTools.GetUnderlyingType(MemberInfo)
- uid: HarmonyLib.AccessTools.GetUnderlyingType*
name: GetUnderlyingType
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_GetUnderlyingType_
commentId: Overload:HarmonyLib.AccessTools.GetUnderlyingType
isSpec: "True"
fullName: HarmonyLib.AccessTools.GetUnderlyingType
nameWithType: AccessTools.GetUnderlyingType
- uid: HarmonyLib.AccessTools.HarmonyDelegate*
name: HarmonyDelegate
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_HarmonyDelegate_
commentId: Overload:HarmonyLib.AccessTools.HarmonyDelegate
isSpec: "True"
fullName: HarmonyLib.AccessTools.HarmonyDelegate
nameWithType: AccessTools.HarmonyDelegate
- uid: HarmonyLib.AccessTools.HarmonyDelegate``1(System.Object)
name: HarmonyDelegate<DelegateType>(Object)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_HarmonyDelegate__1_System_Object_
commentId: M:HarmonyLib.AccessTools.HarmonyDelegate``1(System.Object)
name.vb: HarmonyDelegate(Of DelegateType)(Object)
fullName: HarmonyLib.AccessTools.HarmonyDelegate<DelegateType>(System.Object)
fullName.vb: HarmonyLib.AccessTools.HarmonyDelegate(Of DelegateType)(System.Object)
nameWithType: AccessTools.HarmonyDelegate<DelegateType>(Object)
nameWithType.vb: AccessTools.HarmonyDelegate(Of DelegateType)(Object)
- uid: HarmonyLib.AccessTools.Identifiable(System.Reflection.MethodInfo)
name: Identifiable(MethodInfo)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Identifiable_System_Reflection_MethodInfo_
commentId: M:HarmonyLib.AccessTools.Identifiable(System.Reflection.MethodInfo)
fullName: HarmonyLib.AccessTools.Identifiable(System.Reflection.MethodInfo)
nameWithType: AccessTools.Identifiable(MethodInfo)
- uid: HarmonyLib.AccessTools.Identifiable*
name: Identifiable
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Identifiable_
commentId: Overload:HarmonyLib.AccessTools.Identifiable
isSpec: "True"
fullName: HarmonyLib.AccessTools.Identifiable
nameWithType: AccessTools.Identifiable
- uid: HarmonyLib.AccessTools.Indexer(System.Type,System.Type[])
name: Indexer(Type, Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Indexer_System_Type_System_Type___
commentId: M:HarmonyLib.AccessTools.Indexer(System.Type,System.Type[])
name.vb: Indexer(Type, Type())
fullName: HarmonyLib.AccessTools.Indexer(System.Type, System.Type[])
fullName.vb: HarmonyLib.AccessTools.Indexer(System.Type, System.Type())
nameWithType: AccessTools.Indexer(Type, Type[])
nameWithType.vb: AccessTools.Indexer(Type, Type())
- uid: HarmonyLib.AccessTools.Indexer*
name: Indexer
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Indexer_
commentId: Overload:HarmonyLib.AccessTools.Indexer
isSpec: "True"
fullName: HarmonyLib.AccessTools.Indexer
nameWithType: AccessTools.Indexer
- uid: HarmonyLib.AccessTools.IndexerGetter(System.Type,System.Type[])
name: IndexerGetter(Type, Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IndexerGetter_System_Type_System_Type___
commentId: M:HarmonyLib.AccessTools.IndexerGetter(System.Type,System.Type[])
name.vb: IndexerGetter(Type, Type())
fullName: HarmonyLib.AccessTools.IndexerGetter(System.Type, System.Type[])
fullName.vb: HarmonyLib.AccessTools.IndexerGetter(System.Type, System.Type())
nameWithType: AccessTools.IndexerGetter(Type, Type[])
nameWithType.vb: AccessTools.IndexerGetter(Type, Type())
- uid: HarmonyLib.AccessTools.IndexerGetter*
name: IndexerGetter
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IndexerGetter_
commentId: Overload:HarmonyLib.AccessTools.IndexerGetter
isSpec: "True"
fullName: HarmonyLib.AccessTools.IndexerGetter
nameWithType: AccessTools.IndexerGetter
- uid: HarmonyLib.AccessTools.IndexerSetter(System.Type,System.Type[])
name: IndexerSetter(Type, Type[])
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IndexerSetter_System_Type_System_Type___
commentId: M:HarmonyLib.AccessTools.IndexerSetter(System.Type,System.Type[])
name.vb: IndexerSetter(Type, Type())
fullName: HarmonyLib.AccessTools.IndexerSetter(System.Type, System.Type[])
fullName.vb: HarmonyLib.AccessTools.IndexerSetter(System.Type, System.Type())
nameWithType: AccessTools.IndexerSetter(Type, Type[])
nameWithType.vb: AccessTools.IndexerSetter(Type, Type())
- uid: HarmonyLib.AccessTools.IndexerSetter*
name: IndexerSetter
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IndexerSetter_
commentId: Overload:HarmonyLib.AccessTools.IndexerSetter
isSpec: "True"
fullName: HarmonyLib.AccessTools.IndexerSetter
nameWithType: AccessTools.IndexerSetter
- uid: HarmonyLib.AccessTools.Inner(System.Type,System.String)
name: Inner(Type, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Inner_System_Type_System_String_
commentId: M:HarmonyLib.AccessTools.Inner(System.Type,System.String)
fullName: HarmonyLib.AccessTools.Inner(System.Type, System.String)
nameWithType: AccessTools.Inner(Type, String)
- uid: HarmonyLib.AccessTools.Inner*
name: Inner
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_Inner_
commentId: Overload:HarmonyLib.AccessTools.Inner
isSpec: "True"
fullName: HarmonyLib.AccessTools.Inner
nameWithType: AccessTools.Inner
- uid: HarmonyLib.AccessTools.InnerTypes(System.Type)
name: InnerTypes(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_InnerTypes_System_Type_
commentId: M:HarmonyLib.AccessTools.InnerTypes(System.Type)
fullName: HarmonyLib.AccessTools.InnerTypes(System.Type)
nameWithType: AccessTools.InnerTypes(Type)
- uid: HarmonyLib.AccessTools.InnerTypes*
name: InnerTypes
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_InnerTypes_
commentId: Overload:HarmonyLib.AccessTools.InnerTypes
isSpec: "True"
fullName: HarmonyLib.AccessTools.InnerTypes
nameWithType: AccessTools.InnerTypes
- uid: HarmonyLib.AccessTools.IsClass(System.Type)
name: IsClass(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsClass_System_Type_
commentId: M:HarmonyLib.AccessTools.IsClass(System.Type)
fullName: HarmonyLib.AccessTools.IsClass(System.Type)
nameWithType: AccessTools.IsClass(Type)
- uid: HarmonyLib.AccessTools.IsClass*
name: IsClass
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsClass_
commentId: Overload:HarmonyLib.AccessTools.IsClass
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsClass
nameWithType: AccessTools.IsClass
- uid: HarmonyLib.AccessTools.IsDeclaredMember*
name: IsDeclaredMember
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsDeclaredMember_
commentId: Overload:HarmonyLib.AccessTools.IsDeclaredMember
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsDeclaredMember
nameWithType: AccessTools.IsDeclaredMember
- uid: HarmonyLib.AccessTools.IsDeclaredMember``1(``0)
name: IsDeclaredMember<T>(T)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsDeclaredMember__1___0_
commentId: M:HarmonyLib.AccessTools.IsDeclaredMember``1(``0)
name.vb: IsDeclaredMember(Of T)(T)
fullName: HarmonyLib.AccessTools.IsDeclaredMember<T>(T)
fullName.vb: HarmonyLib.AccessTools.IsDeclaredMember(Of T)(T)
nameWithType: AccessTools.IsDeclaredMember<T>(T)
nameWithType.vb: AccessTools.IsDeclaredMember(Of T)(T)
- uid: HarmonyLib.AccessTools.IsFloatingPoint(System.Type)
name: IsFloatingPoint(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsFloatingPoint_System_Type_
commentId: M:HarmonyLib.AccessTools.IsFloatingPoint(System.Type)
fullName: HarmonyLib.AccessTools.IsFloatingPoint(System.Type)
nameWithType: AccessTools.IsFloatingPoint(Type)
- uid: HarmonyLib.AccessTools.IsFloatingPoint*
name: IsFloatingPoint
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsFloatingPoint_
commentId: Overload:HarmonyLib.AccessTools.IsFloatingPoint
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsFloatingPoint
nameWithType: AccessTools.IsFloatingPoint
- uid: HarmonyLib.AccessTools.IsInteger(System.Type)
name: IsInteger(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsInteger_System_Type_
commentId: M:HarmonyLib.AccessTools.IsInteger(System.Type)
fullName: HarmonyLib.AccessTools.IsInteger(System.Type)
nameWithType: AccessTools.IsInteger(Type)
- uid: HarmonyLib.AccessTools.IsInteger*
name: IsInteger
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsInteger_
commentId: Overload:HarmonyLib.AccessTools.IsInteger
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsInteger
nameWithType: AccessTools.IsInteger
- uid: HarmonyLib.AccessTools.IsMonoRuntime
name: IsMonoRuntime
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsMonoRuntime
commentId: P:HarmonyLib.AccessTools.IsMonoRuntime
fullName: HarmonyLib.AccessTools.IsMonoRuntime
nameWithType: AccessTools.IsMonoRuntime
- uid: HarmonyLib.AccessTools.IsMonoRuntime*
name: IsMonoRuntime
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsMonoRuntime_
commentId: Overload:HarmonyLib.AccessTools.IsMonoRuntime
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsMonoRuntime
nameWithType: AccessTools.IsMonoRuntime
- uid: HarmonyLib.AccessTools.IsNetCoreRuntime
name: IsNetCoreRuntime
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsNetCoreRuntime
commentId: P:HarmonyLib.AccessTools.IsNetCoreRuntime
fullName: HarmonyLib.AccessTools.IsNetCoreRuntime
nameWithType: AccessTools.IsNetCoreRuntime
- uid: HarmonyLib.AccessTools.IsNetCoreRuntime*
name: IsNetCoreRuntime
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsNetCoreRuntime_
commentId: Overload:HarmonyLib.AccessTools.IsNetCoreRuntime
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsNetCoreRuntime
nameWithType: AccessTools.IsNetCoreRuntime
- uid: HarmonyLib.AccessTools.IsNetFrameworkRuntime
name: IsNetFrameworkRuntime
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsNetFrameworkRuntime
commentId: P:HarmonyLib.AccessTools.IsNetFrameworkRuntime
fullName: HarmonyLib.AccessTools.IsNetFrameworkRuntime
nameWithType: AccessTools.IsNetFrameworkRuntime
- uid: HarmonyLib.AccessTools.IsNetFrameworkRuntime*
name: IsNetFrameworkRuntime
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsNetFrameworkRuntime_
commentId: Overload:HarmonyLib.AccessTools.IsNetFrameworkRuntime
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsNetFrameworkRuntime
nameWithType: AccessTools.IsNetFrameworkRuntime
- uid: HarmonyLib.AccessTools.IsNumber(System.Type)
name: IsNumber(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsNumber_System_Type_
commentId: M:HarmonyLib.AccessTools.IsNumber(System.Type)
fullName: HarmonyLib.AccessTools.IsNumber(System.Type)
nameWithType: AccessTools.IsNumber(Type)
- uid: HarmonyLib.AccessTools.IsNumber*
name: IsNumber
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsNumber_
commentId: Overload:HarmonyLib.AccessTools.IsNumber
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsNumber
nameWithType: AccessTools.IsNumber
- uid: HarmonyLib.AccessTools.IsOfNullableType*
name: IsOfNullableType
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsOfNullableType_
commentId: Overload:HarmonyLib.AccessTools.IsOfNullableType
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsOfNullableType
nameWithType: AccessTools.IsOfNullableType
- uid: HarmonyLib.AccessTools.IsOfNullableType``1(``0)
name: IsOfNullableType<T>(T)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsOfNullableType__1___0_
commentId: M:HarmonyLib.AccessTools.IsOfNullableType``1(``0)
name.vb: IsOfNullableType(Of T)(T)
fullName: HarmonyLib.AccessTools.IsOfNullableType<T>(T)
fullName.vb: HarmonyLib.AccessTools.IsOfNullableType(Of T)(T)
nameWithType: AccessTools.IsOfNullableType<T>(T)
nameWithType.vb: AccessTools.IsOfNullableType(Of T)(T)
- uid: HarmonyLib.AccessTools.IsStatic(System.Reflection.MemberInfo)
name: IsStatic(MemberInfo)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsStatic_System_Reflection_MemberInfo_
commentId: M:HarmonyLib.AccessTools.IsStatic(System.Reflection.MemberInfo)
fullName: HarmonyLib.AccessTools.IsStatic(System.Reflection.MemberInfo)
nameWithType: AccessTools.IsStatic(MemberInfo)
- uid: HarmonyLib.AccessTools.IsStatic*
name: IsStatic
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsStatic_
commentId: Overload:HarmonyLib.AccessTools.IsStatic
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsStatic
nameWithType: AccessTools.IsStatic
- uid: HarmonyLib.AccessTools.IsStruct(System.Type)
name: IsStruct(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsStruct_System_Type_
commentId: M:HarmonyLib.AccessTools.IsStruct(System.Type)
fullName: HarmonyLib.AccessTools.IsStruct(System.Type)
nameWithType: AccessTools.IsStruct(Type)
- uid: HarmonyLib.AccessTools.IsStruct*
name: IsStruct
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsStruct_
commentId: Overload:HarmonyLib.AccessTools.IsStruct
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsStruct
nameWithType: AccessTools.IsStruct
- uid: HarmonyLib.AccessTools.IsValue(System.Type)
name: IsValue(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsValue_System_Type_
commentId: M:HarmonyLib.AccessTools.IsValue(System.Type)
fullName: HarmonyLib.AccessTools.IsValue(System.Type)
nameWithType: AccessTools.IsValue(Type)
- uid: HarmonyLib.AccessTools.IsValue*
name: IsValue
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsValue_
commentId: Overload:HarmonyLib.AccessTools.IsValue
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsValue
nameWithType: AccessTools.IsValue
- uid: HarmonyLib.AccessTools.IsVoid(System.Type)
name: IsVoid(Type)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsVoid_System_Type_
commentId: M:HarmonyLib.AccessTools.IsVoid(System.Type)
fullName: HarmonyLib.AccessTools.IsVoid(System.Type)
nameWithType: AccessTools.IsVoid(Type)
- uid: HarmonyLib.AccessTools.IsVoid*
name: IsVoid
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_IsVoid_
commentId: Overload:HarmonyLib.AccessTools.IsVoid
isSpec: "True"
fullName: HarmonyLib.AccessTools.IsVoid
nameWithType: AccessTools.IsVoid
- uid: HarmonyLib.AccessTools.MakeDeepCopy(System.Object,System.Type,System.Func{System.String,HarmonyLib.Traverse,HarmonyLib.Traverse,System.Object},System.String)
name: MakeDeepCopy(Object, Type, Func<String, Traverse, Traverse, Object>, String)
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_MakeDeepCopy_System_Object_System_Type_System_Func_System_String_HarmonyLib_Traverse_HarmonyLib_Traverse_System_Object__System_String_
commentId: M:HarmonyLib.AccessTools.MakeDeepCopy(System.Object,System.Type,System.Func{System.String,HarmonyLib.Traverse,HarmonyLib.Traverse,System.Object},System.String)
name.vb: MakeDeepCopy(Object, Type, Func(Of String, Traverse, Traverse, Object), String)
fullName: HarmonyLib.AccessTools.MakeDeepCopy(System.Object, System.Type, System.Func<System.String, HarmonyLib.Traverse, HarmonyLib.Traverse, System.Object>, System.String)
fullName.vb: HarmonyLib.AccessTools.MakeDeepCopy(System.Object, System.Type, System.Func(Of System.String, HarmonyLib.Traverse, HarmonyLib.Traverse, System.Object), System.String)
nameWithType: AccessTools.MakeDeepCopy(Object, Type, Func<String, Traverse, Traverse, Object>, String)
nameWithType.vb: AccessTools.MakeDeepCopy(Object, Type, Func(Of String, Traverse, Traverse, Object), String)
- uid: HarmonyLib.AccessTools.MakeDeepCopy*
name: MakeDeepCopy
href: api/HarmonyLib.AccessTools.html#HarmonyLib_AccessTools_MakeDeepCopy_