forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.Reflection.Metadata.xml
More file actions
2921 lines (2875 loc) · 160 KB
/
System.Reflection.Metadata.xml
File metadata and controls
2921 lines (2875 loc) · 160 KB
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>System.Reflection.Metadata</name>
</assembly>
<members>
<member name="T:System.Reflection.Metadata.MetadataResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.AssemblyTableInvalidNumberOfRows">
<summary>
Looks up a localized string similar to Invalid number of rows of Assembly table: {0}..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.CantGetOffsetForVirtualHeapHandle">
<summary>
Looks up a localized string similar to Can't get a heap offset for a virtual heap handle.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.EnCMapNotSorted">
<summary>
Looks up a localized string similar to EnCMap table not sorted or has missing records..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.IllegalTablesInCompressedMetadataStream">
<summary>
Looks up a localized string similar to Illegal tables in compressed metadata stream..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.ImageTooSmall">
<summary>
Looks up a localized string similar to Image is too small..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.ImageTooSmallOrContainsInvalidOffsetOrCount">
<summary>
Looks up a localized string similar to Image is either too small or contains an invalid byte offset or count..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidCodedIndex">
<summary>
Looks up a localized string similar to Invalid coded index..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidCompressedInteger">
<summary>
Looks up a localized string similar to Invalid compressed integer..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidCorHeaderSize">
<summary>
Looks up a localized string similar to Invalid COR header size..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidHandle">
<summary>
Looks up a localized string similar to Invalid handle..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidLocalSignatureToken">
<summary>
Looks up a localized string similar to Invalid local signature token: 0x{0:X8}.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidMetadataSectionSpan">
<summary>
Looks up a localized string similar to Invalid metadata section span..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidMetadataStreamFormat">
<summary>
Looks up a localized string similar to Invalid Metadata stream format..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidMethodHeader1">
<summary>
Looks up a localized string similar to Invalid method header: 0x{0:X2}.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidMethodHeader2">
<summary>
Looks up a localized string similar to Invalid method header: 0x{0:X2} 0x{1:X2}.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidMethodRva">
<summary>
Looks up a localized string similar to Invalid relative virtual address (RVA): 0x{0:X8}.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidNumberOfSections">
<summary>
Looks up a localized string similar to Invalid number of sections in declared in PE header..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidPESignature">
<summary>
Looks up a localized string similar to Invalid PE signature..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidSectionName">
<summary>
Looks up a localized string similar to Invalid section name.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidSehHeader">
<summary>
Looks up a localized string similar to Invalid SEH header: 0x{0:X2}.
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidSerializedString">
<summary>
Looks up a localized string similar to Invalid serialized string..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidSignature">
<summary>
Looks up a localized string similar to Invalid signature..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.InvalidToken">
<summary>
Looks up a localized string similar to Invalid token..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.LitteEndianArchitectureRequired">
<summary>
Looks up a localized string similar to Little-endian architecture required..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MetadataHeaderTooSmall">
<summary>
Looks up a localized string similar to Metadata header too small..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MetadataImageDoesNotRepresentAnAssembly">
<summary>
Looks up a localized string similar to Metadata image doesn't represent an assembly..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MetadataSignature">
<summary>
Looks up a localized string similar to Invalid COR20 header signature..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MetadataStringDecoderEncodingMustBeUtf8">
<summary>
Looks up a localized string similar to The MetadataStringDecoder instance used to instantiate the Metadata reader must have a UTF8 encoding..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MetadataTableHeaderTooSmall">
<summary>
Looks up a localized string similar to Metadata table header too small..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MetadataTableNotSorted">
<summary>
Looks up a localized string similar to Metadata table 0x{0:x2} not sorted..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MetadataTablesTooSmall">
<summary>
Looks up a localized string similar to Metadata tables too small..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.MissingDataDirectory">
<summary>
Looks up a localized string similar to Missing data directory..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.ModuleTableInvalidNumberOfRows">
<summary>
Looks up a localized string similar to Invalid number of rows of Module table: {0}..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NegativeByteCountOrOffset">
<summary>
Looks up a localized string similar to Negative byte count or offset..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotEnoughSpaceForBlobStream">
<summary>
Looks up a localized string similar to Not enough space for Blob stream..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotEnoughSpaceForGUIDStream">
<summary>
Looks up a localized string similar to Not enough space for GUID stream..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotEnoughSpaceForMetadataStream">
<summary>
Looks up a localized string similar to Not enough space for Metadata stream..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotEnoughSpaceForStreamHeaderName">
<summary>
Looks up a localized string similar to Not enough space for stream header name..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotEnoughSpaceForStringStream">
<summary>
Looks up a localized string similar to Not enough space for String stream..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotEnoughSpaceForVersionString">
<summary>
Looks up a localized string similar to Not enough space for version string..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotMetadataHeapHandle">
<summary>
Looks up a localized string similar to Specified handle is not a valid metadata heap handle..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotMetadataTableHandle">
<summary>
Looks up a localized string similar to Specified handle is not a valid metadata table handle..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.NotMetadataTableOrUserStringHandle">
<summary>
Looks up a localized string similar to Specified handle is not a valid metadata table or UserString heap handle..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.OutOfBoundsRead">
<summary>
Looks up a localized string similar to Read out of bounds..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.PEImageDoesNotHaveMetadata">
<summary>
Looks up a localized string similar to PE image does not have metadata..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.PEImageNotAvailable">
<summary>
Looks up a localized string similar to PE image not available..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.RowIdOrHeapOffsetTooLarge">
<summary>
Looks up a localized string similar to Row ID or heap offset is too large..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.SectionTooSmall">
<summary>
Looks up a localized string similar to Section too small..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.StreamHeaderTooSmall">
<summary>
Looks up a localized string similar to Stream header too small..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.StreamMustSupportReadAndSeek">
<summary>
Looks up a localized string similar to Stream must support read and seek operations..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.StreamTooLarge">
<summary>
Looks up a localized string similar to Stream length minus starting position is too large to hold a PEImage..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.TableRowCountSpaceTooSmall">
<summary>
Looks up a localized string similar to Table row count space to small..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.UnableToReadMetadataFile">
<summary>
Looks up a localized string similar to Unable to read metadata file..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.UnexpectedStreamEnd">
<summary>
Looks up a localized string similar to Unexpected stream end..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.UnknownFileFormat">
<summary>
Looks up a localized string similar to Unknown file format..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.UnknownPEMagicValue">
<summary>
Looks up a localized string similar to Unknown PE Magic value..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.UnknownTables">
<summary>
Looks up a localized string similar to Unknown tables: 0x{0:x16}..
</summary>
</member>
<member name="P:System.Reflection.Metadata.MetadataResources.WinMDMissingMscorlibRef">
<summary>
Looks up a localized string similar to Missing mscorlib reference in AssemblyRef table..
</summary>
</member>
<member name="T:System.Reflection.Internal.AbstractMemoryBlock">
<summary>
Represents a disposable blob of memory accessed via unsafe pointer.
</summary>
</member>
<member name="M:System.Reflection.Internal.AbstractMemoryBlock.GetContent(System.Int32)">
<summary>
Returns the content of the memory block.
</summary>
<remarks>
Only creates a copy of the data if they are not represented by a managed byte array, or the offset is non-zero.
</remarks>
</member>
<member name="M:System.Reflection.Internal.AbstractMemoryBlock.Dispose">
<summary>
Disposes the block.
</summary>
<remarks>
The operation is idempotent, but must not be called concurrently with any other operations on the block
or with another call to Dispose.
Using the block after dispose is an error in our code and therefore no effort is made to throw a tidy
ObjectDisposedException and null ref or AV is possible.
</remarks>
</member>
<member name="P:System.Reflection.Internal.AbstractMemoryBlock.Pointer">
<summary>
Pointer to the underlying data (not valid after disposal).
</summary>
</member>
<member name="T:System.Reflection.Internal.ByteArrayMemoryBlock">
<summary>
Represents a memory block backed by an array of bytes.
</summary>
</member>
<member name="M:System.Reflection.Internal.MemoryBlockProvider.GetMemoryBlock">
<summary>
Creates and hydrates a memory block representing all data.
</summary>
<exception cref="T:System.IO.IOException">Error while reading from the memory source.</exception>
</member>
<member name="M:System.Reflection.Internal.MemoryBlockProvider.GetMemoryBlock(System.Int32,System.Int32)">
<summary>
Creates and hydrates a memory block representing data in the specified range.
</summary>
<param name="start">Starting offset relative to the beginning of the data represented by this provider.</param>
<param name="size">Size of the resulting block.</param>
<exception cref="T:System.IO.IOException">Error while reading from the memory source.</exception>
</member>
<member name="M:System.Reflection.Internal.MemoryBlockProvider.GetStream(System.Reflection.Internal.StreamConstraints@)">
<summary>
Gets a seekable and readable <see cref="T:System.IO.Stream"/> that can be used to read all data.
The operations on the stream has to be done under a lock of <see cref="F:System.Reflection.Internal.StreamConstraints.GuardOpt"/> if non-null.
The image starts at <see cref="F:System.Reflection.Internal.StreamConstraints.ImageStart"/> and has size <see cref="F:System.Reflection.Internal.StreamConstraints.ImageSize"/>.
It is the caller's responsibility not to read outside those bounds.
</summary>
</member>
<member name="P:System.Reflection.Internal.MemoryBlockProvider.Size">
<summary>
The size of the data.
</summary>
</member>
<member name="T:System.Reflection.Internal.ExternalMemoryBlock">
<summary>
Class representing raw memory but not owning the memory.
</summary>
</member>
<member name="T:System.Reflection.Internal.ExternalMemoryBlockProvider">
<summary>
Represents raw memory owned by an external object.
</summary>
</member>
<member name="T:System.Reflection.Internal.NativeHeapMemoryBlock">
<summary>
Represents memory block allocated on native heap.
</summary>
<remarks>
Owns the native memory resource.
</remarks>
</member>
<member name="T:System.Reflection.Internal.StreamMemoryBlockProvider">
<summary>
Represents data read from a stream.
</summary>
<remarks>
Uses memory map to load data from streams backed by files that are bigger than <see cref="F:System.Reflection.Internal.StreamMemoryBlockProvider.MemoryMapThreshold"/>.
</remarks>
</member>
<member name="M:System.Reflection.Internal.StreamMemoryBlockProvider.GetMemoryBlockImpl(System.Int32,System.Int32)">
<exception cref="T:System.IO.IOException">Error while reading from the stream.</exception>
</member>
<member name="T:System.Reflection.Internal.EncodingHelper">
<summary>
Provides helpers to decode strings from unmanaged memory to System.String while avoiding
intermediate allocation.
This has three components:
(1) Light-up Encoding.GetString(byte*, int) via reflection and resurface it as extension
method.
This is a new API that will provide API convergence across all platforms for
this scenario. It is already on .NET 4.5.3+ and ASP.NET vNext, but not yet available
on every platform we support. See below for how we fall back.
(2) Deal with WinRT prefixes.
When reading managed winmds with projections enabled, the metadata reader needs to prepend
a WinRT prefix in some case . Doing this without allocation poses a problem
as we don't have the prefix and input in contiguous data that we can pass to the
Encoding.GetString. We handle this case using pooled managed scratch buffers where we copy
the prefix and input and decode using Encoding.GetString(byte[], int, int).
(3) Deal with platforms that don't yet have Encoding.GetString(byte*, int).
If we're running on a full framework earlier than 4.5.3, we will bind to the internal
String.CreateStringFromEncoding which is equivalent and Encoding.GetString is just a trivial
wrapper around it in .NET 4.5.3. This means that we always have the fast path on every
full framework version we support.
If we can't bind to it via reflection, then we emulate it using what is effectively (2) and
with an empty prefix.
For both (2) and (3), the pooled buffers have a fixed size deemed large enough for the
vast majority of metadata strings. In the rare worst case (byteCount > threshold and
(lightUpAttemptFailed || prefix != null), we give up and allocate a temporary array,
copy to it, decode, and throw it away.
</summary>
</member>
<member name="T:System.Reflection.Internal.ImmutableByteArrayInterop">
<summary>
Provides tools for using <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> in interop scenarios.
</summary>
<remarks>
*** WARNING ***
If you decide to copy this code elsewhere, please retain the documentation here
and the Dangerous prefixes in the API names. This will help track down and audit
other places where this technique (with dangerous consequences when misused) may
be applied.
A generic version of this API was once public in a pre-release of immutable
collections, but it was deemed to be too subject to abuse when available publicly.
This implementation is scoped to byte arrays as that is all that the metadata reader needs.
Also, since we don't have access to immutable collection internals, we use a trick involving
overlapping a <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> with a <see cref="T:Byte[]"/> refer. While
unverifiable, it is valid. See Ecma 335, section II.10.7 Controlling instance layout:
"It is possible to overlap fields in this way, though offsets occupied by an object reference
shall not overlap with offsets occupied by a built-in value type or a part of
another object reference. While one object reference can completely overlap another, this is
unverifiable."
Furthermore, the fact that <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> backed by a single <see cref="T:Byte[]"/>
field is something inherent to the design of ImmutableArray in order to get its performance
characteristics and therefore something we (Microsoft) are comfortable defining as a contract that
can be depended upon as below.
</remarks>
</member>
<member name="M:System.Reflection.Internal.ImmutableByteArrayInterop.DangerousCreateFromUnderlyingArray(System.Byte[]@)">
<summary>
Creates a new instance of <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> using a given mutable array as the backing
field, without creating a defensive copy. It is the responsibility of the caller to ensure no other mutable
references exist to the array. Do not mutate the array after calling this method.
</summary>
<param name="array">The mutable array to use as the backing field. The incoming reference is set to null
since it should not be retained by the caller.</param>
<remarks>
Users of this method should take extra care to ensure that the mutable array given as a parameter
is never modified. The returned <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> will use the given array as its backing
field without creating a defensive copy, so changes made to the given mutable array will be observable
on the returned <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>. Instance and static methods of <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>
and <see cref="T:System.Collections.Immutable.ImmutableArray"/> may malfunction if they operate on an <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> instance
whose underlying backing field is modified.
</remarks>
<returns>An immutable array.</returns>
</member>
<member name="M:System.Reflection.Internal.ImmutableByteArrayInterop.DangerousGetUnderlyingArray(System.Collections.Immutable.ImmutableArray{System.Byte})">
<summary>
Access the backing mutable array instance for the given <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>, without
creating a defensive copy. It is the responsibility of the caller to ensure the array is not modified
through the returned mutable reference. Do not mutate the returned array.
</summary>
<param name="array">The <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> from which to retrieve the backing field.</param>
<remarks>
Users of this method should take extra care to ensure that the returned mutable array is never modified.
The returned mutable array continues to be used as the backing field of the given <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>
without creating a defensive copy, so changes made to the returned mutable array will be observable
on the given <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>. Instance and static methods of <see cref="T:System.Collections.Immutable.ImmutableArray`1"/>
and <see cref="T:System.Collections.Immutable.ImmutableArray"/> may malfunction if they operate on an <see cref="T:System.Collections.Immutable.ImmutableArray`1"/> instance
whose underlying backing field is modified.
</remarks>
<returns>The underlying array, or null if <see cref="P:System.Collections.Immutable.ImmutableArray`1.IsDefault"/> is true.</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.PeekCompressedInteger(System.Int32,System.Int32@)">
<summary>
Decodes a compressed integer value starting at offset.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<param name="offset">Offset to the start of the compressed data.</param>
<param name="numberOfBytesRead">Bytes actually read.</param>
<returns>
Value between 0 and 0x1fffffff, or <see cref="F:System.Reflection.Metadata.BlobReader.InvalidCompressedInteger"/> if the value encoding is invalid.
</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.PeekUtf8NullTerminated(System.Int32,System.Byte[],System.Reflection.Metadata.MetadataStringDecoder,System.Int32@,System.Char)">
<summary>
Read UTF8 at the given offset up to the given terminator, null terminator, or end-of-block.
</summary>
<param name="offset">Offset in to the block where the UTF8 bytes start.</param>
<param name="prefix">UTF8 encoded prefix to prepend to the bytes at the offset before decoding.</param>
<param name="utf8Decoder">The UTF8 decoder to use that allows user to adjust fallback and/or reuse existing strings without allocating a new one.</param>
<param name="numberOfBytesRead">The number of bytes read, which includes the terminator if we did not hit the end of the block.</param>
<param name="terminator">A character in the ASCII range that marks the end of the string.
If a value other than '\0' is passed we still stop at the null terminator if encountered first.</param>
<returns>The decoded string.</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.GetUtf8NullTerminatedLength(System.Int32,System.Int32@,System.Char)">
<summary>
Get number of bytes from offset to given terminator, null terminator, or end-of-block (whichever comes first).
Returned length does not include the terminator, but numberOfBytesRead out parameter does.
</summary>
<param name="offset">Offset in to the block where the UTF8 bytes start.</param>
<param name="terminator">A character in the ASCII range that marks the end of the string.
If a value other than '\0' is passed we still stop at the null terminator if encountered first.</param>
<param name="numberOfBytesRead">The number of bytes read, which includes the terminator if we did not hit the end of the block.</param>
<returns>Length (byte count) not including terminator.</returns>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.BinarySearchReferenceRange(System.UInt32,System.Int32,System.Int32,System.UInt32,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Calculates a range of rows that have specified value in the specified column in a table that is sorted by that column.
</summary>
</member>
<member name="M:System.Reflection.Internal.MemoryBlock.BinarySearchReferenceRange(System.UInt32[],System.Int32,System.Int32,System.UInt32,System.Boolean,System.Int32@,System.Int32@)">
<summary>
Calculates a range of rows that have specified value in the specified column in a table that is sorted by that column.
</summary>
</member>
<member name="T:System.Reflection.Internal.ObjectPool`1">
<summary>
Generic implementation of object pooling pattern with predefined pool size limit. The main
purpose is that limited number of frequently used objects can be kept in the pool for
further recycling.
Notes:
1) it is not the goal to keep all returned objects. Pool is not meant for storage. If there
is no space in the pool, extra returned objects will be dropped.
2) it is implied that if object was obtained from a pool, the caller will return it back in
a relatively short time. Keeping checked out objects for long durations is ok, but
reduces usefulness of pooling. Just new up your own.
Not returning objects to the pool in not detrimental to the pool's work, but is a bad practice.
Rationale:
If there is no intent for reusing the object, do not use pool - just use "new".
</summary>
</member>
<member name="M:System.Reflection.Internal.ObjectPool`1.Allocate">
<summary>
Produces an instance.
</summary>
<remarks>
Search strategy is a simple linear probing which is chosen for it cache-friendliness.
Note that Free will try to store recycled objects close to the start thus statistically
reducing how far we will typically search.
</remarks>
</member>
<member name="M:System.Reflection.Internal.ObjectPool`1.Free(`0)">
<summary>
Returns objects to the pool.
</summary>
<remarks>
Search strategy is a simple linear probing which is chosen for it cache-friendliness.
Note that Free will try to store recycled objects close to the start thus statistically
reducing how far we will typically search in Allocate.
</remarks>
</member>
<member name="M:System.Reflection.Internal.StreamExtensions.CopyTo(System.IO.Stream,System.Byte*,System.Int32)">
<summary>
Copies specified amount of data from given stream to a target memory pointer.
</summary>
<exception cref="T:System.IO.IOException">unexpected stream end.</exception>
</member>
<member name="P:System.Reflection.Metadata.AssemblyFile.ContainsMetadata">
<summary>
True if the file contains metadata.
</summary>
<remarks>
Corresponds to Flags field of File table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.AssemblyFile.Name">
<summary>
File name with extension.
</summary>
<remarks>
Corresponds to Name field of File table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.AssemblyFile.HashValue">
<summary>
Hash value of the file content calculated using <see cref="P:System.Reflection.Metadata.AssemblyDefinition.HashAlgorithm"/>.
</summary>
<remarks>
Corresponds to HashValue field of File table in ECMA-335 Standard.
</remarks>
</member>
<member name="F:System.Reflection.Metadata.BlobReader._nullCharArray">
<summary>An array containing the '\0' character.</summary>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadUTF8(System.Int32)">
<summary>
Reads UTF8 encoded string starting at the current position.
</summary>
<param name="byteCount">The number of bytes to read.</param>
<returns>The string.</returns>
<exception cref="T:System.BadImageFormatException"><paramref name="byteCount"/> bytes not available.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadUTF16(System.Int32)">
<summary>
Reads UTF16 (little-endian) encoded string starting at the current position.
</summary>
<param name="byteCount">The number of bytes to read.</param>
<returns>The string.</returns>
<exception cref="T:System.BadImageFormatException"><paramref name="byteCount"/> bytes not available.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadBytes(System.Int32)">
<summary>
Reads bytes starting at the current position.
</summary>
<param name="byteCount">The number of bytes to read.</param>
<returns>The byte array.</returns>
<exception cref="T:System.BadImageFormatException"><paramref name="byteCount"/> bytes not available.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.TryReadCompressedInteger(System.Int32@)">
<summary>
Reads an unsigned compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<param name="value">The value of the compressed integer that was read.</param>
<returns>true if the value was read successfully. false if the data at the current position was not a valid compressed integer.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadCompressedInteger">
<summary>
Reads an unsigned compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<returns>The value of the compressed integer that was read.</returns>
<exception cref="T:System.BadImageFormatException">The data at the current position was not a valid compressed integer.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.TryReadCompressedSignedInteger(System.Int32@)">
<summary>
Reads a signed compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<param name="value">The value of the compressed integer that was read.</param>
<returns>true if the value was read successfully. false if the data at the current position was not a valid compressed integer.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadCompressedSignedInteger">
<summary>
Reads a signed compressed integer value.
See Metadata Specification section II.23.2: Blobs and signatures.
</summary>
<returns>The value of the compressed integer that was read.</returns>
<exception cref="T:System.BadImageFormatException">The data at the current position was not a valid compressed integer.</exception>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadSerializationTypeCode">
<summary>
Reads type code encoded in a serialized custom attribute value.
</summary>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadSignatureTypeCode">
<summary>
Reads type code encoded in a signature.
</summary>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadSerializedString">
<summary>
Reads a string encoded as a compressed integer containing its length followed by
its contents in UTF8. Null strings are encoded as a single 0xFF byte.
</summary>
<remarks>Defined as a 'SerString' in the Ecma CLI specification.</remarks>
<returns>String value or null.</returns>
</member>
<member name="M:System.Reflection.Metadata.BlobReader.ReadTypeHandle">
<summary>
Reads a type handle encoded in a signature as (CLASS | VALUETYPE) TypeDefOrRefOrSpecEncoded.
</summary>
<returns>The handle or nil if the encoding is invalid.</returns>
</member>
<member name="P:System.Reflection.Metadata.Constant.TypeCode">
<summary>
The type of the constant value.
</summary>
<remarks>
Corresponds to Type field of Constant table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.Constant.Value">
<summary>
The constant value.
</summary>
<remarks>
Corresponds to Value field of Constant table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.Constant.Parent">
<summary>
The parent handle (<see cref="T:System.Reflection.Metadata.ParameterHandle"/>, <see cref="T:System.Reflection.Metadata.FieldDefinitionHandle"/>, or <see cref="T:System.Reflection.Metadata.PropertyDefinitionHandle"/>).
</summary>
<remarks>
Corresponds to Parent field of Constant table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.CustomAttribute.Constructor">
<summary>
The constructor (<see cref="T:System.Reflection.Metadata.MethodDefinitionHandle"/> or <see cref="T:System.Reflection.Metadata.MemberReferenceHandle"/>) of the custom attribute type.
</summary>
<remarks>
Corresponds to Type field of CustomAttribute table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.CustomAttribute.Parent">
<summary>
The handle of the metadata entity the attribute is applied to.
</summary>
<remarks>
Corresponds to Parent field of CustomAttribute table in ECMA-335 Standard.
</remarks>
</member>
<member name="P:System.Reflection.Metadata.CustomAttribute.Value">
<summary>
The value of the attribute.
</summary>
<remarks>
Corresponds to Value field of CustomAttribute table in ECMA-335 Standard.
</remarks>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.ExportedTypeExtensions">
<summary>
Provides an extension method to access the TypeDefinitionId column of the ExportedType table.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.ExportedTypeExtensions.GetTypeDefinitionId(System.Reflection.Metadata.ExportedType)">
<summary>
Gets a hint at the likely row number of the target type in the TypeDef table of its module.
If the namespaces and names do not match, resolution falls back to a full search of the
target TypeDef table. Ignored and should be zero if <see cref="P:System.Reflection.Metadata.ExportedType.IsForwarder"/> is
true.
</summary>
</member>
<member name="T:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions">
<summary>
Provides extension methods for working with certain raw elements of the Ecma 335 metadata tables and heaps.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTableRowCount(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.TableIndex)">
<summary>
Returns the number of rows in the specified table.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTableRowSize(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.TableIndex)">
<summary>
Returns the size of a row in the specified table.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTableMetadataOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.TableIndex)">
<summary>
Returns the offset from the start of metadata to the specified table.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetHeapSize(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.HeapIndex)">
<summary>
Returns the size of the specified heap.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="heapIndex"/> is not a valid heap index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetHeapMetadataOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.HeapIndex)">
<summary>
Returns the offset from the start of metadata to the specified heap.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="heapIndex"/> is not a valid heap index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetMetadataBlock(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Ecma335.HeapIndex)">
<summary>
Returns the size of the specified heap.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="heapIndex"/> is not a valid heap index.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetNextHandle(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.UserStringHandle)">
<summary>
Returns the a handle to the UserString that follows the given one in the UserString heap or a nil handle if it is the last one.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetNextHandle(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.BlobHandle)">
<summary>
Returns the a handle to the Blob that follows the given one in the Blob heap or a nil handle if it is the last one.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetNextHandle(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.StringHandle)">
<summary>
Returns the a handle to the String that follows the given one in the String heap or a nil handle if it is the last one.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetEditAndContinueLogEntries(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerates entries of EnC log.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetEditAndContinueMapEntries(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerates entries of EnC map.
</summary>
<exception cref="T:System.ArgumentNullException"><paramref name="reader"/> is null.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTypesWithProperties(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerate types that define one or more properties.
</summary>
<returns>
The resulting sequence corresponds exactly to entries in PropertyMap table,
i.e. n-th returned <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> is stored in n-th row of PropertyMap.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataReaderExtensions.GetTypesWithEvents(System.Reflection.Metadata.MetadataReader)">
<summary>
Enumerate types that define one or more events.
</summary>
<returns>
The resulting sequence corresponds exactly to entries in EventMap table,
i.e. n-th returned <see cref="T:System.Reflection.Metadata.TypeDefinitionHandle"/> is stored in n-th row of EventMap.
</returns>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataTokens.TableCount">
<summary>
Maximum number of tables that can be present in Ecma335 metadata.
</summary>
</member>
<member name="F:System.Reflection.Metadata.Ecma335.MetadataTokens.HeapCount">
<summary>
Maximum number of tables that can be present in Ecma335 metadata.
</summary>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetRowNumber(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)">
<summary>
Returns the row number of a metadata table entry that corresponds
to the specified <paramref name="handle"/> in the context of <paramref name="reader"/>.
</summary>
<returns>One based row number.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="handle"/> is not a valid metadata table handle.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/> in the context of <paramref name="reader"/>.
</summary>
<returns>Zero based offset, or -1 if <paramref name="handle"/> isn't a metadata heap handle.</returns>
<exception cref="T:System.NotSupportedException">The operation is not supported for the specified <paramref name="handle"/>.</exception>
<exception cref="T:System.ArgumentException">The <paramref name="handle"/> is invalid.</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)">
<summary>
Returns the metadata token of the specified <paramref name="handle"/> in the context of <paramref name="reader"/>.
</summary>
<returns>Metadata token.</returns>
<exception cref="T:System.ArgumentException">
Handle represents a metadata entity that doesn't have a token.
A token can only be retrieved for a metadata table handle or a heap handle of type <see cref="F:System.Reflection.Metadata.HandleKind.UserString"/>.
</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetRowNumber(System.Reflection.Metadata.Handle)">
<summary>
Returns the row number of a metadata table entry that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
One based row number, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetRowNumber(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.Handle)">
<summary>
Returns the offset of metadata heap data that corresponds
to the specified <paramref name="handle"/>.
</summary>
<returns>
Zero based offset, or -1 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetHeapOffset(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.Handle)">
<summary>
Returns the metadata token of the specified <paramref name="handle"/>.
</summary>
<returns>
Metadata token, or 0 if <paramref name="handle"/> can only be interpreted in a context of a specific <see cref="T:System.Reflection.Metadata.MetadataReader"/>.
See <see cref="M:System.Reflection.Metadata.Ecma335.MetadataTokens.GetToken(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle)"/>.
</returns>
<exception cref="T:System.ArgumentException">
Handle represents a metadata entity that doesn't have a token.
A token can only be retrieved for a metadata table handle or a heap handle of type <see cref="F:System.Reflection.Metadata.HandleKind.UserString"/>.
</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.TryGetTableIndex(System.Reflection.Metadata.HandleKind,System.Reflection.Metadata.Ecma335.TableIndex@)">
<summary>
Gets the <see cref="T:System.Reflection.Metadata.Ecma335.TableIndex"/> of the table corresponding to the specified <see cref="T:System.Reflection.Metadata.HandleKind"/>.
</summary>
<param name="type">Handle type.</param>
<param name="index">Table index.</param>
<returns>True if the handle type corresponds to an Ecma335 table, false otherwise.</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.TryGetHeapIndex(System.Reflection.Metadata.HandleKind,System.Reflection.Metadata.Ecma335.HeapIndex@)">
<summary>
Gets the <see cref="T:System.Reflection.Metadata.Ecma335.HeapIndex"/> of the heap corresponding to the specified <see cref="T:System.Reflection.Metadata.HandleKind"/>.
</summary>
<param name="type">Handle type.</param>
<param name="index">Heap index.</param>
<returns>True if the handle type corresponds to an Ecma335 heap, false otherwise.</returns>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.Handle(System.Int32)">
<summary>
Creates a handle from a token value.
</summary>
<exception cref="T:System.ArgumentException">
<paramref name="token"/> is not a valid metadata token.
It must encode a metadata table entity or an offset in <see cref="F:System.Reflection.Metadata.HandleKind.UserString"/> heap.
</exception>
</member>
<member name="M:System.Reflection.Metadata.Ecma335.MetadataTokens.Handle(System.Reflection.Metadata.Ecma335.TableIndex,System.Int32)">
<summary>
Creates a handle from a token value.
</summary>
<exception cref="T:System.ArgumentException">
<paramref name="tableIndex"/> is not a valid table index.</exception>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.TryOffset">
<summary>
Start IL offset of the try block.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.TryLength">
<summary>
Length in bytes of try block.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.HandlerOffset">
<summary>
Start IL offset of the exception handler.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.HandlerLength">
<summary>
Length in bytes of the exception handler.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.FilterOffset">
<summary>
IL offset of the start of the filter block, or -1 if the region is not a filter.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExceptionRegion.CatchType">
<summary>
Returns a TypeRef, TypeDef, or TypeSpec handle if the region represents a catch, nil token otherwise.
</summary>
</member>
<member name="P:System.Reflection.Metadata.ExportedType.Implementation">
<summary>
Handle to resolve the implementation of the target type.
</summary>
<returns>
<list type="bullet">
<item><description><see cref="T:System.Reflection.Metadata.AssemblyFileHandle"/> representing another module in the assembly.</description></item>
<item><description><see cref="T:System.Reflection.Metadata.AssemblyReferenceHandle"/> representing another assembly if <see cref="P:System.Reflection.Metadata.ExportedType.IsForwarder"/> is true.</description></item>