Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.dll.sources « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3055c4a3274317154bed293436e1e9987e02842 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
../../build/common/SR.cs
Assembly/AssemblyInfo.cs
Microsoft.CSharp/CSharpCodeCompiler.cs
Microsoft.CSharp/CSharpCodeGenerator.cs
Microsoft.CSharp/CSharpCodeProvider.cs
Microsoft.VisualBasic/VBCodeCompiler.cs
Microsoft.VisualBasic/VBCodeGenerator.cs
Microsoft.VisualBasic/VBCodeProvider.cs
Microsoft.Win32/IntranetZoneCredentialPolicy.cs
Microsoft.Win32/PowerModeChangedEventArgs.cs
Microsoft.Win32/PowerModeChangedEventHandler.cs
Microsoft.Win32/PowerModes.cs
Microsoft.Win32/SessionEndedEventArgs.cs
Microsoft.Win32/SessionEndedEventHandler.cs
Microsoft.Win32/SessionEndingEventArgs.cs
Microsoft.Win32/SessionEndingEventHandler.cs
Microsoft.Win32/SessionEndReasons.cs
Microsoft.Win32/SessionSwitchEventArgs.cs
Microsoft.Win32/SessionSwitchEventHandler.cs
Microsoft.Win32/SessionSwitchReason.cs
Microsoft.Win32/SystemEvents.cs
Microsoft.Win32/TimerElapsedEventArgs.cs
Microsoft.Win32/TimerElapsedEventHandler.cs
Microsoft.Win32/UserPreferenceCategory.cs
Microsoft.Win32/UserPreferenceChangedEventArgs.cs
Microsoft.Win32/UserPreferenceChangedEventHandler.cs
Microsoft.Win32/UserPreferenceChangingEventArgs.cs
Microsoft.Win32/UserPreferenceChangingEventHandler.cs
Mono.Http/NtlmClient.cs
System.CodeDom/CodeArgumentReferenceExpression.cs
System.CodeDom/CodeArrayCreateExpression.cs
System.CodeDom/CodeArrayIndexerExpression.cs
System.CodeDom/CodeAssignStatement.cs
System.CodeDom/CodeAttachEventStatement.cs
System.CodeDom/CodeAttributeArgumentCollection.cs
System.CodeDom/CodeAttributeArgument.cs
System.CodeDom/CodeAttributeDeclarationCollection.cs
System.CodeDom/CodeAttributeDeclaration.cs
System.CodeDom/CodeBaseReferenceExpression.cs
System.CodeDom/CodeBinaryOperatorExpression.cs
System.CodeDom/CodeBinaryOperatorType.cs
System.CodeDom/CodeCastExpression.cs
System.CodeDom/CodeCatchClauseCollection.cs
System.CodeDom/CodeCatchClause.cs
System.CodeDom/CodeChecksumPragma.cs
System.CodeDom/CodeComment.cs
System.CodeDom/CodeCommentStatementCollection.cs
System.CodeDom/CodeCommentStatement.cs
System.CodeDom/CodeCompileUnit.cs
System.CodeDom/CodeConditionStatement.cs
System.CodeDom/CodeConstructor.cs
System.CodeDom/CodeDefaultValueExpression.cs
System.CodeDom/CodeDelegateCreateExpression.cs
System.CodeDom/CodeDelegateInvokeExpression.cs
System.CodeDom/CodeDirectionExpression.cs
System.CodeDom/CodeDirectiveCollection.cs
System.CodeDom/CodeDirective.cs
System.CodeDom/CodeEntryPointMethod.cs
System.CodeDom/CodeEventReferenceExpression.cs
System.CodeDom/CodeExpressionCollection.cs
System.CodeDom/CodeExpression.cs
System.CodeDom/CodeExpressionStatement.cs
System.CodeDom/CodeFieldReferenceExpression.cs
System.CodeDom/CodeGotoStatement.cs
System.CodeDom/CodeIndexerExpression.cs
System.CodeDom/CodeIterationStatement.cs
System.CodeDom/CodeLabeledStatement.cs
System.CodeDom/CodeLinePragma.cs
System.CodeDom/CodeMemberEvent.cs
System.CodeDom/CodeMemberField.cs
System.CodeDom/CodeMemberMethod.cs
System.CodeDom/CodeMemberProperty.cs
System.CodeDom/CodeMethodInvokeExpression.cs
System.CodeDom/CodeMethodReferenceExpression.cs
System.CodeDom/CodeMethodReturnStatement.cs
System.CodeDom/CodeNamespaceCollection.cs
System.CodeDom/CodeNamespace.cs
System.CodeDom/CodeNamespaceImportCollection.cs
System.CodeDom/CodeNamespaceImport.cs
System.CodeDom/CodeObjectCreateExpression.cs
System.CodeDom/CodeObject.cs
System.CodeDom/CodeParameterDeclarationExpressionCollection.cs
System.CodeDom/CodeParameterDeclarationExpression.cs
System.CodeDom/CodePrimitiveExpression.cs
System.CodeDom/CodePropertyReferenceExpression.cs
System.CodeDom/CodePropertySetValueReferenceExpression.cs
System.CodeDom/CodeRegionDirective.cs
System.CodeDom/CodeRegionMode.cs
System.CodeDom/CodeRemoveEventStatement.cs
System.CodeDom/CodeSnippetCompileUnit.cs
System.CodeDom/CodeSnippetExpression.cs
System.CodeDom/CodeSnippetStatement.cs
System.CodeDom/CodeSnippetTypeMember.cs
System.CodeDom/CodeStatementCollection.cs
System.CodeDom/CodeStatement.cs
System.CodeDom/CodeThisReferenceExpression.cs
System.CodeDom/CodeThrowExceptionStatement.cs
System.CodeDom/CodeTryCatchFinallyStatement.cs
System.CodeDom/CodeTypeConstructor.cs
System.CodeDom/CodeTypeDeclarationCollection.cs
System.CodeDom/CodeTypeDeclaration.cs
System.CodeDom/CodeTypeDelegate.cs
System.CodeDom/CodeTypeMemberCollection.cs
System.CodeDom/CodeTypeMember.cs
System.CodeDom/CodeTypeOfExpression.cs
System.CodeDom/CodeTypeParameterCollection.cs
System.CodeDom/CodeTypeParameter.cs
System.CodeDom/CodeTypeReferenceCollection.cs
System.CodeDom/CodeTypeReference.cs
System.CodeDom/CodeTypeReferenceExpression.cs
System.CodeDom/CodeTypeReferenceOptions.cs
System.CodeDom/CodeVariableDeclarationStatement.cs
System.CodeDom/CodeVariableReferenceExpression.cs
System.CodeDom/ICodeDomVisitor.cs
System.CodeDom.Compiler/CodeCompiler.cs
System.CodeDom.Compiler/CodeDomConfigurationHandler.cs
System.CodeDom.Compiler/CodeDomProvider.cs
System.CodeDom.Compiler/CodeGenerator.cs
System.CodeDom.Compiler/CodeGeneratorOptions.cs
System.CodeDom.Compiler/CodeParser.cs
System.CodeDom.Compiler/Compiler.cs
System.CodeDom.Compiler/CompilerCollection.cs
System.CodeDom.Compiler/CompilerErrorCollection.cs
System.CodeDom.Compiler/CompilerError.cs
System.CodeDom.Compiler/CompilerInfo.cs
System.CodeDom.Compiler/CompilerParameters.cs
System.CodeDom.Compiler/CompilerProviderOption.cs
System.CodeDom.Compiler/CompilerProviderOptionsCollection.cs
System.CodeDom.Compiler/CompilerResults.cs
System.CodeDom.Compiler/Executor.cs
System.CodeDom.Compiler/GeneratedCodeAttribute.cs
System.CodeDom.Compiler/GeneratorSupport.cs
System.CodeDom.Compiler/ICodeCompiler.cs
System.CodeDom.Compiler/ICodeGenerator.cs
System.CodeDom.Compiler/ICodeParser.cs
System.CodeDom.Compiler/IndentedTextWriter.cs
System.CodeDom.Compiler/LanguageOptions.cs
System.CodeDom.Compiler/TempFileCollection.cs
System.CodeDom/FieldDirection.cs
System.CodeDom/MemberAttributes.cs
System.Configuration/ApplicationScopedSettingAttribute.cs
System.Configuration/ApplicationSettingsBase.cs
System.Configuration/ApplicationSettingsGroup.cs
System.Configuration/AppSettingsReader.cs
System.Configuration/ClientSettingsSection.cs
System.Configuration/ConfigHelper.cs
System.Configuration/ConfigurationException.cs
System.Configuration/ConfigurationSettings.cs
System.Configuration/ConfigXmlDocument.cs
System.Configuration/CustomizableFileSettingsProvider.cs
System.Configuration/DefaultSettingValueAttribute.cs
System.Configuration/DictionarySectionHandler.cs
System.Configuration/IApplicationSettingsProvider.cs
System.Configuration/IConfigurationSectionHandler.cs
System.Configuration/IConfigurationSystem.cs
System.Configuration/IConfigXmlNode.cs
System.Configuration/IdnElement.cs
System.Configuration/IgnoreSectionHandler.cs
System.Configuration/IriParsingElement.cs
System.Configuration/IPersistComponentSettings.cs
System.Configuration/ISettingsProviderService.cs
System.Configuration/LocalFileSettingsProvider.cs
System.Configuration/NameValueFileSectionHandler.cs
System.Configuration/NameValueSectionHandler.cs
System.Configuration/NoSettingsVersionUpgradeAttribute.cs
System.Configuration/SettingAttribute.cs
System.Configuration/SettingChangingEventArgs.cs
System.Configuration/SettingChangingEventHandler.cs
System.Configuration/SettingElementCollection.cs
System.Configuration/SettingElement.cs
System.Configuration/SettingsAttributeDictionary.cs
System.Configuration/SettingsBase.cs
System.Configuration/SettingsContext.cs
System.Configuration/SettingsLoadedEventArgs.cs
System.Configuration/SettingsLoadedEventHandler.cs
System.Configuration/SettingsPropertyCollection.cs
System.Configuration/SettingsProperty.cs
System.Configuration/SettingsPropertyIsReadOnlyException.cs
System.Configuration/SettingsPropertyNotFoundException.cs
System.Configuration/SettingsPropertyValueCollection.cs
System.Configuration/SettingsPropertyValue.cs
System.Configuration/SettingsPropertyWrongTypeException.cs
System.Configuration/SettingsProviderAttribute.cs
System.Configuration/SettingsProviderCollection.cs
System.Configuration/SettingsProvider.cs
System.Configuration/SettingsSavingEventHandler.cs
System.Configuration/SettingsSerializeAsAttribute.cs
System.Configuration/SettingsSerializeAs.cs
System.Configuration/SettingValueElement.cs
System.Configuration/SettingsManageability.cs
System.Configuration/SettingsManageabilityAttribute.cs
System.Configuration/SettingsGroupDescriptionAttribute.cs
System.Configuration/SettingsDescriptionAttribute.cs
System.Configuration/SettingsGroupNameAttribute.cs
System.Configuration/SingleTagSectionHandler.cs
System.Configuration/SpecialSetting.cs
System.Configuration/SpecialSettingAttribute.cs
System.Configuration/UriSection.cs
System.Configuration/UserSettingsGroup.cs
System.Configuration/UserScopedSettingAttribute.cs
System/DefaultUriParser.cs
System.Diagnostics/AlphabeticalEnumConverter.cs
System.Diagnostics/CounterCreationDataCollection.cs
System.Diagnostics/CounterCreationData.cs
System.Diagnostics/CounterSampleCalculator.cs
System.Diagnostics/CounterSample.cs
System.Diagnostics/DataReceivedEventArgs.cs
System.Diagnostics/DataReceivedEventHandler.cs
System.Diagnostics/DiagnosticsConfigurationHandler.cs
System.Diagnostics/EntryWrittenEventArgs.cs
System.Diagnostics/EntryWrittenEventHandler.cs
System.Diagnostics/EventInstance.cs
System.Diagnostics/EventLog.cs
System.Diagnostics/EventLogEntryCollection.cs
System.Diagnostics/EventLogEntry.cs
System.Diagnostics/EventLogEntryType.cs
System.Diagnostics/EventLogImpl.cs
System.Diagnostics/EventLogInstaller.cs
System.Diagnostics/EventLogPermissionAccess.cs
System.Diagnostics/EventLogPermissionAttribute.cs
System.Diagnostics/EventLogPermission.cs
System.Diagnostics/EventLogPermissionEntryCollection.cs
System.Diagnostics/EventLogPermissionEntry.cs
System.Diagnostics/EventLogTraceListener.cs
System.Diagnostics/EventSourceCreationData.cs
System.Diagnostics/FileVersionInfo.cs
System.Diagnostics/ICollectData.cs
System.Diagnostics/InstanceDataCollectionCollection.cs
System.Diagnostics/InstanceDataCollection.cs
System.Diagnostics/InstanceData.cs
System.Diagnostics/LocalFileEventLog.cs
System.Diagnostics/MonitoringDescriptionAttribute.cs
System.Diagnostics/NullEventLog.cs
System.Diagnostics/OverflowAction.cs
System.Diagnostics/PerformanceCounterCategory.cs
System.Diagnostics/PerformanceCounterCategoryType.cs
System.Diagnostics/PerformanceCounter.cs
System.Diagnostics/PerformanceCounterInstaller.cs
System.Diagnostics/PerformanceCounterInstanceLifetime.cs
System.Diagnostics/PerformanceCounterManager.cs
System.Diagnostics/PerformanceCounterPermissionAccess.cs
System.Diagnostics/PerformanceCounterPermissionAttribute.cs
System.Diagnostics/PerformanceCounterPermission.cs
System.Diagnostics/PerformanceCounterPermissionEntryCollection.cs
System.Diagnostics/PerformanceCounterPermissionEntry.cs
System.Diagnostics/PerformanceCounterType.cs
System.Diagnostics/Process.cs
System.Diagnostics/ProcessModuleCollection.cs
System.Diagnostics/ProcessModule.cs
System.Diagnostics/ProcessPriorityClass.cs
System.Diagnostics/ProcessStartInfo.cs
System.Diagnostics/ProcessThreadCollection.cs
System.Diagnostics/ProcessThread.cs
System.Diagnostics/ProcessWindowStyle.cs
System.Diagnostics/Stopwatch.cs
System.Diagnostics/ThreadPriorityLevel.cs
System.Diagnostics/ThreadState.cs
System.Diagnostics/ThreadWaitReason.cs
System.Diagnostics/TraceImpl.cs
System.Diagnostics/TraceSourceInfo.cs
System.Diagnostics/Win32EventLog.cs
System.Diagnostics.CodeAnalysis/ExcludeFromCodeCoverageAttribute.cs
System/FileStyleUriParser.cs
System/FtpStyleUriParser.cs
System/GenericUriParser.cs
System/GenericUriParserOptions.cs
System/GopherStyleUriParser.cs
System/HttpStyleUriParser.cs
System/Platform.cs
System.IO.Compression/CompressionLevel.cs
System.IO.Compression/CompressionMode.cs
System.IO.Compression/DeflateStream.cs
System.IO.Compression/GZipStream.cs
System.IO/DefaultWatcher.cs
System.IO/ErrorEventArgs.cs
System.IO/ErrorEventHandler.cs
System.IO/FAMWatcher.cs
System.IO/NullFileWatcher.cs
System.IO/FileAction.cs
System.IO/FileSystemEventArgs.cs
System.IO/FileSystemEventHandler.cs
System.IO/FileSystemWatcher.cs
System.IO/IFileWatcher.cs
System.IO/InotifyWatcher.cs
System.IO/InternalBufferOverflowException.cs
System.IO/InvalidDataException.cs
System.IO/IODescriptionAttribute.cs
System.IO/KeventWatcher.cs
System.IO/MonoSyncFileStream.cs
System.IO/NotifyFilters.cs
System.IO.Ports/Handshake.cs
System.IO.Ports/ISerialStream.cs
System.IO.Ports/Parity.cs
System.IO.Ports/SerialData.cs
System.IO.Ports/SerialError.cs
System.IO.Ports/SerialErrorEventArgs.cs
System.IO.Ports/SerialPinChange.cs
System.IO.Ports/SerialPinChangedEventArgs.cs
System.IO.Ports/SerialPort.cs
System.IO.Ports/SerialPortStream.cs
System.IO.Ports/SerialReceivedEventArgs.cs
System.IO.Ports/SerialSignal.cs
System.IO.Ports/StopBits.cs
System.IO.Ports/WinSerialStream.cs
System.IO/RenamedEventArgs.cs
System.IO/RenamedEventHandler.cs
System.IO/SearchPattern.cs
System.IO/WaitForChangedResult.cs
System.IO/WatcherChangeTypes.cs
System.IO/WindowsWatcher.cs
System/LdapStyleUriParser.cs
System.Media/AudioData.cs
System.Media/AudioDevice.cs
System.Media/SoundPlayer.cs
System.Media/SystemSound.cs
System.Media/SystemSounds.cs
System.Media/Win32SoundPlayer.cs
System.Net/AuthenticationManager.cs
System.Net/AuthenticationSchemes.cs
System.Net/AuthenticationSchemeSelector.cs
System.Net/Authorization.cs
System.Net/BasicClient.cs
System.Net/BindIPEndPoint.cs
System.Net.Cache/HttpCacheAgeControl.cs
System.Net.Cache/HttpRequestCacheLevel.cs
System.Net.Cache/HttpRequestCachePolicy.cs
System.Net.Cache/RequestCacheLevel.cs
System.Net.Cache/RequestCachePolicy.cs
System.Net/ChunkedInputStream.cs
System.Net/ChunkStream.cs
System.Net.Configuration/AuthenticationModuleElementCollection.cs
System.Net.Configuration/AuthenticationModuleElement.cs
System.Net.Configuration/AuthenticationModulesSection.cs
System.Net.Configuration/BypassElementCollection.cs
System.Net.Configuration/BypassElement.cs
System.Net.Configuration/ConnectionManagementElementCollection.cs
System.Net.Configuration/ConnectionManagementElement.cs
System.Net.Configuration/ConnectionManagementHandler.cs
System.Net.Configuration/ConnectionManagementSection.cs
System.Net.Configuration/DefaultProxyHandler.cs
System.Net.Configuration/DefaultProxySection.cs
System.Net.Configuration/FtpCachePolicyElement.cs
System.Net.Configuration/HttpCachePolicyElement.cs
System.Net.Configuration/HttpWebRequestElement.cs
System.Net.Configuration/Ipv6Element.cs
System.Net.Configuration/MailSettingsSectionGroup.cs
System.Net.Configuration/ModuleElement.cs
System.Net.Configuration/NetAuthenticationModuleHandler.cs
System.Net.Configuration/NetConfigurationHandler.cs
System.Net.Configuration/NetSectionGroup.cs
System.Net.Configuration/PerformanceCountersElement.cs
System.Net.Configuration/ProxyElement.cs
System.Net.Configuration/RequestCachingSection.cs
System.Net.Configuration/ServicePointManagerElement.cs
System.Net.Configuration/SettingsSection.cs
System.Net.Configuration/SmtpNetworkElement.cs
System.Net.Configuration/SmtpSection.cs
System.Net.Configuration/SmtpSpecifiedPickupDirectoryElement.cs
System.Net.Configuration/SocketElement.cs
System.Net.Configuration/WebProxyScriptElement.cs
System.Net.Configuration/WebRequestModuleElementCollection.cs
System.Net.Configuration/WebRequestModuleElement.cs
System.Net.Configuration/WebRequestModuleHandler.cs
System.Net.Configuration/WebRequestModulesSection.cs
System.Net/ConnectionModes.cs
System.Net/CredentialCache.cs
System.Net/DecompressionMethods.cs
System.Net/DefaultCertificatePolicy.cs
System.Net/DigestClient.cs
System.Net/Dns.cs
System.Net/DnsEndPoint.cs
System.Net/DnsPermissionAttribute.cs
System.Net/DnsPermission.cs
System.Net/EndPoint.cs
System.Net/EndPointListener.cs
System.Net/EndPointManager.cs
System.Net/EndpointPermission.cs
System.Net/FileWebRequestCreator.cs
System.Net/FileWebRequest.cs
System.Net/FileWebResponse.cs
System.Net/FtpAsyncResult.cs
System.Net/FtpDataStream.cs
System.Net/FtpRequestCreator.cs
System.Net/FtpStatusCode.cs
System.Net/FtpWebRequest.cs
System.Net/FtpStatus.cs
System.Net/FtpWebResponse.cs
System.Net/GlobalProxySelection.cs
System.Net/HttpConnection.cs
System.Net/HttpListenerBasicIdentity.cs
System.Net/HttpListenerContext.cs
System.Net/HttpListener.cs
System.Net/HttpListenerException.cs
System.Net/HttpListenerPrefixCollection.cs
System.Net/HttpListenerRequest.cs
System.Net/HttpListenerResponse.cs
System.Net/HttpRequestCreator.cs
System.Net/HttpRequestHeader.cs
System.Net/HttpResponseHeader.cs
System.Net/HttpStatusCode.cs
System.Net/HttpStreamAsyncResult.cs
System.Net/HttpUtility.cs
System.Net/HttpVersion.cs
System.Net/HttpWebRequest.cs
System.Net/HttpWebResponse.cs
System.Net/IAuthenticationModule.cs
System.Net/ICertificatePolicy.cs
System.Net/ICredentialLookup.cs
System.Net/ICredentialPolicy.cs
System.Net/ICredentialsByHost.cs
System.Net/IPAddress.cs
System.Net/IPEndPoint.cs
System.Net/IPHostEntry.cs
System.Net/IPv6Address.cs
System.Net/IWebProxy.cs
System.Net/IWebProxyScript.cs
System.Net/IWebConnectionState.cs
System.Net/IWebRequestCreate.cs
System.Net/ListenerAsyncResult.cs
System.Net/ListenerPrefix.cs
System.Net.Mail/AlternateViewCollection.cs
System.Net.Mail/AlternateView.cs
System.Net.Mail/AttachmentBase.cs
System.Net.Mail/AttachmentCollection.cs
System.Net.Mail/Attachment.cs
System.Net.Mail/DeliveryNotificationOptions.cs
System.Net.Mail/LinkedResourceCollection.cs
System.Net.Mail/LinkedResource.cs
System.Net.Mail/MailAddressCollection.cs
System.Net.Mail/MailAddress.cs
System.Net.Mail/MailMessage.cs
System.Net.Mail/MailPriority.cs
System.Net.Mail/SendCompletedEventHandler.cs
System.Net.Mail/SmtpAccess.cs
System.Net.Mail/SmtpClient.cs
System.Net.Mail/SmtpDeliveryMethod.cs
System.Net.Mail/SmtpException.cs
System.Net.Mail/SmtpFailedRecipientException.cs
System.Net.Mail/SmtpFailedRecipientsException.cs
System.Net.Mail/SmtpPermission.cs
System.Net.Mail/SmtpPermissionAttribute.cs
System.Net.Mail/SmtpStatusCode.cs
System.Net.Mime/ContentDisposition.cs
System.Net.Mime/ContentType.cs
System.Net.Mime/DispositionTypeNames.cs
System.Net.Mime/MediaTypeNames.cs
System.Net.Mime/TransferEncoding.cs
System.Net/MacProxy.cs
System.Net/MonoHttpDate.cs
System.Net/NetConfig.cs
System.Net/NetworkAccess.cs
System.Net/NetworkCredential.cs
System.Net.NetworkInformation/DuplicateAddressDetectionState.cs
System.Net.NetworkInformation/GatewayIPAddressInformationCollection.cs
System.Net.NetworkInformation/GatewayIPAddressInformation.cs
System.Net.NetworkInformation/IcmpV4Statistics.cs
System.Net.NetworkInformation/IcmpV6Statistics.cs
System.Net.NetworkInformation/IPAddressCollection.cs
System.Net.NetworkInformation/IPAddressInformationCollection.cs
System.Net.NetworkInformation/IPAddressInformation.cs
System.Net.NetworkInformation/IPGlobalProperties.cs
System.Net.NetworkInformation/IPGlobalStatistics.cs
System.Net.NetworkInformation/IPInterfaceProperties.cs
System.Net.NetworkInformation/IPStatus.cs
System.Net.NetworkInformation/IPv4InterfaceProperties.cs
System.Net.NetworkInformation/IPv4InterfaceStatistics.cs
System.Net.NetworkInformation/IPv6InterfaceProperties.cs
System.Net.NetworkInformation/LinuxNetworkInterfaceMarshal.cs
System.Net.NetworkInformation/MacOsNetworkInterfaceMarshal.cs
System.Net.NetworkInformation/MulticastIPAddressInformationCollection.cs
System.Net.NetworkInformation/MulticastIPAddressInformation.cs
System.Net.NetworkInformation/NetBiosNodeType.cs
System.Net.NetworkInformation/NetworkAddressChangedEventHandler.cs
System.Net.NetworkInformation/NetworkAvailabilityChangedEventHandler.cs
System.Net.NetworkInformation/NetworkAvailabilityEventArgs.cs
System.Net.NetworkInformation/NetworkChange.cs
System.Net.NetworkInformation/NetworkInformationAccess.cs
System.Net.NetworkInformation/NetworkInformationException.cs
System.Net.NetworkInformation/NetworkInformationPermissionAttribute.cs
System.Net.NetworkInformation/NetworkInformationPermission.cs
System.Net.NetworkInformation/NetworkInterfaceComponent.cs
System.Net.NetworkInformation/NetworkInterface.cs
System.Net.NetworkInformation/NetworkInterfaceType.cs
System.Net.NetworkInformation/OperationalStatus.cs
System.Net.NetworkInformation/PhysicalAddress.cs
System.Net.NetworkInformation/PingCompletedEventArgs.cs
System.Net.NetworkInformation/PingCompletedEventHandler.cs
System.Net.NetworkInformation/Ping.cs
System.Net.NetworkInformation/PingException.cs
System.Net.NetworkInformation/PingOptions.cs
System.Net.NetworkInformation/PingReply.cs
System.Net.NetworkInformation/PrefixOrigin.cs
System.Net.NetworkInformation/SuffixOrigin.cs
System.Net.NetworkInformation/TcpConnectionInformation.cs
System.Net.NetworkInformation/TcpState.cs
System.Net.NetworkInformation/TcpStatistics.cs
System.Net.NetworkInformation/UdpStatistics.cs
System.Net.NetworkInformation/UnicastIPAddressInformationCollection.cs
System.Net.NetworkInformation/UnicastIPAddressInformation.cs
System.Net.NetworkInformation/Win32NetworkInterfaceMarshal.cs
System.Net/NtlmClient.cs
System/NetPipeStyleUriParser.cs
System.Net/ProtocolViolationException.cs
System.Net/RequestStream.cs
System.Net/ResponseStream.cs
System.Net.Security/AuthenticatedStream.cs
System.Net.Security/AuthenticationLevel.cs
System.Net.Security/LocalCertificateSelectionCallback.cs
System.Net.Security/NegotiateStream.cs
System.Net.Security/ProtectionLevel.cs
System.Net/SecurityProtocolType.cs
System.Net.Security/RemoteCertificateValidationCallback.cs
System.Net.Security/SslStream.cs
System.Net.Security/SslPolicyErrors.cs
System.Net/ServicePoint.cs
System.Net/ServicePointManager.cs
System.Net/ServicePointManager.extra.cs
System.Net/SimpleAsyncResult.cs
System.Net/SocketAddress.cs
System.Net/SocketPermissionAttribute.cs
System.Net/SocketPermission.cs
System.Net.Sockets/AddressFamily.cs
System.Net.Sockets/IOControlCode.cs
System.Net.Sockets/IPv6MulticastOption.cs
System.Net.Sockets/IPPacketInformation.cs
System.Net.Sockets/LingerOption.cs
System.Net.Sockets/MulticastOption.cs
System.Net.Sockets/NetworkStream.cs
System.Net.Sockets/ProtocolFamily.cs
System.Net.Sockets/ProtocolType.cs
System.Net.Sockets/SelectMode.cs
System.Net.Sockets/SendPacketsElement.cs
System.Net.Sockets/Socket.cs
System.Net.Sockets/Socket_2_1.cs
System.Net.Sockets/SocketAsyncEventArgs.cs
System.Net.Sockets/SocketAsyncOperation.cs
System.Net.Sockets/SocketError.cs
System.Net.Sockets/SocketException.cs
System.Net.Sockets/SocketFlags.cs
System.Net.Sockets/SocketInformation.cs
System.Net.Sockets/SocketInformationOptions.cs
System.Net.Sockets/SocketOptionLevel.cs
System.Net.Sockets/SocketOptionName.cs
System.Net.Sockets/SocketShutdown.cs
System.Net.Sockets/SocketType.cs
System.Net.Sockets/TcpClient.cs
System.Net.Sockets/TcpListener.cs
System.Net.Sockets/TransmitFileOptions.cs
System.Net.Sockets/UdpClient.cs
System.Net.Sockets/UdpReceiveResult.cs
System/NetTcpStyleUriParser.cs
System.Net/TransportContext.cs
System.Net/TransportType.cs
System.Net/WebAsyncResult.cs
System.Net/WebConnection.cs
System.Net/WebConnectionData.cs
System.Net/WebConnectionGroup.cs
System.Net/WebConnectionStream.cs
System.Net/WebException.cs
System.Net/WebExceptionStatus.cs
System.Net/WebHeaderCollection.cs
System.Net/WebProxy.cs
System.Net/WebRequest.cs
System.Net/WebRequestMethods.cs
System.Net/WebResponse.cs
System.Net/WebUtility.cs
System.Net.WebSockets/ClientWebSocket.cs
System.Net.WebSockets/ClientWebSocketOptions.cs
System.Net.WebSockets/HttpListenerWebSocketContext.cs
System.Net.WebSockets/WebSocket.cs
System.Net.WebSockets/WebSocketCloseStatus.cs
System.Net.WebSockets/WebSocketContext.cs
System.Net.WebSockets/WebSocketError.cs
System.Net.WebSockets/WebSocketException.cs
System.Net.WebSockets/WebSocketMessageType.cs
System.Net.WebSockets/WebSocketReceiveResult.cs
System.Net.WebSockets/WebSocketState.cs
System/NewsStyleUriParser.cs
System.Runtime.Versioning/FrameworkName.cs
System.Security.AccessControl/SemaphoreAccessRule.cs
System.Security.AccessControl/SemaphoreAuditRule.cs
System.Security.AccessControl/SemaphoreRights.cs
System.Security.AccessControl/SemaphoreSecurity.cs
System.Security.Authentication/AuthenticationException.cs
System.Security.Authentication/CipherAlgorithmType.cs
System.Security.Authentication/ExchangeAlgorithmType.cs
System.Security.Authentication/HashAlgorithmType.cs
System.Security.Authentication/SslProtocols.cs
System.Security.Authentication/InvalidCredentialException.cs
System.Security.Authentication.ExtendedProtection/ChannelBinding.cs
System.Security.Authentication.ExtendedProtection/ChannelBindingKind.cs
System.Security.Authentication.ExtendedProtection/ExtendedProtectionPolicy.cs
System.Security.Authentication.ExtendedProtection/ExtendedProtectionPolicyTypeConverter.cs
System.Security.Authentication.ExtendedProtection/PolicyEnforcement.cs
System.Security.Authentication.ExtendedProtection/ProtectionScenario.cs
System.Security.Authentication.ExtendedProtection/ServiceNameCollection.cs
System.Security.Authentication.ExtendedProtection.Configuration/ConfigUtil.cs
System.Security.Authentication.ExtendedProtection.Configuration/ExtendedProtectionPolicyElement.cs
System.Security.Authentication.ExtendedProtection.Configuration/ServiceNameElement.cs
System.Security.Authentication.ExtendedProtection.Configuration/ServiceNameElementCollection.cs
System.Security.Cryptography/AsnEncodedDataCollection.cs
System.Security.Cryptography/AsnEncodedData.cs
System.Security.Cryptography/AsnEncodedDataEnumerator.cs
System.Security.Cryptography/OidCollection.cs
System.Security.Cryptography/Oid.cs
System.Security.Cryptography/OidEnumerator.cs
System.Security.Cryptography.X509Certificates/OpenFlags.cs
System.Security.Cryptography.X509Certificates/OSX509Certificates.cs
System.Security.Cryptography.X509Certificates/PublicKey.cs
System.Security.Cryptography.X509Certificates/StoreLocation.cs
System.Security.Cryptography.X509Certificates/StoreName.cs
System.Security.Cryptography.X509Certificates/X500DistinguishedName.cs
System.Security.Cryptography.X509Certificates/X500DistinguishedNameFlags.cs
System.Security.Cryptography.X509Certificates/X509BasicConstraintsExtension.cs
System.Security.Cryptography.X509Certificates/X509Certificate2Collection.cs
System.Security.Cryptography.X509Certificates/X509Certificate2.cs
System.Security.Cryptography.X509Certificates/X509Certificate2Enumerator.cs
System.Security.Cryptography.X509Certificates/X509CertificateCollection.cs
System.Security.Cryptography.X509Certificates/X509Chain.cs
System.Security.Cryptography.X509Certificates/X509ChainElementCollection.cs
System.Security.Cryptography.X509Certificates/X509ChainElement.cs
System.Security.Cryptography.X509Certificates/X509ChainElementEnumerator.cs
System.Security.Cryptography.X509Certificates/X509ChainPolicy.cs
System.Security.Cryptography.X509Certificates/X509ChainStatus.cs
System.Security.Cryptography.X509Certificates/X509ChainStatusFlags.cs
System.Security.Cryptography.X509Certificates/X509EnhancedKeyUsageExtension.cs
System.Security.Cryptography.X509Certificates/X509ExtensionCollection.cs
System.Security.Cryptography.X509Certificates/X509Extension.cs
System.Security.Cryptography.X509Certificates/X509ExtensionEnumerator.cs
System.Security.Cryptography.X509Certificates/X509FindType.cs
System.Security.Cryptography.X509Certificates/X509IncludeOption.cs
System.Security.Cryptography.X509Certificates/X509KeyUsageExtension.cs
System.Security.Cryptography.X509Certificates/X509KeyUsageFlags.cs
System.Security.Cryptography.X509Certificates/X509NameType.cs
System.Security.Cryptography.X509Certificates/X509RevocationFlag.cs
System.Security.Cryptography.X509Certificates/X509RevocationMode.cs
System.Security.Cryptography.X509Certificates/X509Store.cs
System.Security.Cryptography.X509Certificates/X509SubjectKeyIdentifierExtension.cs
System.Security.Cryptography.X509Certificates/X509SubjectKeyIdentifierHashAlgorithm.cs
System.Security.Cryptography.X509Certificates/X509VerificationFlags.cs
System.Security.Permissions/PermissionHelper.cs
System.Security.Permissions/ResourcePermissionBase.cs
System.Security.Permissions/ResourcePermissionBaseEntry.cs
System.Security.Permissions/StorePermissionAttribute.cs
System.Security.Permissions/StorePermission.cs
System.Security.Permissions/StorePermissionFlags.cs
System/SRDescriptionAttribute.cs
System.Threading/Semaphore.cs
System.Threading/SemaphoreFullException.cs
System.Threading/ThreadExceptionEventArgs.cs
System.Threading/ThreadExceptionEventHandler.cs
System.Timers/ElapsedEventArgs.cs
System/UriBuilder.cs
System/UriComponents.cs
System/Uri.cs
System/UriFormat.cs
System/UriFormatException.cs
System/UriHostNameType.cs
System/UriHelper.cs
System/UriIdnScope.cs
System/UriKind.cs
System/UriParser.cs
System/UriPartial.cs
System/UriTypeConverter.cs
System/UriElements.cs
System/UriParseComponents.cs
System.Web/AspNetHostingPermissionAttribute.cs
System.Web/AspNetHostingPermission.cs
System.Web/AspNetHostingPermissionLevel.cs

System.Runtime.InteropServices/DefaultParameterValueAttribute.cs
System.Runtime.InteropServices/HandleCollector.cs
System.Runtime.InteropServices/StandardOleMarshalObject.cs
System.Runtime.InteropServices.ComTypes/ADVF.cs
System.Runtime.InteropServices.ComTypes/DATADIR.cs
System.Runtime.InteropServices.ComTypes/DVASPECT.cs
System.Runtime.InteropServices.ComTypes/FORMATETC.cs
System.Runtime.InteropServices.ComTypes/IAdviseSink.cs
System.Runtime.InteropServices.ComTypes/IDataObject.cs
System.Runtime.InteropServices.ComTypes/IEnumFORMATETC.cs
System.Runtime.InteropServices.ComTypes/IEnumSTATDATA.cs
System.Runtime.InteropServices.ComTypes/STATDATA.cs
System.Runtime.InteropServices.ComTypes/STGMEDIUM.cs
System.Runtime.InteropServices.ComTypes/TYMED.cs
System/IUriData.cs
System/UriData.cs
Mono.Net.Dns/DnsClass.cs
Mono.Net.Dns/DnsHeader.cs
Mono.Net.Dns/DnsOpCode.cs
Mono.Net.Dns/DnsPacket.cs
Mono.Net.Dns/DnsQClass.cs
Mono.Net.Dns/DnsQType.cs
Mono.Net.Dns/DnsQuery.cs
Mono.Net.Dns/DnsQuestion.cs
Mono.Net.Dns/DnsRCode.cs
Mono.Net.Dns/DnsResourceRecordA.cs
Mono.Net.Dns/DnsResourceRecordAAAA.cs
Mono.Net.Dns/DnsResourceRecordCName.cs
Mono.Net.Dns/DnsResourceRecord.cs
Mono.Net.Dns/DnsResourceRecordIPAddress.cs
Mono.Net.Dns/DnsResourceRecordPTR.cs
Mono.Net.Dns/DnsResponse.cs
Mono.Net.Dns/DnsType.cs
Mono.Net.Dns/DnsUtil.cs
Mono.Net.Dns/ResolverAsyncOperation.cs
Mono.Net.Dns/SimpleResolver.cs
Mono.Net.Dns/ResolverError.cs
Mono.Net.Dns/SimpleResolverEventArgs.cs
System.Net/DnsAsyncResult.cs
System.Windows.Input/ICommand.cs

ReferenceSources/AssertWrapper.cs
ReferenceSources/BinaryCompatibility.cs
ReferenceSources/ConfigurationManagerInternalFactory.cs
ReferenceSources/Logging.cs
ReferenceSources/NativeMethods.cs
ReferenceSources/SafeNativeMethods.cs
ReferenceSources/SettingsSectionInternal.cs
ReferenceSources/Socket.cs
ReferenceSources/SR.cs
ReferenceSources/SRCategoryAttribute.cs
ReferenceSources/SystemNetworkCredential.cs
ReferenceSources/WebHeaderCollectionType.cs
ReferenceSources/Win32Exception.cs

../../../external/referencesource/System/misc/PrivilegedConfigurationManager.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/Regex.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexBoyerMoore.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexCapture.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexCaptureCollection.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexCharClass.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexCode.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexCompilationInfo.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexCompiler.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexFCD.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexGroup.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexGroupCollection.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexInterpreter.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexMatch.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexMatchCollection.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexMatchTimeoutException.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexNode.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexOptions.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexParser.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexReplacement.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexRunner.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexRunnerFactory.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexTree.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/RegexWriter.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/compiledregexrunner.cs
../../../external/referencesource/System/regex/system/text/regularexpressions/compiledregexrunnerfactory.cs

../../../external/referencesource/System/sys/system/collections/concurrent/BlockingCollection.cs
../../../external/referencesource/System/sys/system/collections/concurrent/ConcurrentBag.cs

../../../external/referencesource/System/compmod/system/collections/generic/bithelper.cs
../../../external/referencesource/System/compmod/system/collections/generic/debugview.cs
../../../external/referencesource/System/compmod/system/collections/generic/iset.cs
../../../external/referencesource/System/compmod/system/collections/generic/linkedlist.cs
../../../external/referencesource/System/compmod/system/collections/generic/queue.cs
../../../external/referencesource/System/compmod/system/collections/generic/sorteddictionary.cs
../../../external/referencesource/System/compmod/system/collections/generic/sortedlist.cs
../../../external/referencesource/System/compmod/system/collections/generic/sortedset.cs
../../../external/referencesource/System/compmod/system/collections/generic/sortedsetdebugview.cs
../../../external/referencesource/System/compmod/system/collections/generic/stack.cs
../../../external/referencesource/System/compmod/system/collections/generic/throwhelper.cs

../../../external/referencesource/System/compmod/system/collections/objectmodel/observablecollection.cs
../../../external/referencesource/System/compmod/system/collections/objectmodel/readonlyobservablecollection.cs

../../../external/referencesource/System/compmod/system/collections/specialized/bitvector32.cs
../../../external/referencesource/System/compmod/system/collections/specialized/casesensitivestringdictionary.cs
../../../external/referencesource/System/compmod/system/collections/specialized/collectionsutil.cs
../../../external/referencesource/System/compmod/system/collections/specialized/fixedstringlookup.cs
../../../external/referencesource/System/compmod/system/collections/specialized/hybriddictionary.cs
../../../external/referencesource/System/compmod/system/collections/specialized/inotifycollectionchanged.cs
../../../external/referencesource/System/compmod/system/collections/specialized/iordereddictionary.cs
../../../external/referencesource/System/compmod/system/collections/specialized/listdictionary.cs
../../../external/referencesource/System/compmod/system/collections/specialized/nameobjectcollectionbase.cs
../../../external/referencesource/System/compmod/system/collections/specialized/namevaluecollection.cs
../../../external/referencesource/System/compmod/system/collections/specialized/notifycollectionchangedeventargs.cs
../../../external/referencesource/System/compmod/system/collections/specialized/ordereddictionary.cs
../../../external/referencesource/System/compmod/system/collections/specialized/stringcollection.cs
../../../external/referencesource/System/compmod/system/collections/specialized/stringdictionary.cs
../../../external/referencesource/System/compmod/system/collections/specialized/stringdictionarywithcomparer.cs

../../../external/referencesource/System/compmod/system/componentmodel/AddingNewEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/AddingNewEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/AmbientValueAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/ArrayConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/ArraySubsetEnumerator.cs
../../../external/referencesource/System/compmod/system/componentmodel/AsyncCompletedEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/AsyncCompletedEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/AsyncOperation.cs
../../../external/referencesource/System/compmod/system/componentmodel/AsyncOperationManager.cs
../../../external/referencesource/System/compmod/system/componentmodel/AttributeCollection.cs
../../../external/referencesource/System/compmod/system/componentmodel/AttributeProviderAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/BackgroundWorker.cs
../../../external/referencesource/System/compmod/system/componentmodel/BaseComponentEditor.cs
../../../external/referencesource/System/compmod/system/componentmodel/basenumberconverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/BindableAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/BindableSupport.cs
../../../external/referencesource/System/compmod/system/componentmodel/BindingDirection.cs
../../../external/referencesource/System/compmod/system/componentmodel/BindingList.cs
../../../external/referencesource/System/compmod/system/componentmodel/BooleanConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/BrowsableAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/ByteConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/CancelEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/CancelEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/CategoryAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/CharConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/CollectionChangeAction.cs
../../../external/referencesource/System/compmod/system/componentmodel/CollectionChangeEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/CollectionChangeEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/CollectionConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/ComplexBindingPropertiesAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/CompModSwitches.cs
../../../external/referencesource/System/compmod/system/componentmodel/Component.cs
../../../external/referencesource/System/compmod/system/componentmodel/ComponentCollection.cs
../../../external/referencesource/System/compmod/system/componentmodel/ComponentConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/ComponentResourceManager.cs
../../../external/referencesource/System/compmod/system/componentmodel/Container.cs
../../../external/referencesource/System/compmod/system/componentmodel/ContainerFilterService.cs
../../../external/referencesource/System/compmod/system/componentmodel/CultureInfoConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/CustomTypeDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/DataErrorsChangedEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/DataObjectAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DataObjectFieldAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DataObjectMethodAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DataObjectMethodType.cs
../../../external/referencesource/System/compmod/system/componentmodel/DateTimeConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/DateTimeOffsetConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/DebugExtendedPropertyDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/DebugReflectEventDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/DebugReflectPropertyDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/DebugTypeDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/DecimalConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/DefaultBindingPropertyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DefaultEventAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DefaultPropertyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DefaultValueAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DelegatingTypeDescriptionProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/DescriptionAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ActiveDocumentEvent.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ActiveDocumentEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/CheckoutException.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/CommandID.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentChangedEvent.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentChangedEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentChangingEvent.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentChangingEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentEvent.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentRenameEvent.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ComponentRenameEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesignerOptionService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesignerTransaction.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesignerTransactionCloseEvent.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesignerTransactionCloseEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesignerVerb.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesignerVerbCollection.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesigntimeLicenseContext.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DesigntimeLicenseContextSerializer.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DocumentCollection.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DocumentEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/DocumentEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/HelpContextType.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/HelpKeywordAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/HelpKeywordType.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IComponentChangeService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IComponentDiscoveryService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IComponentInitializer.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IDesigner.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IDesignerEventService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IDesignerFilter.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IDesignerHost.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IDesignerHostTransactionState.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IDesignerOptionService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IDictionaryService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IEventPropertyService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IExtenderListService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IExtenderProviderService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IHelpService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IInheritanceService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IMenuCommandService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/InheritanceAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/InheritanceLevel.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IReferenceService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IResourceService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IRootDesigner.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ISelectionService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/IServiceObjectContainer.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ITreeDesigner.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ITypeDescriptorFilterService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ITypeDiscoveryService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ITypeResolutionService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/MenuCommand.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/NotifyParentPropertyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ParenthesizePropertyNameAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/PropertyTabAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/PropertyTabScope.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/RefreshProperties.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/RefreshPropertiesAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/SelectionTypes.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/ComponentSerializationService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/ContextStack.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/DefaultSerializationProviderAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/DesignerLoader.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/DesignerSerializerAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/IDesignerLoaderHost.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/IDesignerLoaderService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/IDesignerSerializationManager.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/IDesignerSerializationProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/IDesignerSerializationService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/INameCreationService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/InstanceDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/MemberRelationshipService.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/ResolveNameEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/ResolveNameEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/RootDesignerSerializerAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/serialization/SerializationStore.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ServiceCreatorCallback.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ServiceObjectContainer.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/StandardCommands.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/StandardToolWindows.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ToolboxItemAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/design/ViewTechnology.cs
../../../external/referencesource/System/compmod/system/componentmodel/DesignerAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DesignerCategoryAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DesignerSerializationVisibility.cs
../../../external/referencesource/System/compmod/system/componentmodel/DesignerSerializationVisibilityAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DesignOnlyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DesignTimeVisibleAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DisplayNameAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/DoubleConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/DoWorkEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/DoWorkEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/EditorAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/EditorBrowsableAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/EnumConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/EventDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/EventDescriptorCollection.cs
../../../external/referencesource/System/compmod/system/componentmodel/EventHandlerList.cs
../../../external/referencesource/System/compmod/system/componentmodel/ExpandableObjectConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/ExtendedPropertyDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/ExtenderProvidedPropertyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/FxCopSuppression.cs
../../../external/referencesource/System/compmod/system/componentmodel/GuidConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/HandledEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/HandledEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/IBindingList.cs
../../../external/referencesource/System/compmod/system/componentmodel/IBindingListView.cs
../../../external/referencesource/System/compmod/system/componentmodel/ICancelAddNew.cs
../../../external/referencesource/System/compmod/system/componentmodel/IChangeTracking.cs
../../../external/referencesource/System/compmod/system/componentmodel/IComNativeDescriptorHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/IComponent.cs
../../../external/referencesource/System/compmod/system/componentmodel/IContainer.cs
../../../external/referencesource/System/compmod/system/componentmodel/ICustomTypeDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/IDataErrorInfo.cs
../../../external/referencesource/System/compmod/system/componentmodel/IEditableObject.cs
../../../external/referencesource/System/compmod/system/componentmodel/IExtenderProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/IIntellisenseBuilder.cs
../../../external/referencesource/System/compmod/system/componentmodel/IListSource.cs
../../../external/referencesource/System/compmod/system/componentmodel/ImmutableObjectAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/INestedContainer.cs
../../../external/referencesource/System/compmod/system/componentmodel/INestedSite.cs
../../../external/referencesource/System/compmod/system/componentmodel/InitializationEventAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/INotifyDataErrorInfo.cs
../../../external/referencesource/System/compmod/system/componentmodel/INotifyPropertyChanged.cs
../../../external/referencesource/System/compmod/system/componentmodel/INotifyPropertyChanging.cs
../../../external/referencesource/System/compmod/system/componentmodel/InstallerTypeAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/InstanceCreationEditor.cs
../../../external/referencesource/System/compmod/system/componentmodel/Int16Converter.cs
../../../external/referencesource/System/compmod/system/componentmodel/Int32Converter.cs
../../../external/referencesource/System/compmod/system/componentmodel/Int64Converter.cs
../../../external/referencesource/System/compmod/system/componentmodel/IntSecurity.cs
../../../external/referencesource/System/compmod/system/componentmodel/InvalidAsynchronousStateException.cs
../../../external/referencesource/System/compmod/system/componentmodel/InvalidEnumArgumentException.cs
../../../external/referencesource/System/compmod/system/componentmodel/IRaiseItemChangedEvents.cs
../../../external/referencesource/System/compmod/system/componentmodel/IRevertibleChangeTracking.cs
../../../external/referencesource/System/compmod/system/componentmodel/ISite.cs
../../../external/referencesource/System/compmod/system/componentmodel/ISupportInitialize.cs
../../../external/referencesource/System/compmod/system/componentmodel/ISupportInitializeNotification.cs
../../../external/referencesource/System/compmod/system/componentmodel/ISynchronizeInvoke.cs
../../../external/referencesource/System/compmod/system/componentmodel/ITypeDescriptorContext.cs
../../../external/referencesource/System/compmod/system/componentmodel/ITypedList.cs
../../../external/referencesource/System/compmod/system/componentmodel/License.cs
../../../external/referencesource/System/compmod/system/componentmodel/LicenseContext.cs
../../../external/referencesource/System/compmod/system/componentmodel/LicenseException.cs
../../../external/referencesource/System/compmod/system/componentmodel/LicenseManager.cs
../../../external/referencesource/System/compmod/system/componentmodel/LicenseProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/LicenseProviderAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/LicenseUsageMode.cs
../../../external/referencesource/System/compmod/system/componentmodel/LicFileLicenseProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/ListBindableAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/ListChangedEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/ListChangedEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/ListChangedType.cs
../../../external/referencesource/System/compmod/system/componentmodel/ListSortDescription.cs
../../../external/referencesource/System/compmod/system/componentmodel/ListSortDescriptionCollection.cs
../../../external/referencesource/System/compmod/system/componentmodel/ListSortDirection.cs
../../../external/referencesource/System/compmod/system/componentmodel/LocalizableAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/LookupBindingPropertiesAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/MarshalByValueComponent.cs
../../../external/referencesource/System/compmod/system/componentmodel/MaskedTextProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/MaskedTextResultHint.cs
../../../external/referencesource/System/compmod/system/componentmodel/MemberDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/MergablePropertyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/MultilineStringConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/NestedContainer.cs
../../../external/referencesource/System/compmod/system/componentmodel/NullableConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/PasswordPropertyTextAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/ProgressChangedEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/ProgressChangedEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/PropertyChangedEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/PropertyChangedEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/PropertyChangingEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/PropertyChangingEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/PropertyDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/PropertyDescriptorCollection.cs
../../../external/referencesource/System/compmod/system/componentmodel/ProvidePropertyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/ReadOnlyAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/RecommendedAsConfigurableAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/ReferenceConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/ReflectEventDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/ReflectPropertyDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/ReflectTypeDescriptionProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/RefreshEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/RefreshEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/RunInstallerAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/RunWorkerCompletedEventArgs.cs
../../../external/referencesource/System/compmod/system/componentmodel/RunWorkerCompletedEventHandler.cs
../../../external/referencesource/System/compmod/system/componentmodel/SByteConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/SettingsBindableAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/SingleConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/StringConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/SyntaxCheck.cs
../../../external/referencesource/System/compmod/system/componentmodel/TimeSpanConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/ToolboxItemFilterAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/ToolboxItemFilterType.cs
../../../external/referencesource/System/compmod/system/componentmodel/TypeConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/TypeConverterAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/TypeDescriptionProvider.cs
../../../external/referencesource/System/compmod/system/componentmodel/TypeDescriptionProviderAttribute.cs
../../../external/referencesource/System/compmod/system/componentmodel/TypeDescriptionProviderService.cs
../../../external/referencesource/System/compmod/system/componentmodel/TypeDescriptor.cs
../../../external/referencesource/System/compmod/system/componentmodel/TypeListConverter.cs
../../../external/referencesource/System/compmod/system/componentmodel/UInt16Converter.cs
../../../external/referencesource/System/compmod/system/componentmodel/UInt32Converter.cs
../../../external/referencesource/System/compmod/system/componentmodel/UInt64Converter.cs
../../../external/referencesource/System/compmod/system/componentmodel/WarningException.cs
../../../external/referencesource/System/compmod/system/componentmodel/Win32Exception.cs

../../../external/referencesource/System/compmod/system/diagnostics/AssertSection.cs
../../../external/referencesource/System/compmod/system/diagnostics/BooleanSwitch.cs
../../../external/referencesource/System/compmod/system/diagnostics/ConsoleTraceListener.cs
../../../external/referencesource/System/compmod/system/diagnostics/CorrelationManager.cs
../../../external/referencesource/System/compmod/system/diagnostics/Debug.cs
../../../external/referencesource/System/compmod/system/diagnostics/DefaultTraceListener.cs
../../../external/referencesource/System/compmod/system/diagnostics/DelimitedListTraceListener.cs
../../../external/referencesource/System/compmod/system/diagnostics/DiagnosticsConfiguration.cs
../../../external/referencesource/System/compmod/system/diagnostics/FilterElement.cs
../../../external/referencesource/System/compmod/system/diagnostics/ListenerElementsCollection.cs
../../../external/referencesource/System/compmod/system/diagnostics/PerfCounterSection.cs
../../../external/referencesource/System/compmod/system/diagnostics/SeverityFilter.cs
../../../external/referencesource/System/compmod/system/diagnostics/SourceElementsCollection.cs
../../../external/referencesource/System/compmod/system/diagnostics/SourceFilter.cs
../../../external/referencesource/System/compmod/system/diagnostics/SourceLevels.cs
../../../external/referencesource/System/compmod/system/diagnostics/SourceSwitch.cs
../../../external/referencesource/System/compmod/system/diagnostics/SwitchAttribute.cs
../../../external/referencesource/System/compmod/system/diagnostics/Switch.cs
../../../external/referencesource/System/compmod/system/diagnostics/SwitchElementsCollection.cs
../../../external/referencesource/System/compmod/system/diagnostics/SwitchLevelAttribute.cs
../../../external/referencesource/System/compmod/system/diagnostics/SystemDiagnosticsSection.cs
../../../external/referencesource/System/compmod/system/diagnostics/TextWriterTraceListener.cs
../../../external/referencesource/System/compmod/system/diagnostics/Trace.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceEventCache.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceEventType.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceFilter.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceInternal.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceLevel.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceListener.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceListeners.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceOptions.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceSection.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceSource.cs
../../../external/referencesource/System/compmod/system/diagnostics/TraceSwitch.cs
../../../external/referencesource/System/compmod/system/diagnostics/traceutils.cs
../../../external/referencesource/System/compmod/system/diagnostics/TypedElement.cs
../../../external/referencesource/System/compmod/system/diagnostics/XmlWriterTraceListener.cs

../../../external/referencesource/System/net/System/Net/_BufferOffsetSize.cs
../../../external/referencesource/System/net/System/Net/_LazyAsyncResult.cs
../../../external/referencesource/System/net/System/Net/_LoggingObject.cs
../../../external/referencesource/System/net/System/Net/_ScatterGatherBuffers.cs
../../../external/referencesource/System/net/System/Net/cookie.cs
../../../external/referencesource/System/net/System/Net/cookiecollection.cs
../../../external/referencesource/System/net/System/Net/cookiecontainer.cs
../../../external/referencesource/System/net/System/Net/cookieexception.cs
../../../external/referencesource/System/net/System/Net/Internal.cs
../../../external/referencesource/System/net/System/Net/UnicodeDecodingConformance.cs
../../../external/referencesource/System/net/System/Net/UnicodeEncodingConformance.cs
../../../external/referencesource/System/net/System/Net/webclient.cs
../../../external/referencesource/System/net/System/Net/WebPermission.cs
../../../external/referencesource/System/net/System/Net/WriteStreamClosedEventArgs.cs

../../../external/referencesource/System/sys/system/threading/Barrier.cs

../../../external/referencesource/System/security/system/security/permissions/typedescriptorpermission.cs

../../../external/referencesource/System/services/timers/system/timers/ElapsedEventHandler.cs
../../../external/referencesource/System/services/timers/system/timers/Timer.cs
../../../external/referencesource/System/services/timers/system/timers/TimersDescriptionAttribute.cs

../../../external/referencesource/System/misc/hresults.cs
../../../external/referencesource/System/misc/invariantcomparer.cs
../../../external/referencesource/System/misc/SecurityUtils.cs
../../../external/referencesource/System/misc/WeakHashtable.cs