-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathcorerror.xml
2188 lines (1817 loc) · 91.1 KB
/
corerror.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<Root><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns='xsdResources'
targetNamespace='xsdResources'>
<xs:element name="ResourceStrings">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="HRESULT">
<xs:complexType>
<xs:sequence>
<xs:element name="SymbolicName" type="xs:string" />
<xs:element minOccurs="0" name="Message" type="xs:string" />
<xs:element minOccurs="0" name="Comment" type="xs:string" />
</xs:sequence>
<xs:attribute name="NumericValue" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
<hc:ResourceStrings xmlns:hc="xsdResources">
<!-- -->
<!-- This XML file is used to generate the public header file corerror.h -->
<!-- and resource file msgurt.rc. All new HRESULT declarations should be added to this XML. -->
<!-- -->
<!-- IMPORTANT***IMPORTANT***IMPORTANT -->
<!-- -->
<!-- All CLR error codes should be in -->
<!-- HRESULT NumericValue="0x......" format -->
<!-- -->
<!-- These HRESULTs are used for mapping managed exceptions to COM error codes -->
<!-- and vice versa through COM Interop. For background on COM error codes see -->
<!-- http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/error_9td2.asp. -->
<!-- The range (0x8013xxxx) and (0x13xxxx) is reserved for the .NET Framework SDK teams. -->
<!-- Within that range, the following subranges have been allocated for different feature areas: -->
<!-- 0x10yy for Execution Engine -->
<!-- 0x11yy for Metadata, TypeLib Export, and CLDB -->
<!-- 0x12yy for MetaData Validator -->
<!-- 0x13yy for Debugger and Profiler errors -->
<!-- 0x14yy for Security -->
<!-- 0x15yy for BCL-->
<!-- 0x1600 - 0x161F for Reflection -->
<!-- 0x1620 - 0x163F for System.IO -->
<!-- 0x1640 - 0x165F for Security -->
<!-- 0x1660 - 0x16FF for BCL -->
<!-- 0x17yy for shim -->
<!-- 0x18yy for IL Verifier -->
<!-- 0x19yy for .NET Framework -->
<!-- 0x1Ayy for .NET Framework -->
<!-- 0x1Byy for MetaData Validator -->
<!-- 0x1Cyy for more debugger errors -->
<!-- 0x1Dyy for PE Format Validation -->
<!-- 0x1Eyy for CLR Optimization Service errors -->
<!-- 0x1Fyy for NGEN errors -->
<!-- 0x30yy for VSA errors -->
<!-- 0x31yy for NGEN errors -->
<!-- 0x32yy for binder errors -->
<!-- Base class library HRESULTs are copied from this file into many different -->
<!-- files named __HResults.cs under the BCL directory. Frameworks HRESULTs are -->
<!-- defined in src/main/HResults.cs. If you make any modifications to -->
<!-- the range allocations described above, please make sure this xml file gets updated. -->
<!-- -->
<HRESULT NumericValue="0x131106">
<SymbolicName>CLDB_S_TRUNCATION</SymbolicName>
<Comment> STATUS: Data value was truncated. </Comment>
</HRESULT>
<HRESULT NumericValue="0x131197">
<SymbolicName>META_S_DUPLICATE</SymbolicName>
<Comment> Attempt to define an object that already exists in valid scenerios. </Comment>
</HRESULT>
<HRESULT NumericValue="0x13130b">
<SymbolicName>CORDBG_S_BAD_START_SEQUENCE_POINT</SymbolicName>
<Comment> Attempt to SetIP not at a sequence point sequence point. </Comment>
</HRESULT>
<HRESULT NumericValue="0x13130c">
<SymbolicName>CORDBG_S_BAD_END_SEQUENCE_POINT</SymbolicName>
<Comment> Attempt to SetIP when not going to a sequence point. If both this and CORDBG_E_BAD_START_SEQUENCE_POINT are true, only CORDBG_E_BAD_START_SEQUENCE_POINT will be reported.</Comment>
</HRESULT>
<HRESULT NumericValue="0x131316">
<SymbolicName>CORDBG_S_FUNC_EVAL_HAS_NO_RESULT</SymbolicName>
<Comment> Some Func evals will lack a return value, </Comment>
</HRESULT>
<HRESULT NumericValue="0x131317">
<SymbolicName>CORDBG_S_VALUE_POINTS_TO_VOID</SymbolicName>
<Comment> The Debugging API doesn't support dereferencing void pointers. </Comment>
</HRESULT>
<HRESULT NumericValue="0x131319">
<SymbolicName>CORDBG_S_FUNC_EVAL_ABORTED</SymbolicName>
<Comment> The func eval completed, but was aborted. </Comment>
</HRESULT>
<HRESULT NumericValue="0x131324">
<SymbolicName>CORDBG_S_AT_END_OF_STACK</SymbolicName>
<Message>"The stack walk has reached the end of the stack. There are no more frames to walk."</Message>
<Comment> The stack walk has reached the end of the stack. There are no more frames to walk. </Comment>
</HRESULT>
<HRESULT NumericValue="0x131c13">
<SymbolicName>CORDBG_S_NOT_ALL_BITS_SET</SymbolicName>
<Comment> Not all bits specified were successfully applied </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131013">
<SymbolicName>COR_E_TYPEUNLOADED</SymbolicName>
<Message>"Type has been unloaded."</Message>
<Comment> The type had been unloaded.</Comment>
</HRESULT>
<HRESULT NumericValue="0x80131014">
<SymbolicName>COR_E_APPDOMAINUNLOADED</SymbolicName>
<Message>"Attempted to access an unloaded appdomain."</Message>
<Comment> access unloaded appdomain </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131015">
<SymbolicName>COR_E_CANNOTUNLOADAPPDOMAIN</SymbolicName>
<Message>"Error while unloading appdomain."</Message>
<Comment> Error while unloading an appdomain </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131016">
<SymbolicName>MSEE_E_ASSEMBLYLOADINPROGRESS</SymbolicName>
<Message>"Assembly is still being loaded."</Message>
<Comment> Assembly is being currently being loaded </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131018">
<SymbolicName>COR_E_ASSEMBLYEXPECTED</SymbolicName>
<Message>"The module was expected to contain an assembly manifest."</Message>
<Comment> The module was expected to contain an assembly manifest.</Comment>
</HRESULT>
<HRESULT NumericValue="0x8013101b">
<SymbolicName>COR_E_NEWER_RUNTIME</SymbolicName>
<Message>"This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded."</Message>
<Comment> The assembly is built by a runtime newer than the currently loaded runtime, and cannot be loaded. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013101e">
<SymbolicName>COR_E_MULTIMODULEASSEMBLIESDIALLOWED</SymbolicName>
<Message>"The module cannot be loaded because only single file assemblies are supported."</Message>
<Comment> The module cannot be loaded because only single file assemblies are supported. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131022">
<SymbolicName>HOST_E_INVALIDOPERATION</SymbolicName>
<Message>"Invalid operation."</Message>
<Comment> The operation is invalid </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131023">
<SymbolicName>HOST_E_CLRNOTAVAILABLE</SymbolicName>
<Message>"CLR has been disabled due to unrecoverable error."</Message>
<Comment> CLR has been disabled due to unrecoverable error </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131040">
<SymbolicName>FUSION_E_REF_DEF_MISMATCH</SymbolicName>
<Message>"The located assembly's manifest definition does not match the assembly reference."</Message>
<Comment> The located assembly's manifest definition does not match the assembly reference. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131047">
<SymbolicName>FUSION_E_INVALID_NAME</SymbolicName>
<Message>"The given assembly name was invalid."</Message>
<Comment> The given assembly name was invalid. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131053">
<SymbolicName>FUSION_E_APP_DOMAIN_LOCKED</SymbolicName>
<Message>"The requested assembly version conflicts with what is already bound in the app domain or specified in the manifest."</Message>
<Comment> The requested assembly version conflicts with what is already bound in the app domain or specified in the manifest </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131058">
<SymbolicName>COR_E_LOADING_REFERENCE_ASSEMBLY</SymbolicName>
<Message>"Reference assemblies cannot be loaded for execution."</Message>
<Comment> Reference assemblies cannot be loaded for execution </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013106A">
<SymbolicName>COR_E_AMBIGUOUSIMPLEMENTATION</SymbolicName>
<Message>"Ambiguous implementation found."</Message>
<Comment> Ambiguous implementation found </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131100">
<SymbolicName>CLDB_E_FILE_BADREAD</SymbolicName>
<Message>"Error occurred during a read."</Message>
<Comment> Error occurred during a read. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131101">
<SymbolicName>CLDB_E_FILE_BADWRITE</SymbolicName>
<Message>"Error occurred during a write."</Message>
<Comment> Error occurred during a write. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131107">
<SymbolicName>CLDB_E_FILE_OLDVER</SymbolicName>
<Message>"Old version error."</Message>
<Comment> Old version error. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013110a">
<SymbolicName>CLDB_E_SMDUPLICATE</SymbolicName>
<Message>"Create of shared memory failed. A memory mapping of the same name already exists."</Message>
<Comment> Create of shared memory failed. A memory mapping of the same name already exists. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013110b">
<SymbolicName>CLDB_E_NO_DATA</SymbolicName>
<Message>"No .CLB data in the memory or stream."</Message>
<Comment> There isn't .CLB data in the memory or stream. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013110d">
<SymbolicName>CLDB_E_INCOMPATIBLE</SymbolicName>
<Message>"Importing scope is not compatible with the emitting scope."</Message>
<Comment> The importing scope is not comptabile with the emitting scope </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013110e">
<SymbolicName>CLDB_E_FILE_CORRUPT</SymbolicName>
<Message>"File is corrupt."</Message>
<Comment> File is corrupt. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131110">
<SymbolicName>CLDB_E_BADUPDATEMODE</SymbolicName>
<Message>"Cannot open a incrementally build scope for full update."</Message>
<Comment> cannot open a incrementally build scope for full update </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131124">
<SymbolicName>CLDB_E_INDEX_NOTFOUND</SymbolicName>
<Message>"Index not found."</Message>
<Comment> Index %s not found. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131130">
<SymbolicName>CLDB_E_RECORD_NOTFOUND</SymbolicName>
<Message>"Record not found on lookup."</Message>
<Comment> Record wasn't found on lookup. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131135">
<SymbolicName>CLDB_E_RECORD_OUTOFORDER</SymbolicName>
<Message>"Record is emitted out of order."</Message>
<Comment> Record is emitted out of order. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131154">
<SymbolicName>CLDB_E_TOO_BIG</SymbolicName>
<Message>"A blob or string was too big."</Message>
<Comment> A blob or string was too big. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013115f">
<SymbolicName>META_E_INVALID_TOKEN_TYPE</SymbolicName>
<Message>"A token of the wrong type passed to a metadata function."</Message>
<Comment> A token of the wrong type passed to a metadata function. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131165">
<SymbolicName>TLBX_E_LIBNOTREGISTERED</SymbolicName>
<Message>"Typelib export: Type library is not registered."</Message>
<Comment> Typelib export: type library is not registered. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013118a">
<SymbolicName>META_E_BADMETADATA</SymbolicName>
<Message>"Merge: Inconsistency in meta data import scope."</Message>
<Comment> Merge: Inconsistency in meta data import scope </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131192">
<SymbolicName>META_E_BAD_SIGNATURE</SymbolicName>
<Message>"Bad binary signature."</Message>
<Comment> Bad binary signature </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131193">
<SymbolicName>META_E_BAD_INPUT_PARAMETER</SymbolicName>
<Message>"Bad input parameters."</Message>
<Comment> Bad input parameters </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131196">
<SymbolicName>META_E_CANNOTRESOLVETYPEREF</SymbolicName>
<Message>"Cannot resolve typeref."</Message>
<Comment> Cannot resolve typeref </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131198">
<SymbolicName>META_E_STRINGSPACE_FULL</SymbolicName>
<Message>"No logical space left to create more user strings."</Message>
<Comment> No logical space left to create more user strings. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013119a">
<SymbolicName>META_E_HAS_UNMARKALL</SymbolicName>
<Message>"Unmark all has been called already."</Message>
<Comment> Unmark all has been called already </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013119b">
<SymbolicName>META_E_MUST_CALL_UNMARKALL</SymbolicName>
<Message>"Must call UnmarkAll first before marking."</Message>
<Comment> Must call UnmarkAll first before marking. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c0">
<SymbolicName>META_E_CA_INVALID_TARGET</SymbolicName>
<Message>"Known custom attribute on invalid target."</Message>
<Comment> Known custom attribute on invalid target. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c1">
<SymbolicName>META_E_CA_INVALID_VALUE</SymbolicName>
<Message>"Known custom attribute had invalid value."</Message>
<Comment> Known custom attribute had invalid value. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c2">
<SymbolicName>META_E_CA_INVALID_BLOB</SymbolicName>
<Message>"Known custom attribute blob has bad format."</Message>
<Comment> Known custom attribute blob is bad format. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c3">
<SymbolicName>META_E_CA_REPEATED_ARG</SymbolicName>
<Message>"Known custom attribute blob has repeated named argument."</Message>
<Comment> Known custom attribute blob has repeated named argument. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c4">
<SymbolicName>META_E_CA_UNKNOWN_ARGUMENT</SymbolicName>
<Message>"Known custom attribute named argument not recognized."</Message>
<Comment> Known custom attrubte named arg not recognized. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c7">
<SymbolicName>META_E_CA_UNEXPECTED_TYPE</SymbolicName>
<Message>"Known attribute parser found unexpected type."</Message>
<Comment> Known attribute parser found unexpected type. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c8">
<SymbolicName>META_E_CA_INVALID_ARGTYPE</SymbolicName>
<Message>"Known attribute parser only handles fields, not properties."</Message>
<Comment> Known attribute parser only handles fields -- no properties. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311c9">
<SymbolicName>META_E_CA_INVALID_ARG_FOR_TYPE</SymbolicName>
<Message>"Known attribute parser found an argument that is invalid for the object it is applied to."</Message>
<Comment> Known attribute parser found an argument that is invalid for the object it is applied to. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311ca">
<SymbolicName>META_E_CA_INVALID_UUID</SymbolicName>
<Message>"The format of the UUID was invalid."</Message>
<Comment> The format of the UUID was invalid. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311cb">
<SymbolicName>META_E_CA_INVALID_MARSHALAS_FIELDS</SymbolicName>
<Message>"The MarshalAs attribute has fields set that are not valid for the specified unmanaged type."</Message>
<Comment> The MarshalAs attribute has fields set that are not valid for the specified unmanaged type. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311cc">
<SymbolicName>META_E_CA_NT_FIELDONLY</SymbolicName>
<Message>"The specified unmanaged type is only valid on fields."</Message>
<Comment> The specified unmanaged type is only valid on fields. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311cd">
<SymbolicName>META_E_CA_NEGATIVE_PARAMINDEX</SymbolicName>
<Message>"The parameter index cannot be negative."</Message>
<Comment> The parameter index cannot be negative. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311cf">
<SymbolicName>META_E_CA_NEGATIVE_CONSTSIZE</SymbolicName>
<Message>"The constant size cannot be negative."</Message>
<Comment> The constant size cannot be negative. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311d0">
<SymbolicName>META_E_CA_FIXEDSTR_SIZE_REQUIRED</SymbolicName>
<Message>"A fixed string requires a size."</Message>
<Comment> A fixed string requires a size. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311d1">
<SymbolicName>META_E_CA_CUSTMARSH_TYPE_REQUIRED</SymbolicName>
<Message>"A custom marshaler requires the custom marshaler type."</Message>
<Comment> A custom marshaler requires the custom marshaler type. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311d4">
<SymbolicName>META_E_NOT_IN_ENC_MODE</SymbolicName>
<Message>"SaveDelta was called without being in EnC mode."</Message>
<Comment> SaveDelta was called without being in EnC mode </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311e5">
<SymbolicName>META_E_CA_BAD_FRIENDS_ARGS</SymbolicName>
<Message>"InternalsVisibleTo can't have a version, culture, or processor architecture."</Message>
<Comment> InternalsVisibleTo can't have a version, culture, or processor architecture. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801311e6">
<SymbolicName>META_E_CA_FRIENDS_SN_REQUIRED</SymbolicName>
<Comment> Strong-name signed assemblies can only grant friend access to strong name-signed assemblies </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131203">
<SymbolicName>VLDTR_E_RID_OUTOFRANGE</SymbolicName>
<Message>"Rid is out of range."</Message>
<Comment> Rid is out of range. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131206">
<SymbolicName>VLDTR_E_STRING_INVALID</SymbolicName>
<Message>"String offset is invalid."</Message>
<Comment> String offset is invalid. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131207">
<SymbolicName>VLDTR_E_GUID_INVALID</SymbolicName>
<Message>"GUID offset is invalid."</Message>
<Comment> GUID offset is invalid. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131208">
<SymbolicName>VLDTR_E_BLOB_INVALID</SymbolicName>
<Message>"Blob offset if invalid."</Message>
<Comment> Blob offset if invalid. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131224">
<SymbolicName>VLDTR_E_MR_BADCALLINGCONV</SymbolicName>
<Message>"MemberRef has invalid calling convention."</Message>
<Comment> MemberRef has invalid calling convention. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131237">
<SymbolicName>VLDTR_E_SIGNULL</SymbolicName>
<Message>"Signature specified is zero-sized."</Message>
<Comment> Signature specified is zero-sized. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131239">
<SymbolicName>VLDTR_E_MD_BADCALLINGCONV</SymbolicName>
<Message>"Method signature has invalid calling convention."</Message>
<Comment> Method signature has invalid calling convention. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013123a">
<SymbolicName>VLDTR_E_MD_THISSTATIC</SymbolicName>
<Message>"Method is marked static but has HASTHIS/EXPLICITTHIS set on the calling convention."</Message>
<Comment> Method is marked static but has HASTHIS/EXPLICITTHIS set on the calling convention. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013123b">
<SymbolicName>VLDTR_E_MD_NOTTHISNOTSTATIC</SymbolicName>
<Message>"Method is not marked static but is not HASTHIS or EXPLICITTHIS."</Message>
<Comment> Method is not marked static but is not HASTHIS/EXPLICITTHIS. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013123c">
<SymbolicName>VLDTR_E_MD_NOARGCNT</SymbolicName>
<Message>"Method signature is missing the argument count."</Message>
<Comment> Method signature is missing the argument count. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013123d">
<SymbolicName>VLDTR_E_SIG_MISSELTYPE</SymbolicName>
<Message>"Signature missing element type."</Message>
<Comment> Signature missing element type. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013123e">
<SymbolicName>VLDTR_E_SIG_MISSTKN</SymbolicName>
<Message>"Signature missing token."</Message>
<Comment> Signature missing token. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013123f">
<SymbolicName>VLDTR_E_SIG_TKNBAD</SymbolicName>
<Message>"Signature has bad token."</Message>
<Comment> Signature has bad token. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131240">
<SymbolicName>VLDTR_E_SIG_MISSFPTR</SymbolicName>
<Message>"Signature is missing function pointer."</Message>
<Comment> Signature is missing function pointer. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131241">
<SymbolicName>VLDTR_E_SIG_MISSFPTRARGCNT</SymbolicName>
<Message>"Signature has function pointer missing argument count."</Message>
<Comment> Signature has function pointer missing argument count. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131242">
<SymbolicName>VLDTR_E_SIG_MISSRANK</SymbolicName>
<Message>"Signature is missing rank specification."</Message>
<Comment> Signature is missing rank specification. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131243">
<SymbolicName>VLDTR_E_SIG_MISSNSIZE</SymbolicName>
<Message>"Signature is missing count of sized dimensions."</Message>
<Comment> Signature is missing count of sized dimensions. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131244">
<SymbolicName>VLDTR_E_SIG_MISSSIZE</SymbolicName>
<Message>"Signature is missing size of dimension."</Message>
<Comment> Signature is missing size of dimension. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131245">
<SymbolicName>VLDTR_E_SIG_MISSNLBND</SymbolicName>
<Message>"Signature is missing count of lower bounds."</Message>
<Comment> Signature is missing count of lower bounds. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131246">
<SymbolicName>VLDTR_E_SIG_MISSLBND</SymbolicName>
<Message>"Signature is missing a lower bound."</Message>
<Comment> Signature is missing a lower bound. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131247">
<SymbolicName>VLDTR_E_SIG_BADELTYPE</SymbolicName>
<Message>"Signature has bad element type."</Message>
<Comment> Signature has bad element type. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131256">
<SymbolicName>VLDTR_E_TD_ENCLNOTNESTED</SymbolicName>
<Message>"TypeDef not nested has encloser."</Message>
<Comment> TypeDef not nested has encloser. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131277">
<SymbolicName>VLDTR_E_FMD_PINVOKENOTSTATIC</SymbolicName>
<Message>"Field or method is PInvoke but is not marked Static."</Message>
<Comment> Field/method is PInvoke but is not marked Static. </Comment>
</HRESULT>
<HRESULT NumericValue="0x801312df">
<SymbolicName>VLDTR_E_SIG_SENTINMETHODDEF</SymbolicName>
<Message>"E_T_SENTINEL in MethodDef signature."</Message>
<Comment> E_T_SENTINEL in MethodDef signature </Comment>
</HRESULT>
<HRESULT NumericValue="0x801312e0">
<SymbolicName>VLDTR_E_SIG_SENTMUSTVARARG</SymbolicName>
<Message>"E_T_SENTINEL <=> VARARG."</Message>
<Comment> E_T_SENTINEL <=> VARARG </Comment>
</HRESULT>
<HRESULT NumericValue="0x801312e1">
<SymbolicName>VLDTR_E_SIG_MULTSENTINELS</SymbolicName>
<Message>"Multiple E_T_SENTINELs."</Message>
<Comment> Multiple E_T_SENTINELs </Comment>
</HRESULT>
<HRESULT NumericValue="0x801312e3">
<SymbolicName>VLDTR_E_SIG_MISSARG</SymbolicName>
<Message>"Signature missing argument."</Message>
<Comment> Signature missing argument </Comment>
</HRESULT>
<HRESULT NumericValue="0x801312e4">
<SymbolicName>VLDTR_E_SIG_BYREFINFIELD</SymbolicName>
<Message>"Field of ByRef type."</Message>
<Comment> Field of ByRef type </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131300">
<SymbolicName>CORDBG_E_UNRECOVERABLE_ERROR</SymbolicName>
<Message>"Unrecoverable API error."</Message>
<Comment> Unrecoverable API error. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131301">
<SymbolicName>CORDBG_E_PROCESS_TERMINATED</SymbolicName>
<Message>"Process was terminated."</Message>
<Comment> Process was terminated. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131302">
<SymbolicName>CORDBG_E_PROCESS_NOT_SYNCHRONIZED</SymbolicName>
<Message>"Process not synchronized."</Message>
<Comment> Process not synchronized. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131303">
<SymbolicName>CORDBG_E_CLASS_NOT_LOADED</SymbolicName>
<Message>"A class is not loaded."</Message>
<Comment> A class is not loaded. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131304">
<SymbolicName>CORDBG_E_IL_VAR_NOT_AVAILABLE</SymbolicName>
<Message>"An IL variable is not available at the current native IP."</Message>
<Comment> An IL variable is not available at the </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131305">
<SymbolicName>CORDBG_E_BAD_REFERENCE_VALUE</SymbolicName>
<Message>"A reference value was found to be bad during dereferencing."</Message>
<Comment> A reference value was found to be bad </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131306">
<SymbolicName>CORDBG_E_FIELD_NOT_AVAILABLE</SymbolicName>
<Message>"A field in a class is not available, because the runtime optimized it away."</Message>
<Comment> A field in a class is not available, </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131307">
<SymbolicName>CORDBG_E_NON_NATIVE_FRAME</SymbolicName>
<Message>"'Native-frame-only' operation on non-native frame."</Message>
<Comment> "Native frame only" operation on </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131309">
<SymbolicName>CORDBG_E_CODE_NOT_AVAILABLE</SymbolicName>
<Message>"The code is currently unavailable."</Message>
<Comment> The code is currently unavailable </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013130a">
<SymbolicName>CORDBG_E_FUNCTION_NOT_IL</SymbolicName>
<Message>"Attempt to get a ICorDebugFunction for a function that is not IL."</Message>
<Comment> Attempt to get a ICorDebugFunction for </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013130e">
<SymbolicName>CORDBG_E_CANT_SET_IP_INTO_FINALLY</SymbolicName>
<Message>"SetIP is not possible because SetIP would move EIP from outside of an exception handling finally clause to a point inside of one."</Message>
<Comment> SetIP isn't possible, because SetIP would </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013130f">
<SymbolicName>CORDBG_E_CANT_SET_IP_OUT_OF_FINALLY</SymbolicName>
<Message>"SetIP is not possible because it would move EIP from within an exception handling finally clause to a point outside of one."</Message>
<Comment> SetIP isn't possible because it would move </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131310">
<SymbolicName>CORDBG_E_CANT_SET_IP_INTO_CATCH</SymbolicName>
<Message>"SetIP is not possible, because SetIP would move EIP from outside of an exception handling catch clause to a point inside of one."</Message>
<Comment> SetIP isn't possible, because SetIP would </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131311">
<SymbolicName>CORDBG_E_SET_IP_NOT_ALLOWED_ON_NONLEAF_FRAME</SymbolicName>
<Message>"SetIP cannot be done on any frame except the leaf frame."</Message>
<Comment> Setip cannot be done on any frame except </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131312">
<SymbolicName>CORDBG_E_SET_IP_IMPOSSIBLE</SymbolicName>
<Message>"SetIP is not allowed."</Message>
<Comment> SetIP isn't allowed. For example, there is </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131313">
<SymbolicName>CORDBG_E_FUNC_EVAL_BAD_START_POINT</SymbolicName>
<Message>"Func eval cannot work. Bad starting point."</Message>
<Comment> Func eval can't work if we're, for example, </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131314">
<SymbolicName>CORDBG_E_INVALID_OBJECT</SymbolicName>
<Message>"This object value is no longer valid."</Message>
<Comment> This object value is no longer valid. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131315">
<SymbolicName>CORDBG_E_FUNC_EVAL_NOT_COMPLETE</SymbolicName>
<Message>"CordbEval::GetResult called before func eval has finished."</Message>
<Comment> If you call CordbEval::GetResult before the </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013131a">
<SymbolicName>CORDBG_E_STATIC_VAR_NOT_AVAILABLE</SymbolicName>
<Message>"A static variable is not available because it has not been initialized yet."</Message>
<Comment> A static variable isn't available because </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013131c">
<SymbolicName>CORDBG_E_CANT_SETIP_INTO_OR_OUT_OF_FILTER</SymbolicName>
<Message>"SetIP cannot leave or enter a filter."</Message>
<Comment> SetIP can't leave or enter a filter </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013131d">
<SymbolicName>CORDBG_E_CANT_CHANGE_JIT_SETTING_FOR_ZAP_MODULE</SymbolicName>
<Message>"JIT settings for ZAP modules cannot be changed."</Message>
<Comment> You can't change JIT settings for ZAP </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013131e">
<SymbolicName>CORDBG_E_CANT_SET_IP_OUT_OF_FINALLY_ON_WIN64</SymbolicName>
<Message>"SetIP is not possible because it would move EIP from within a finally clause to a point outside of one on this platforms."</Message>
<Comment> SetIP isn't possible because it would move </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013131f">
<SymbolicName>CORDBG_E_CANT_SET_IP_OUT_OF_CATCH_ON_WIN64</SymbolicName>
<Message>"SetIP is not possible because it would move EIP from within a catch clause to a point outside of one on this platforms."</Message>
<Comment> SetIP isn't possible because it would move </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131323">
<SymbolicName>CORDBG_E_CANT_SET_TO_JMC</SymbolicName>
<Message>"Cannot use JMC on this code (likely wrong JIT settings)."</Message>
<Comment> Can't use JMC on this code (likely wrong jit settings). </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131325">
<SymbolicName>CORDBG_E_NO_CONTEXT_FOR_INTERNAL_FRAME</SymbolicName>
<Message>"Internal frame markers have no associated context."</Message>
<Comment> Internal frame markers have no associated context. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131326">
<SymbolicName>CORDBG_E_NOT_CHILD_FRAME</SymbolicName>
<Message>"The current frame is not a child frame."</Message>
<Comment> The current frame is not a child frame. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131327">
<SymbolicName>CORDBG_E_NON_MATCHING_CONTEXT</SymbolicName>
<Message>"The provided CONTEXT does not match the specified thread."</Message>
<Comment> The provided CONTEXT does not match the specified thread.
The stack pointer in the provided CONTEXT must match the cached stack base and stack limit of the thread.
</Comment>
</HRESULT>
<HRESULT NumericValue="0x80131328">
<SymbolicName>CORDBG_E_PAST_END_OF_STACK</SymbolicName>
<Message>"The stackwalker is now past the end of stack. No information is available."</Message>
<Comment> The stackwalker is now past the end of stack. No information is available. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131329">
<SymbolicName>CORDBG_E_FUNC_EVAL_CANNOT_UPDATE_REGISTER_IN_NONLEAF_FRAME</SymbolicName>
<Message>"Func eval cannot update a variable stored in a register on a non-leaf frame. The most likely cause is that such a variable is passed as a ref/out argument."</Message>
<Comment> Func eval cannot update a variable stored in a register on a non-leaf frame. The most likely cause is that such a variable is passed as a ref/out argument. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013132d">
<SymbolicName>CORDBG_E_BAD_THREAD_STATE</SymbolicName>
<Message>"The state of the thread is invalid."</Message>
<Comment> The state of the thread is invalid. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013132e">
<SymbolicName>CORDBG_E_DEBUGGER_ALREADY_ATTACHED</SymbolicName>
<Message>"This process has already been attached."</Message>
<Comment> This process has already been attached to </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013132f">
<SymbolicName>CORDBG_E_SUPERFLOUS_CONTINUE</SymbolicName>
<Message>"Returned from a call to Continue that was not matched with a stopping event."</Message>
<Comment> Returned from a call to Continue that was </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131330">
<SymbolicName>CORDBG_E_SET_VALUE_NOT_ALLOWED_ON_NONLEAF_FRAME</SymbolicName>
<Message>"Cannot perfrom SetValue on non-leaf frames."</Message>
<Comment> Can't perfrom SetValue on non-leaf frames. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131332">
<SymbolicName>CORDBG_E_ENC_MODULE_NOT_ENC_ENABLED</SymbolicName>
<Message>"Tried to do Edit and Continue on a module that was not started in Edit and Continue mode."</Message>
<Comment> Tried to do EnC on a module that wasn't </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131333">
<SymbolicName>CORDBG_E_SET_IP_NOT_ALLOWED_ON_EXCEPTION</SymbolicName>
<Message>"SetIP cannot be done on any exception."</Message>
<Comment> Setip cannot be done on any exception </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131334">
<SymbolicName>CORDBG_E_VARIABLE_IS_ACTUALLY_LITERAL</SymbolicName>
<Message>"The 'variable' does not exist because it is a literal optimized away by the compiler."</Message>
<Comment> The 'variable' doesn't exist because it is a </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131335">
<SymbolicName>CORDBG_E_PROCESS_DETACHED</SymbolicName>
<Message>"Process has been detached."</Message>
<Comment> Process has been detached from </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131338">
<SymbolicName>CORDBG_E_ENC_CANT_ADD_FIELD_TO_VALUE_OR_LAYOUT_CLASS</SymbolicName>
<Message>"Adding a field to a value or layout class is prohibited."</Message>
<Comment> Adding a field to a value or layout class is prohibitted, </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013133b">
<SymbolicName>CORDBG_E_FIELD_NOT_STATIC</SymbolicName>
<Message>"GetStaticFieldValue called on a non-static field."</Message>
<Comment> Returned if someone tries to call GetStaticFieldValue </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013133c">
<SymbolicName>CORDBG_E_FIELD_NOT_INSTANCE</SymbolicName>
<Message>"Returned if someone tries to call GetStaticFieldValue on a non-instance field."</Message>
<Comment> Returned if someone tries to call GetStaticFieldValue </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013133f">
<SymbolicName>CORDBG_E_ENC_JIT_CANT_UPDATE</SymbolicName>
<Message>"The JIT is unable to update the method."</Message>
<Comment> The JIT is unable to update the method. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131341">
<SymbolicName>CORDBG_E_ENC_INTERNAL_ERROR</SymbolicName>
<Message>"Internal Runtime Error while doing Edit-and-Continue."</Message>
<Comment> Generic message for "Something user doesn't control went wrong" message. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131342">
<SymbolicName>CORDBG_E_ENC_HANGING_FIELD</SymbolicName>
<Message>"The field was added via Edit and Continue after the class was loaded."</Message>
<Comment> The field was added via EnC after the class was loaded, and so instead of the field being contiguous with the other fields, it's 'hanging' off the instance or type. This error is used to indicate that either the storage for this field is not yet available and so the field value cannot be read, or the debugger needs to use an EnC specific code path to get the value.</Comment>
</HRESULT>
<HRESULT NumericValue="0x80131343">
<SymbolicName>CORDBG_E_MODULE_NOT_LOADED</SymbolicName>
<Message>"Module not loaded."</Message>
<Comment> If the module isn't loaded, including if it's been unloaded. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131345">
<SymbolicName>CORDBG_E_UNABLE_TO_SET_BREAKPOINT</SymbolicName>
<Message>"Cannot set a breakpoint here."</Message>
<Comment> Can't set a breakpoint here. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131346">
<SymbolicName>CORDBG_E_DEBUGGING_NOT_POSSIBLE</SymbolicName>
<Message>"Debugging is not possible due to an incompatibility within the CLR implementation."</Message>
<Comment> Debugging isn't possible due to an incompatibility within the CLR implementation. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131347">
<SymbolicName>CORDBG_E_KERNEL_DEBUGGER_ENABLED</SymbolicName>
<Message>"A kernel debugger is enabled on the system. User-mode debugging will trap to the kernel debugger."</Message>
<Comment> Debugging isn't possible because a kernel debugger is enabled on the system. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131348">
<SymbolicName>CORDBG_E_KERNEL_DEBUGGER_PRESENT</SymbolicName>
<Message>"A kernel debugger is present on the system. User-mode debugging will trap to the kernel debugger."</Message>
<Comment> Debugging isn't possible because a kernel debugger is present on the system. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013134b">
<SymbolicName>CORDBG_E_INCOMPATIBLE_PROTOCOL</SymbolicName>
<Message>"The debugger's protocol is incompatible with the debuggee."</Message>
<Comment> The debugger's protocol is incompatible with the debuggee. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013134c">
<SymbolicName>CORDBG_E_TOO_MANY_PROCESSES</SymbolicName>
<Message>"The debugger can only handle a finite number of debuggees."</Message>
<Comment> The debugger can only handle a finite number of debuggees. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013134d">
<SymbolicName>CORDBG_E_INTEROP_NOT_SUPPORTED</SymbolicName>
<Message>"Interop debugging is not supported."</Message>
<Comment> Interop debugging is not supported </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013134e">
<SymbolicName>CORDBG_E_NO_REMAP_BREAKPIONT</SymbolicName>
<Message>"Cannot call RemapFunction until have received RemapBreakpoint."</Message>
<Comment> Cannot call RemapFunction until have received RemapBreakpoint </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013134f">
<SymbolicName>CORDBG_E_OBJECT_NEUTERED</SymbolicName>
<Message>"Object is in a zombie state."</Message>
<Comment> Object has been neutered (it's in a zombie state). </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131350">
<SymbolicName>CORPROF_E_FUNCTION_NOT_COMPILED</SymbolicName>
<Message>"Function not yet compiled."</Message>
<Comment> Function not yet compiled. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131351">
<SymbolicName>CORPROF_E_DATAINCOMPLETE</SymbolicName>
<Message>"The ID is not fully loaded/defined yet."</Message>
<Comment> The ID is not fully loaded/defined yet. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131354">
<SymbolicName>CORPROF_E_FUNCTION_NOT_IL</SymbolicName>
<Message>"The Method has no associated IL."</Message>
<Comment> The Method has no associated IL </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131355">
<SymbolicName>CORPROF_E_NOT_MANAGED_THREAD</SymbolicName>
<Message>"The thread has never run managed code before."</Message>
<Comment> The thread has never run managed code before </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131356">
<SymbolicName>CORPROF_E_CALL_ONLY_FROM_INIT</SymbolicName>
<Message>"The function may only be called during profiler initialization."</Message>
<Comment> The function may only be called during profiler init </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013135b">
<SymbolicName>CORPROF_E_NOT_YET_AVAILABLE</SymbolicName>
<Message>"Requested information is not yet available."</Message>
<Comment> This is a general error used to indicated that the information </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013135c">
<SymbolicName>CORPROF_E_TYPE_IS_PARAMETERIZED</SymbolicName>
<Message>"The given type is a generic and cannot be used with this method."</Message>
<Comment> The given type is a generic and cannot be used with this method. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013135d">
<SymbolicName>CORPROF_E_FUNCTION_IS_PARAMETERIZED</SymbolicName>
<Message>"The given function is a generic and cannot be used with this method."</Message>
<Comment> The given function is a generic and cannot be used with this method. </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013135e">
<SymbolicName>CORPROF_E_STACKSNAPSHOT_INVALID_TGT_THREAD</SymbolicName>
<Comment> A profiler tried to walk the stack of an invalid thread </Comment>
</HRESULT>
<HRESULT NumericValue="0x8013135f">
<SymbolicName>CORPROF_E_STACKSNAPSHOT_UNMANAGED_CTX</SymbolicName>
<Comment> A profiler can not walk a thread that is currently executing unmanaged code </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131360">
<SymbolicName>CORPROF_E_STACKSNAPSHOT_UNSAFE</SymbolicName>
<Comment> A stackwalk at this point may cause dead locks or data corruption </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131361">
<SymbolicName>CORPROF_E_STACKSNAPSHOT_ABORTED</SymbolicName>
<Comment> Stackwalking callback requested the walk to abort </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131362">
<SymbolicName>CORPROF_E_LITERALS_HAVE_NO_ADDRESS</SymbolicName>
<Comment> Returned when asked for the address of a static that is a literal. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131363">
<SymbolicName>CORPROF_E_UNSUPPORTED_CALL_SEQUENCE</SymbolicName>
<Comment> A call was made at an unsupported time. Examples include illegally calling a profiling API method asynchronously, calling a method that might trigger a GC at an unsafe time, and calling a method at a time that could cause locks to be taken out of order. </Comment>
</HRESULT>
<HRESULT NumericValue="0x80131364">
<SymbolicName>CORPROF_E_ASYNCHRONOUS_UNSAFE</SymbolicName>