-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Expand file tree
/
Copy path.openpublishing.redirection.fundamentals.json
More file actions
1289 lines (1289 loc) · 64.4 KB
/
Copy path.openpublishing.redirection.fundamentals.json
File metadata and controls
1289 lines (1289 loc) · 64.4 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
{
"redirections": [
{
"source_path_from_root": "/docs/fundamentals/apicompat/package-validation/diagnostic-ids.md",
"redirect_url": "/dotnet/fundamentals/apicompat/diagnostic-ids"
},
{
"source_path_from_root": "/docs/fundamentals/apicompat/preview-apis.md",
"redirect_url": "/dotnet/fundamentals/runtime-libraries/preview-apis"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/ca1071.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/quality-rules/index"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/ca1865.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/quality-rules/ca1865-ca1867"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/ca1866.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/quality-rules/ca1865-ca1867"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/ca1867.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/quality-rules/ca1865-ca1867"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/il3000.md",
"redirect_url": "/dotnet/core/deploying/single-file/warnings/il3000"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/il3001.md",
"redirect_url": "/dotnet/core/deploying/single-file/warnings/il3001"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/il3002.md",
"redirect_url": "/dotnet/core/deploying/single-file/warnings/il3002"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/il3003.md",
"redirect_url": "/dotnet/core/deploying/single-file/warnings/il3003"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/publish-warnings.md",
"redirect_url": "/dotnet/core/deploying/single-file/warnings/overview"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/quality-rules/singlefile-warnings.md",
"redirect_url": "/dotnet/core/deploying/single-file/warnings/overview"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/code-block-preferences.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/language-rules"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/expression-bodied-members.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/language-rules"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/expression-level-preferences.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/language-rules"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/formatting-rules.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0055"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0003.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0003-ide0009"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0007.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0007-ide0008"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0008.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0007-ide0008"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0009.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0003-ide0009"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0020.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0020-ide0038"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0023.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0023-ide0024"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0024.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0023-ide0024"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0029-ide0030.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0029-ide0030-ide0270"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0029.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0029-ide0030-ide0270"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0030.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0029-ide0030-ide0270"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0038.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0020-ide0038"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0047.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0047-ide0048"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0048.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0047-ide0048"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0054.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0054-ide0074"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0074.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0054-ide0074"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0078.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0078-ide0260"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0160.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0160-ide0161"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0161.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0160-ide0161"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0260.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0078-ide0260"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0270.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0029-ide0030-ide0270"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0390.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0390-ide0391"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide0391.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/ide0390-ide0391"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/ide1006.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/naming-rules"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/modifier-preferences.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/language-rules"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/null-checking-preferences.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/language-rules"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/pattern-matching-preferences.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/language-rules"
},
{
"source_path_from_root": "/docs/fundamentals/code-analysis/style-rules/unnecessary-code-rules.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/style-rules/language-rules"
},
{
"source_path_from_root": "/docs/fundamentals/networking/http/http-autoclient.md",
"redirect_url": "/dotnet/fundamentals/networking/http/http-overview"
},
{
"source_path_from_root": "/docs/fundamentals/networking/httpclient-guidelines.md",
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient-guidelines"
},
{
"source_path_from_root": "/docs/fundamentals/networking/httpclient.md",
"redirect_url": "/dotnet/fundamentals/networking/http/httpclient"
},
{
"source_path_from_root": "/docs/fundamentals/networking/networking-telemetry.md",
"redirect_url": "/dotnet/fundamentals/networking/telemetry/overview"
},
{
"source_path_from_root": "/docs/fundamentals/package-validation/baseline-version-validator.md",
"redirect_url": "/dotnet/fundamentals/apicompat/package-validation/baseline-version-validator",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/fundamentals/package-validation/compatible-framework-in-package-validator.md",
"redirect_url": "/dotnet/fundamentals/apicompat/package-validation/compatible-framework-in-package-validator",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/fundamentals/package-validation/compatible-framework-validator.md",
"redirect_url": "/dotnet/fundamentals/apicompat/package-validation/compatible-framework-validator",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/fundamentals/package-validation/diagnostic-ids.md",
"redirect_url": "/dotnet/fundamentals/apicompat/diagnostic-ids",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/fundamentals/package-validation/overview.md",
"redirect_url": "/dotnet/fundamentals/apicompat/package-validation/overview",
"redirect_document_id": true
},
{
"source_path_from_root": "/docs/fundamentals/productivity/code-analysis.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/overview"
},
{
"source_path_from_root": "/docs/fundamentals/productivity/configure-code-analysis-rules.md",
"redirect_url": "/dotnet/fundamentals/code-analysis/configuration-options"
},
{
"source_path_from_root": "/docs/fundamentals/reflection/reflection.md",
"redirect_url": "/dotnet/fundamentals/reflection/overview"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/microsoft-win32-registry.md",
"redirect_url": "/dotnet/api/microsoft.win32.registry"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-accessviolationexception.md",
"redirect_url": "/dotnet/api/system.accessviolationexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-appcontext.md",
"redirect_url": "/dotnet/api/system.appcontext"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-appdomain-unhandledexception.md",
"redirect_url": "/dotnet/api/system.appdomain.unhandledexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-boolean.md",
"redirect_url": "/dotnet/api/system.boolean"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-byte.md",
"redirect_url": "/dotnet/api/system.byte"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-char.md",
"redirect_url": "/dotnet/api/system.char"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-collections-generic-hashset{t}.md",
"redirect_url": "/dotnet/api/system.collections.generic.hashset-1"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-collections-generic-list{t}.md",
"redirect_url": "/dotnet/api/system.collections.generic.list-1"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-collections-objectmodel-keyedcollection{tkey,titem}-changeitemkey.md",
"redirect_url": "/dotnet/api/system.collections.objectmodel.keyedcollection-2.changeitemkey"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-collections-objectmodel-observablecollection{t}.md",
"redirect_url": "/dotnet/api/system.collections.objectmodel.observablecollection-1"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-console.md",
"redirect_url": "/dotnet/api/system.console"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-convert.md",
"redirect_url": "/dotnet/api/system.convert"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-data-commandbehavior.md",
"redirect_url": "/dotnet/api/system.data.commandbehavior"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-data-datacolumn-expression.md",
"redirect_url": "/dotnet/api/system.data.datacolumn.expression"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-data-dataset.md",
"redirect_url": "/dotnet/api/system.data.dataset"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-data-datatable.md",
"redirect_url": "/dotnet/api/system.data.datatable"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-data-linq-dataloadoptions.md",
"redirect_url": "/dotnet/framework/data/adonet/sql/linq/"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-data-linq-mapping-tableattribute.md",
"redirect_url": "/dotnet/framework/data/adonet/sql/linq/"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-datetime-tobinary.md",
"redirect_url": "/dotnet/api/system.datetime.tobinary"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-datetime-tryparse.md",
"redirect_url": "/dotnet/api/system.datetime.tryparse"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-datetime.md",
"redirect_url": "/dotnet/api/system.datetime"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-decimal.md",
"redirect_url": "/dotnet/api/system.decimal"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-delegate-createdelegate.md",
"redirect_url": "/dotnet/api/system.delegate.createdelegate"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-diagnostics-performancecountertype.md",
"redirect_url": "/dotnet/api/system.diagnostics.performancecountertype"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-diagnostics-processstartinfo-useshellexecute.md",
"redirect_url": "/dotnet/api/system.diagnostics.processstartinfo.useshellexecute"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-diagnostics-tracing-eventsource.md",
"redirect_url": "/dotnet/api/system.diagnostics.tracing.eventsource"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-diagnostics-tracing-eventwritteneventargs.md",
"redirect_url": "/dotnet/api/system.diagnostics.tracing.eventwritteneventargs"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-double-compareto.md",
"redirect_url": "/dotnet/api/system.double.compareto"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-double-epsilon.md",
"redirect_url": "/dotnet/api/system.double.epsilon"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-double-equals.md",
"redirect_url": "/dotnet/api/system.double.equals"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-double.md",
"redirect_url": "/dotnet/api/system.double"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-drawing-drawing2d-matrix.md",
"redirect_url": "/dotnet/api/system.drawing.drawing2d.matrix"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-dynamic-expandoobject.md",
"redirect_url": "/dotnet/api/system.dynamic.expandoobject"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-enum.md",
"redirect_url": "/dotnet/api/system.enum"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-environment-getenvironmentvariable.md",
"redirect_url": "/dotnet/api/system.environment.getenvironmentvariable"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-exception-data.md",
"redirect_url": "/dotnet/api/system.exception.data"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-exception-message.md",
"redirect_url": "/dotnet/api/system.exception.message"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-exception.md",
"redirect_url": "/dotnet/api/system.exception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-flagsattribute.md",
"redirect_url": "/dotnet/api/system.flagsattribute"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-gc.md",
"redirect_url": "/dotnet/api/system.gc"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-compareinfo.md",
"redirect_url": "/dotnet/api/system.globalization.compareinfo"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-compareoptions.md",
"redirect_url": "/dotnet/api/system.globalization.compareoptions"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-cultureandregioninfobuilder-ctor.md",
"redirect_url": "/dotnet/api/system.globalization.cultureandregioninfobuilder.ctor"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-cultureandregioninfobuilder.md",
"redirect_url": "/dotnet/api/system.globalization.cultureandregioninfobuilder"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-cultureinfo-currentculture.md",
"redirect_url": "/dotnet/api/system.globalization.cultureinfo.currentculture"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-cultureinfo-currentuiculture.md",
"redirect_url": "/dotnet/api/system.globalization.cultureinfo.currentuiculture"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-cultureinfo-invariantculture.md",
"redirect_url": "/dotnet/api/system.globalization.cultureinfo.invariantculture"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-cultureinfo.md",
"redirect_url": "/dotnet/api/system.globalization.cultureinfo"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-datetimeformatinfo.md",
"redirect_url": "/dotnet/api/system.globalization.datetimeformatinfo"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-numberformatinfo.md",
"redirect_url": "/dotnet/api/system.globalization.numberformatinfo"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-persiancalendar.md",
"redirect_url": "/dotnet/api/system.globalization.persiancalendar"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-regioninfo.md",
"redirect_url": "/dotnet/api/system.globalization.regioninfo"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-sortkey.md",
"redirect_url": "/dotnet/api/system.globalization.sortkey"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-globalization-sortversion.md",
"redirect_url": "/dotnet/api/system.globalization.sortversion"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-iasyncdisposable.md",
"redirect_url": "/dotnet/api/system.iasyncdisposable"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-idisposable.md",
"redirect_url": "/dotnet/api/system.idisposable"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-int32.md",
"redirect_url": "/dotnet/api/system.int32"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-int64.md",
"redirect_url": "/dotnet/api/system.int64"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-invalidcastexception.md",
"redirect_url": "/dotnet/api/system.invalidcastexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-invalidoperationexception.md",
"redirect_url": "/dotnet/api/system.invalidoperationexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-io-filestream.md",
"redirect_url": "/dotnet/api/system.io.filestream"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-io-filesystemwatcher.md",
"redirect_url": "/dotnet/api/system.io.filesystemwatcher"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-linq-expressions-binaryexpression.md",
"redirect_url": "/dotnet/api/system.linq.expressions.binaryexpression"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-linq-expressions-expression-add.md",
"redirect_url": "/dotnet/api/system.linq.expressions.expression.add"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-midpointrounding.md",
"redirect_url": "/dotnet/api/system.midpointrounding"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-net-ftpwebrequest-proxy.md",
"redirect_url": "/dotnet/api/system.net.ftpwebrequest.proxy"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-net-http-httpclient.md",
"redirect_url": "/dotnet/api/system.net.http.httpclient"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-net-http-httpclienthandler.md",
"redirect_url": "/dotnet/api/system.net.http.httpclienthandler"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-net-httplistener.md",
"redirect_url": "/dotnet/api/system.net.httplistener"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-net-sockets-socket.md",
"redirect_url": "/dotnet/api/system.net.sockets.socket"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-notimplementedexception.md",
"redirect_url": "/dotnet/api/system.notimplementedexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-notsupportedexception.md",
"redirect_url": "/dotnet/api/system.notsupportedexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-nullable.md",
"redirect_url": "/dotnet/api/system.nullable"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-nullable{t}.md",
"redirect_url": "/dotnet/api/system.nullable-1"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-numerics-biginteger.md",
"redirect_url": "/dotnet/api/system.numerics.biginteger"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-numerics-complex.md",
"redirect_url": "/dotnet/api/system.numerics.complex"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-object-equals.md",
"redirect_url": "/dotnet/api/system.object.equals"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-object-finalize.md",
"redirect_url": "/dotnet/api/system.object.finalize"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-object-gethashcode.md",
"redirect_url": "/dotnet/api/system.object.gethashcode"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-object-tostring.md",
"redirect_url": "/dotnet/api/system.object.tostring"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-object.md",
"redirect_url": "/dotnet/api/system.object"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-random.md",
"redirect_url": "/dotnet/api/system.random"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-context-customreflectioncontext.md",
"redirect_url": "/dotnet/api/system.reflection.context.customreflectioncontext"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-assemblybuilder.md",
"redirect_url": "/dotnet/api/system.reflection.emit.assemblybuilder"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-dynamicilinfo.md",
"redirect_url": "/dotnet/api/system.reflection.emit.dynamicilinfo"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-dynamicmethod-createdelegate.md",
"redirect_url": "/dotnet/api/system.reflection.emit.dynamicmethod.createdelegate"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-dynamicmethod-ctor.md",
"redirect_url": "/dotnet/api/system.reflection.emit.dynamicmethod.ctor"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-dynamicmethod-getilgenerator.md",
"redirect_url": "/dotnet/api/system.reflection.emit.dynamicmethod.getilgenerator"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-dynamicmethod-invoke.md",
"redirect_url": "/dotnet/api/system.reflection.emit.dynamicmethod.invoke"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-dynamicmethod-issecuritycritical.md",
"redirect_url": "/dotnet/api/system.reflection.emit.dynamicmethod.issecuritycritical"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-dynamicmethod.md",
"redirect_url": "/dotnet/api/system.reflection.emit.dynamicmethod"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-methodbuilder.md",
"redirect_url": "/dotnet/api/system.reflection.emit.methodbuilder"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-persistedassemblybuilder.md",
"redirect_url": "/dotnet/api/system.reflection.emit.persistedassemblybuilder"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-emit-typebuilder.md",
"redirect_url": "/dotnet/api/system.reflection.emit.typebuilder"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-reflection-portableexecutable-debugdirectoryentrytype.md",
"redirect_url": "/dotnet/api/system.reflection.portableexecutable.debugdirectoryentrytype"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-missingmanifestresourceexception.md",
"redirect_url": "/dotnet/api/system.resources.missingmanifestresourceexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-neutralresourceslanguageattribute.md",
"redirect_url": "/dotnet/api/system.resources.neutralresourceslanguageattribute"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-resourcemanager-ctor.md",
"redirect_url": "/dotnet/api/system.resources.resourcemanager.ctor"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-resourcemanager-getobject.md",
"redirect_url": "/dotnet/api/system.resources.resourcemanager.getobject"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-resourcemanager-getstring.md",
"redirect_url": "/dotnet/api/system.resources.resourcemanager.getstring"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-resourcemanager.md",
"redirect_url": "/dotnet/api/system.resources.resourcemanager"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-resourcereader.md",
"redirect_url": "/dotnet/api/system.resources.resourcereader"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-resources-satellitecontractversionattribute.md",
"redirect_url": "/dotnet/api/system.resources.satellitecontractversionattribute"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-compilerservices-internalsvisibletoattribute.md",
"redirect_url": "/dotnet/api/system.runtime.compilerservices.internalsvisibletoattribute"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-compilerservices-runtimehelpers-gethashcode.md",
"redirect_url": "/dotnet/api/system.runtime.compilerservices.runtimehelpers.gethashcode"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-interopservices-comexception.md",
"redirect_url": "/dotnet/api/system.runtime.interopservices.comexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-interopservices-comwrappers.md",
"redirect_url": "/dotnet/api/system.runtime.interopservices.comwrappers"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-interopservices-icustommarshaler.md",
"redirect_url": "/dotnet/api/system.runtime.interopservices.icustommarshaler"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-interopservices-marshal-getactiveobject.md",
"redirect_url": "/dotnet/api/system.runtime.interopservices.marshal.getactiveobject"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-interopservices-safehandle.md",
"redirect_url": "/dotnet/api/system.runtime.interopservices.safehandle"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-loader-assemblyloadcontext.md",
"redirect_url": "/dotnet/api/system.runtime.loader.assemblyloadcontext"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-serialization-datacontractattribute.md",
"redirect_url": "/dotnet/api/system.runtime.serialization.datacontractattribute"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-serialization-datacontractserializer.md",
"redirect_url": "/dotnet/api/system.runtime.serialization.datacontractserializer"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-serialization-iextensibledataobject.md",
"redirect_url": "/dotnet/api/system.runtime.serialization.iextensibledataobject"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-serialization-xsddatacontractexporter.md",
"redirect_url": "/dotnet/api/system.runtime.serialization.xsddatacontractexporter"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-runtime-versioning-componentguaranteesattribute.md",
"redirect_url": "/dotnet/api/system.runtime.versioning.componentguaranteesattribute"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-security-cryptography-rsacryptoserviceprovider.md",
"redirect_url": "/dotnet/api/system.security.cryptography.rsacryptoserviceprovider"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-security-cryptography-rsaparameters.md",
"redirect_url": "/dotnet/api/system.security.cryptography.rsaparameters"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-security-cryptography-xml-signedxml.md",
"redirect_url": "/dotnet/api/system.security.cryptography.xml.signedxml"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-security-securestring.md",
"redirect_url": "/dotnet/api/system.security.securestring"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-single-compareto.md",
"redirect_url": "/dotnet/api/system.single.compareto"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-single-epsilon.md",
"redirect_url": "/dotnet/api/system.single.epsilon"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-single-equals.md",
"redirect_url": "/dotnet/api/system.single.equals"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-single.md",
"redirect_url": "/dotnet/api/system.single"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-span{t}.md",
"redirect_url": "/dotnet/api/system.span-1"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-string-ctor.md",
"redirect_url": "/dotnet/api/system.string.ctor"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-string-format.md",
"redirect_url": "/dotnet/api/system.string.format"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-string-intern.md",
"redirect_url": "/dotnet/api/system.string.intern"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-string-isnullorempty.md",
"redirect_url": "/dotnet/api/system.string.isnullorempty"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-string.md",
"redirect_url": "/dotnet/api/system.string"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-stringcomparer.md",
"redirect_url": "/dotnet/api/system.stringcomparer"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-text-encoding-default.md",
"redirect_url": "/dotnet/api/system.text.encoding.default"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-text-encoding.md",
"redirect_url": "/dotnet/api/system.text.encoding"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-text-regularexpressions-regex-match.md",
"redirect_url": "/dotnet/api/system.text.regularexpressions.regex.match"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-text-regularexpressions-regex.md",
"redirect_url": "/dotnet/api/system.text.regularexpressions.regex"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-text-rune.md",
"redirect_url": "/dotnet/api/system.text.rune"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-text-stringbuilder.md",
"redirect_url": "/dotnet/api/system.text.stringbuilder"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-threading-monitor-wait.md",
"redirect_url": "/dotnet/api/system.threading.monitor.wait"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-threading-monitor.md",
"redirect_url": "/dotnet/api/system.threading.monitor"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-threading-readerwriterlockslim.md",
"redirect_url": "/dotnet/api/system.threading.readerwriterlockslim"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-threading-tasks-task.md",
"redirect_url": "/dotnet/api/system.threading.tasks.task"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-threading-tasks-taskscheduler.md",
"redirect_url": "/dotnet/api/system.threading.tasks.taskscheduler"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-threading-thread.md",
"redirect_url": "/dotnet/api/system.threading.thread"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-timespan-parse.md",
"redirect_url": "/dotnet/api/system.timespan.parse"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-timespan-tryparse.md",
"redirect_url": "/dotnet/api/system.timespan.tryparse"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-timespan.md",
"redirect_url": "/dotnet/api/system.timespan"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-type-getproperty.md",
"redirect_url": "/dotnet/api/system.type.getproperty"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-type-gettype.md",
"redirect_url": "/dotnet/api/system.type.gettype"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-type-makegenerictype.md",
"redirect_url": "/dotnet/api/system.type.makegenerictype"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-type.md",
"redirect_url": "/dotnet/api/system.type"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-typeinitializationexception.md",
"redirect_url": "/dotnet/api/system.typeinitializationexception"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-uri.md",
"redirect_url": "/dotnet/api/system.uri"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-version.md",
"redirect_url": "/dotnet/api/system.version"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-linq-xname.md",
"redirect_url": "/dotnet/api/system.xml.linq.xname"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-linq-xnamespace.md",
"redirect_url": "/dotnet/api/system.xml.linq.xnamespace"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-schema-xmlschemaset.md",
"redirect_url": "/dotnet/api/system.xml.schema.xmlschemaset"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-serialization-codegenerationoptions.md",
"redirect_url": "/dotnet/api/system.xml.serialization.codegenerationoptions"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-serialization-xmlserializer.md",
"redirect_url": "/dotnet/api/system.xml.serialization.xmlserializer"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlconvert.md",
"redirect_url": "/dotnet/api/system.xml.xmlconvert"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmldocument.md",
"redirect_url": "/dotnet/api/system.xml.xmldocument"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlreader-create.md",
"redirect_url": "/dotnet/api/system.xml.xmlreader.create"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlreader.md",
"redirect_url": "/dotnet/api/system.xml.xmlreader"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlreadersettings-dtdprocessing.md",
"redirect_url": "/dotnet/api/system.xml.xmlreadersettings.dtdprocessing"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlreadersettings-schemas.md",
"redirect_url": "/dotnet/api/system.xml.xmlreadersettings.schemas"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlreadersettings.md",
"redirect_url": "/dotnet/api/system.xml.xmlreadersettings"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlresolver.md",
"redirect_url": "/dotnet/api/system.xml.xmlresolver"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlsecureresolver.md",
"redirect_url": "/dotnet/api/system.xml.xmlsecureresolver"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmltextreader.md",
"redirect_url": "/dotnet/api/system.xml.xmltextreader"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmltextwriter.md",
"redirect_url": "/dotnet/api/system.xml.xmltextwriter"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xmlwriter.md",
"redirect_url": "/dotnet/api/system.xml.xmlwriter"
},
{
"source_path_from_root": "/docs/fundamentals/runtime-libraries/system-xml-xsl-xslcompiledtransform.md",
"redirect_url": "/dotnet/api/system.xml.xsl.xslcompiledtransform"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1004.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/source-generator-overview"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1040.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1041.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1042.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1043.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1044.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1045.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1046.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1047.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1048.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1049.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1040-1049"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1050.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1051.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1052.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1053.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1054.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1055.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1056.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1057.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1058.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{
"source_path_from_root": "/docs/fundamentals/syslib-diagnostics/syslib1059.md",
"redirect_url": "/dotnet/fundamentals/syslib-diagnostics/syslib1050-1069"
},
{