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

corlib.dll.sources « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1a958a13089d6c783e4cb2e0b12dc30af574866 (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
Assembly/AssemblyInfo.cs
Assembly/Consts.cs
Assembly/Locale.cs
Microsoft.Win32/IRegistryApi.cs
Microsoft.Win32/RegistryKey.cs
Microsoft.Win32/Registry.cs
Microsoft.Win32/RegistryHive.cs
Microsoft.Win32/Win32RegistryApi.cs
Microsoft.Win32/Win32ResultCode.cs
Mono/Runtime.cs
Mono.Math/BigInteger.cs
Mono.Math.Prime/ConfidenceFactor.cs
Mono.Math.Prime/PrimalityTests.cs
Mono.Math.Prime.Generator/NextPrimeFinder.cs
Mono.Math.Prime.Generator/PrimeGeneratorBase.cs
Mono.Math.Prime.Generator/SequentialSearchPrimeGeneratorBase.cs
Mono.Security/ASN1.cs
Mono.Security/ASN1Convert.cs
Mono.Security/BitConverterLE.cs
Mono.Security/PKCS7.cs
Mono.Security/StrongName.cs
Mono.Security/StrongNameManager.cs
Mono.Security.Authenticode/AuthenticodeBase.cs
Mono.Security.Authenticode/AuthenticodeDeformatter.cs
Mono.Security.Cryptography/CryptoConvert.cs
Mono.Security.Cryptography/CryptoTools.cs
Mono.Security.Cryptography/DSAManaged.cs
Mono.Security.Cryptography/KeyPairPersistence.cs
Mono.Security.Cryptography/PKCS1.cs
Mono.Security.Cryptography/HMACAlgorithm.cs
Mono.Security.Cryptography/MACAlgorithm.cs
Mono.Security.Cryptography/SymmetricTransform.cs
Mono.Security.Cryptography/RSAManaged.cs
Mono.Security.X509/X501Name.cs
Mono.Security.X509/X509Certificate.cs
Mono.Security.X509/X509CertificateCollection.cs
Mono.Security.X509/X509Chain.cs
Mono.Security.X509/X509ChainStatusFlags.cs
Mono.Security.X509/X509CRL.cs
Mono.Security.X509/X509Extension.cs
Mono.Security.X509/X509Extensions.cs
Mono.Security.X509/X509Store.cs
Mono.Security.X509/X509Stores.cs
Mono.Security.X509/X509StoreManager.cs
Mono.Security.X509/X520Attributes.cs
Mono.Security.X509.Extensions/BasicConstraintsExtension.cs
Mono.Security.X509.Extensions/KeyUsageExtension.cs
Mono.Security.X509.Extensions/SubjectKeyIdentifierExtension.cs
Mono.Xml/MiniParser.cs
Mono.Xml/SecurityParser.cs
System/Activator.cs
System/AppDomain.cs
System/AppDomainSetup.cs
System/AppDomainUnloadedException.cs
System/ApplicationException.cs
System/ArgIterator.cs
System/ArgumentException.cs
System/ArgumentNullException.cs
System/ArgumentOutOfRangeException.cs
System/ArithmeticException.cs
System/Array.cs
System/ArrayTypeMismatchException.cs
System/AssemblyLoadEventArgs.cs
System/AssemblyLoadEventHandler.cs
System/AsyncCallback.cs
System/Attribute.cs
System/AttributeTargets.cs
System/AttributeUsageAttribute.cs
System/BadImageFormatException.cs
System/BitConverter.cs
System/Boolean.cs
System/Buffer.cs
System/Byte.cs
System/CannotUnloadAppDomainException.cs
System/Char.cs
System/CharEnumerator.cs
System/CLSCompliantAttribute.cs
System/Console.cs
System/ContextBoundObject.cs
System/ContextMarshalException.cs
System/ContextStaticAttribute.cs
System/Convert.cs
System/CrossAppDomainDelegate.cs
System/DateTime.cs
System/DBNull.cs
System/Decimal.cs
System/DecimalFormatter.cs
System/Delegate.cs
System/DelegateSerializationHolder.cs
System/DivideByZeroException.cs
System/DllNotFoundException.cs
System/Double.cs
System/DoubleFormatter.cs
System/DuplicateWaitObjectException.cs
System/EntryPointNotFoundException.cs
System/Enum.cs
System/Environment.cs
System/EventArgs.cs
System/EventHandler.cs
System/Exception.cs
System/ExecutionEngineException.cs
System/FieldAccessException.cs
System/FlagsAttribute.cs
System/FloatingPointFormatter.cs
System/FormatException.cs
System/GC.cs
System/Guid.cs
System/IAppDomainSetup.cs
System/IAsyncResult.cs
System/ICloneable.cs
System/IComparable.cs
System/IConvertible.cs
System/ICustomFormatter.cs
System/IDisposable.cs
System/IFormatProvider.cs
System/IFormattable.cs
System/IndexOutOfRangeException.cs
System/Int16.cs
System/Int32.cs
System/Int64.cs
System/IntegerFormatter.cs
System/IntPtr.cs
System/InvalidCastException.cs
System/InvalidOperationException.cs
System/InvalidProgramException.cs
System/IServiceProvider.cs
System/LoaderOptimization.cs
System/LoaderOptimizationAttribute.cs
System/LocalDataStoreSlot.cs
System/MarshalByRefObject.cs
System/Math.cs
System/MemberAccessException.cs
System/MethodAccessException.cs
System/MissingFieldException.cs
System/MissingMemberException.cs
System/MissingMethodException.cs
System/MonoCustomAttrs.cs
System/MonoDummy.cs
System/MonoType.cs
System/MTAThreadAttribute.cs
System/MulticastDelegate.cs
System/MulticastNotSupportedException.cs
System/NonSerializedAttribute.cs
System/NotFiniteNumberException.cs
System/NotImplementedException.cs
System/NotSupportedException.cs
System/Nullable.cs
System/NullReferenceException.cs
System/Object.cs
System/ObjectDisposedException.cs
System/ObsoleteAttribute.cs
System/OperatingSystem.cs
System/OutOfMemoryException.cs
System/OverflowException.cs
System/ParamArrayAttribute.cs
System/PlatformID.cs
System/PlatformNotSupportedException.cs
System/Random.cs
System/RankException.cs
System/ResolveEventArgs.cs
System/ResolveEventHandler.cs
System/RuntimeArgumentHandle.cs
System/RuntimeFieldHandle.cs
System/RuntimeMethodHandle.cs
System/RuntimeTypeHandle.cs
System/SByte.cs
System/SerializableAttribute.cs
System/Single.cs
System/SingleFormatter.cs
System/StackOverflowException.cs
System/STAThreadAttribute.cs
System/String.cs
System/SystemException.cs
System/ThreadStaticAttribute.cs
System/TimeSpan.cs
System/TimeZone.cs
System/TODOAttribute.cs
System/Type.cs
System/TypeCode.cs
System/TypedReference.cs
System/TypeInitializationException.cs
System/TypeLoadException.cs
System/TypeUnloadedException.cs
System/UInt16.cs
System/UInt32.cs
System/UInt64.cs
System/UIntPtr.cs
System/UnauthorizedAccessException.cs
System/UnhandledExceptionEventArgs.cs
System/UnhandledExceptionEventHandler.cs
System/UnitySerializationHolder.cs
System/ValueType.cs
System/Version.cs
System/Void.cs
System/WeakReference.cs
System/_AppDomain.cs
System/__ComObject.cs
System.Collections/ArrayList.cs
System.Collections/BitArray.cs
System.Collections/CaseInsensitiveComparer.cs
System.Collections/CaseInsensitiveHashCodeProvider.cs
System.Collections/CollectionBase.cs
System.Collections/Comparer.cs
System.Collections/DictionaryBase.cs
System.Collections/DictionaryEntry.cs
System.Collections/Hashtable.cs
System.Collections/ICollection.cs
System.Collections/IComparer.cs
System.Collections/IDictionary.cs
System.Collections/IDictionaryEnumerator.cs
System.Collections/IEnumerable.cs
System.Collections/IEnumerator.cs
System.Collections/IHashCodeProvider.cs
System.Collections/IList.cs
System.Collections/Queue.cs
System.Collections/ReadOnlyCollectionBase.cs
System.Collections/SortedList.cs
System.Collections/Stack.cs
System.Configuration.Assemblies/AssemblyHash.cs
System.Configuration.Assemblies/AssemblyHashAlgorithm.cs
System.Configuration.Assemblies/AssemblyVersionCompatibility.cs
System.Configuration.Assemblies/ProcessorID.cs
System.Diagnostics/ConditionalAttribute.cs
System.Diagnostics/DebuggableAttribute.cs
System.Diagnostics/Debugger.cs
System.Diagnostics/DebuggerHiddenAttribute.cs
System.Diagnostics/DebuggerStepThroughAttribute.cs
System.Diagnostics/StackFrame.cs
System.Diagnostics/StackTrace.cs
System.Diagnostics.SymbolStore/ISymbolBinder.cs
System.Diagnostics.SymbolStore/ISymbolDocument.cs
System.Diagnostics.SymbolStore/ISymbolDocumentWriter.cs
System.Diagnostics.SymbolStore/ISymbolMethod.cs
System.Diagnostics.SymbolStore/ISymbolNamespace.cs
System.Diagnostics.SymbolStore/ISymbolReader.cs
System.Diagnostics.SymbolStore/ISymbolScope.cs
System.Diagnostics.SymbolStore/ISymbolVariable.cs
System.Diagnostics.SymbolStore/ISymbolWriter.cs
System.Diagnostics.SymbolStore/SymAddressKind.cs
System.Diagnostics.SymbolStore/SymbolToken.cs
System.Diagnostics.SymbolStore/SymDocumentType.cs
System.Diagnostics.SymbolStore/SymLanguageType.cs
System.Diagnostics.SymbolStore/SymLanguageVendor.cs
System.Globalization/Calendar.cs
System.Globalization/CalendarWeekRule.cs
System.Globalization/CalendricalCalculations.cs
System.Globalization/CompareInfo.cs
System.Globalization/CompareOptions.cs
System.Globalization/CultureInfo.cs
System.Globalization/CultureTypes.cs
System.Globalization/DateTimeFormatInfo.cs
System.Globalization/DateTimeStyles.cs
System.Globalization/DaylightTime.cs
System.Globalization/GregorianCalendar.cs
System.Globalization/GregorianCalendarTypes.cs
System.Globalization/HebrewCalendar.cs
System.Globalization/HijriCalendar.cs
System.Globalization/JapaneseCalendar.cs
System.Globalization/JulianCalendar.cs
System.Globalization/KoreanCalendar.cs
System.Globalization/NumberFormatInfo.cs
System.Globalization/NumberStyles.cs
System.Globalization/RegionInfo.cs
System.Globalization/SortKey.cs
System.Globalization/StringInfo.cs
System.Globalization/TaiwanCalendar.cs
System.Globalization/TextElementEnumerator.cs
System.Globalization/TextInfo.cs
System.Globalization/ThaiBuddhistCalendar.cs
System.Globalization/UnicodeCategory.cs
System.IO/BinaryReader.cs
System.IO/BinaryWriter.cs
System.IO/BufferedStream.cs
System.IO/CheckArgument.cs
System.IO/CheckPermission.cs
System.IO/Directory.cs
System.IO/DirectoryInfo.cs
System.IO/DirectoryNotFoundException.cs
System.IO/EndOfStreamException.cs
System.IO/File.cs
System.IO/FileAccess.cs
System.IO/FileAttributes.cs
System.IO/FileInfo.cs
System.IO/FileLoadException.cs
System.IO/FileMode.cs
System.IO/FileNotFoundException.cs
System.IO/FileShare.cs
System.IO/FileStream.cs
System.IO/FileStreamAsyncResult.cs
System.IO/FileSystemInfo.cs
System.IO/IntPtrStream.cs
System.IO/IOException.cs
System.IO/MemoryStream.cs
System.IO/MonoIO.cs
System.IO/MonoIOError.cs
System.IO/MonoFileType.cs
System.IO/MonoIOStat.cs
System.IO/Path.cs
System.IO/PathTooLongException.cs
System.IO/SearchPattern.cs
System.IO/SeekOrigin.cs
System.IO/Stream.cs
System.IO/StreamAsyncResult.cs
System.IO/StreamReader.cs
System.IO/StreamWriter.cs
System.IO/StringReader.cs
System.IO/StringWriter.cs
System.IO/TextReader.cs
System.IO/TextWriter.cs
System.IO/UnexceptionalStreamReader.cs
System.IO/UnexceptionalStreamWriter.cs
System.IO.IsolatedStorage/INormalizeForIsolatedStorage.cs
System.IO.IsolatedStorage/IsolatedStorage.cs
System.IO.IsolatedStorage/IsolatedStorageException.cs
System.IO.IsolatedStorage/IsolatedStorageFile.cs
System.IO.IsolatedStorage/IsolatedStorageInfo.cs
System.IO.IsolatedStorage/IsolatedStorageFileStream.cs
System.IO.IsolatedStorage/IsolatedStorageScope.cs
System.Reflection/AmbiguousMatchException.cs
System.Reflection/Assembly.cs
System.Reflection/AssemblyAlgorithmIdAttribute.cs
System.Reflection/AssemblyCompanyAttribute.cs
System.Reflection/AssemblyConfigurationAttribute.cs
System.Reflection/AssemblyCopyrightAttribute.cs
System.Reflection/AssemblyCultureAttribute.cs
System.Reflection/AssemblyDefaultAliasAttribute.cs
System.Reflection/AssemblyDelaySignAttribute.cs
System.Reflection/AssemblyDescriptionAttribute.cs
System.Reflection/AssemblyFileVersionAttribute.cs
System.Reflection/AssemblyFlagsAttribute.cs
System.Reflection/AssemblyInformationalVersionAttribute.cs
System.Reflection/AssemblyKeyFileAttribute.cs
System.Reflection/AssemblyKeyNameAttribute.cs
System.Reflection/AssemblyName.cs
System.Reflection/AssemblyNameFlags.cs
System.Reflection/AssemblyNameProxy.cs
System.Reflection/AssemblyProductAttribute.cs
System.Reflection/AssemblyTitleAttribute.cs
System.Reflection/AssemblyTradeMarkAttribute.cs
System.Reflection/AssemblyVersionAttribute.cs
System.Reflection/Binder.cs
System.Reflection/BindingFlags.cs
System.Reflection/CallingConventions.cs
System.Reflection/ConstructorInfo.cs
System.Reflection/CustomAttributeFormatException.cs
System.Reflection/DefaultMemberAttribute.cs
System.Reflection/EventAttributes.cs
System.Reflection/EventInfo.cs
System.Reflection/FieldAttributes.cs
System.Reflection/FieldInfo.cs
System.Reflection/ICustomAttributeProvider.cs
System.Reflection/InterfaceMapping.cs
System.Reflection/InvalidFilterCriteriaException.cs
System.Reflection/IReflect.cs
System.Reflection/ManifestResourceInfo.cs
System.Reflection/MemberFilter.cs
System.Reflection/MemberInfo.cs
System.Reflection/MemberTypes.cs
System.Reflection/MethodAttributes.cs
System.Reflection/MethodBase.cs
System.Reflection/MethodImplAttributes.cs
System.Reflection/MethodInfo.cs
System.Reflection/Missing.cs
System.Reflection/Module.cs
System.Reflection/ModuleResolveEventHandler.cs
System.Reflection/MonoGenericInst.cs
System.Reflection/MonoEvent.cs
System.Reflection/MonoField.cs
System.Reflection/MonoMethod.cs
System.Reflection/MonoProperty.cs
System.Reflection/ParameterAttributes.cs
System.Reflection/ParameterInfo.cs
System.Reflection/ParameterModifier.cs
System.Reflection/Pointer.cs
System.Reflection/PropertyAttributes.cs
System.Reflection/PropertyInfo.cs
System.Reflection/ReflectionTypeLoadException.cs
System.Reflection/ResourceAttributes.cs
System.Reflection/ResourceLocation.cs
System.Reflection/ReflectionSerializationHolder.cs
System.Reflection/StrongNameKeyPair.cs
System.Reflection/TargetException.cs
System.Reflection/TargetInvocationException.cs
System.Reflection/TargetParameterCountException.cs
System.Reflection/TypeAttributes.cs
System.Reflection/TypeDelegator.cs
System.Reflection/TypeFilter.cs
System.Reflection.Emit/AssemblyBuilder.cs
System.Reflection.Emit/AssemblyBuilderAccess.cs
System.Reflection.Emit/ConstructorBuilder.cs
System.Reflection.Emit/CustomAttributeBuilder.cs
System.Reflection.Emit/DynamicMethod.cs
System.Reflection.Emit/EnumBuilder.cs
System.Reflection.Emit/EventBuilder.cs
System.Reflection.Emit/EventToken.cs
System.Reflection.Emit/FieldBuilder.cs
System.Reflection.Emit/FieldToken.cs
System.Reflection.Emit/FlowControl.cs
System.Reflection.Emit/GenericTypeParameterBuilder.cs
System.Reflection.Emit/IMonoSymbolWriter.cs
System.Reflection.Emit/ILGenerator.cs
System.Reflection.Emit/Label.cs
System.Reflection.Emit/LocalBuilder.cs
System.Reflection.Emit/MethodBuilder.cs
System.Reflection.Emit/MethodToken.cs
System.Reflection.Emit/MethodRental.cs
System.Reflection.Emit/ModuleBuilder.cs
System.Reflection.Emit/MonoArrayMethod.cs
System.Reflection.Emit/OpCode.cs
System.Reflection.Emit/OpCodes.cs
System.Reflection.Emit/OpCodeType.cs
System.Reflection.Emit/OperandType.cs
System.Reflection.Emit/PackingSize.cs
System.Reflection.Emit/ParameterBuilder.cs
System.Reflection.Emit/ParameterToken.cs
System.Reflection.Emit/PEFileKinds.cs
System.Reflection.Emit/PropertyBuilder.cs
System.Reflection.Emit/PropertyToken.cs
System.Reflection.Emit/SignatureHelper.cs
System.Reflection.Emit/SignatureToken.cs
System.Reflection.Emit/StackBehaviour.cs
System.Reflection.Emit/StringToken.cs
System.Reflection.Emit/TypeBuilder.cs
System.Reflection.Emit/TypeToken.cs
System.Reflection.Emit/UnmanagedMarshal.cs
System.Resources/IResourceReader.cs
System.Resources/IResourceWriter.cs
System.Resources/MissingManifestResourceException.cs
System.Resources/NeutralResourcesLanguageAttribute.cs
System.Resources/ResourceManager.cs
System.Resources/ResourceReader.cs
System.Resources/ResourceSet.cs
System.Resources/ResourceWriter.cs
System.Resources/SatelliteContractVersionAttribute.cs
System.Resources/Win32Resources.cs
System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs
System.Runtime.CompilerServices/CallConvCdecl.cs
System.Runtime.CompilerServices/CallConvFastcall.cs
System.Runtime.CompilerServices/CallConvThiscall.cs
System.Runtime.CompilerServices/CallConvStdcall.cs
System.Runtime.CompilerServices/CompilationRelaxationsAttribute.cs
System.Runtime.CompilerServices/CompilerGlobalScopeAttribute.cs
System.Runtime.CompilerServices/CustomConstantAttribute.cs
System.Runtime.CompilerServices/DateTimeConstantAttribute.cs
System.Runtime.CompilerServices/DecimalConstantAttribute.cs
System.Runtime.CompilerServices/DiscardableAttribute.cs
System.Runtime.CompilerServices/IDispatchConstantAttribute.cs
System.Runtime.CompilerServices/IUnknownConstantAttribute.cs
System.Runtime.CompilerServices/IndexerNameAttribute.cs
System.Runtime.CompilerServices/IsVolatile.cs
System.Runtime.CompilerServices/MethodCodeType.cs
System.Runtime.CompilerServices/MethodImplAttribute.cs
System.Runtime.CompilerServices/MethodImplOptions.cs
System.Runtime.CompilerServices/NewConstraintAttribute.cs
System.Runtime.CompilerServices/RequiredAttributeAttribute.cs
System.Runtime.CompilerServices/RuntimeHelpers.cs
System.Runtime.InteropServices/ArrayWithOffset.cs
System.Runtime.InteropServices/AssemblyRegistrationFlags.cs
System.Runtime.InteropServices/AutomationProxyAttribute.cs
System.Runtime.InteropServices/BestFitMappingAttribute.cs
System.Runtime.InteropServices/BIND_OPTS.cs
System.Runtime.InteropServices/BINDPTR.cs
System.Runtime.InteropServices/CALLCONV.cs
System.Runtime.InteropServices/CallingConvention.cs
System.Runtime.InteropServices/CharSet.cs
System.Runtime.InteropServices/ClassInterfaceAttribute.cs
System.Runtime.InteropServices/ClassInterfaceType.cs
System.Runtime.InteropServices/CoClassAttribute.cs
System.Runtime.InteropServices/ComAliasNameAttribute.cs
System.Runtime.InteropServices/ComCompatibleVersionAttribute.cs
System.Runtime.InteropServices/ComConversionLossAttribute.cs
System.Runtime.InteropServices/COMException.cs
System.Runtime.InteropServices/ComEventInterfaceAttribute.cs
System.Runtime.InteropServices/ComImportAttribute.cs
System.Runtime.InteropServices/ComInterfaceType.cs
System.Runtime.InteropServices/ComMemberType.cs
System.Runtime.InteropServices/ComRegisterFunctionAttribute.cs
System.Runtime.InteropServices/ComSourceInterfacesAttribute.cs
System.Runtime.InteropServices/ComUnregisterFunctionAttribute.cs
System.Runtime.InteropServices/ComVisible.cs
System.Runtime.InteropServices/CONNECTDATA.cs
System.Runtime.InteropServices/CurrencyWrapper.cs
System.Runtime.InteropServices/DESCKIND.cs
System.Runtime.InteropServices/DispatchWrapper.cs
System.Runtime.InteropServices/DISPPARAMS.cs
System.Runtime.InteropServices/DispIdAttribute.cs
System.Runtime.InteropServices/DllImportAttribute.cs
System.Runtime.InteropServices/ELEMDESC.cs
System.Runtime.InteropServices/ErrorWrapper.cs
System.Runtime.InteropServices/EXCEPINFO.cs
System.Runtime.InteropServices/ExporterEventKind.cs
System.Runtime.InteropServices/ExtensibleClassFactory.cs
System.Runtime.InteropServices/ExternalException.cs
System.Runtime.InteropServices/FieldOffsetAttribute.cs
System.Runtime.InteropServices/FILETIME.cs
System.Runtime.InteropServices/FUNCDESC.cs
System.Runtime.InteropServices/FUNCFLAGS.cs
System.Runtime.InteropServices/FUNCKIND.cs
System.Runtime.InteropServices/GCHandle.cs
System.Runtime.InteropServices/GCHandleType.cs
System.Runtime.InteropServices/GuidAttribute.cs
System.Runtime.InteropServices/HandleRef.cs
System.Runtime.InteropServices/ICustomAdapter.cs
System.Runtime.InteropServices/ICustomFactory.cs
System.Runtime.InteropServices/ICustomMarshaler.cs
System.Runtime.InteropServices/IDispatchImplAttribute.cs
System.Runtime.InteropServices/IDispatchImplType.cs
System.Runtime.InteropServices/IDLDESC.cs
System.Runtime.InteropServices/IDLFLAG.cs
System.Runtime.InteropServices/IMPLTYPEFLAGS.cs
System.Runtime.InteropServices/INVOKEKIND.cs
System.Runtime.InteropServices/IRegistrationServices.cs
System.Runtime.InteropServices/ITypeLibConverter.cs
System.Runtime.InteropServices/ITypeLibExporterNameProvider.cs
System.Runtime.InteropServices/ITypeLibExporterNotifySink.cs
System.Runtime.InteropServices/ITypeLibImporterNotifySink.cs
System.Runtime.InteropServices/ImportedFromTypeLibAttribute.cs
System.Runtime.InteropServices/ImporterEventKind.cs
System.Runtime.InteropServices/InAttribute.cs
System.Runtime.InteropServices/InterfaceTypeAttribute.cs
System.Runtime.InteropServices/InvalidComObjectException.cs
System.Runtime.InteropServices/InvalidOleVariantTypeException.cs
System.Runtime.InteropServices/LCIDConversionAttribute.cs
System.Runtime.InteropServices/LIBFLAGS.cs
System.Runtime.InteropServices/LayoutKind.cs
System.Runtime.InteropServices/Marshal.cs
System.Runtime.InteropServices/MarshalAsAttribute.cs
System.Runtime.InteropServices/MarshalDirectiveException.cs
System.Runtime.InteropServices/ObjectCreationDelegate.cs
System.Runtime.InteropServices/OptionalAttribute.cs
System.Runtime.InteropServices/OutAttribute.cs
System.Runtime.InteropServices/PARAMDESC.cs
System.Runtime.InteropServices/PARAMFLAG.cs
System.Runtime.InteropServices/PreserveSigAttribute.cs
System.Runtime.InteropServices/PrimaryInteropAssemblyAttribute.cs
System.Runtime.InteropServices/SEHException.cs
System.Runtime.InteropServices/STATSTG.cs
System.Runtime.InteropServices/ProgIdAttribute.cs
System.Runtime.InteropServices/RegistrationServices.cs
System.Runtime.InteropServices/RuntimeEnvironment.cs
System.Runtime.InteropServices/SafeArrayRankMismatchException.cs
System.Runtime.InteropServices/SafeArrayTypeMismatchException.cs
System.Runtime.InteropServices/SetWin32ContextInIDispatchAttribute.cs
System.Runtime.InteropServices/StructLayoutAttribute.cs
System.Runtime.InteropServices/SYSKIND.cs
System.Runtime.InteropServices/TYPEATTR.cs
System.Runtime.InteropServices/TYPEDESC.cs
System.Runtime.InteropServices/TYPEFLAGS.cs
System.Runtime.InteropServices/TYPEKIND.cs
System.Runtime.InteropServices/TYPELIBATTR.cs
System.Runtime.InteropServices/TypeLibConverter.cs
System.Runtime.InteropServices/TypeLibExporterFlags.cs
System.Runtime.InteropServices/TypeLibFuncAttribute.cs
System.Runtime.InteropServices/TypeLibFuncFlags.cs
System.Runtime.InteropServices/TypeLibImporterFlags.cs
System.Runtime.InteropServices/TypeLibTypeAttribute.cs
System.Runtime.InteropServices/TypeLibTypeFlags.cs
System.Runtime.InteropServices/TypeLibVarAttribute.cs
System.Runtime.InteropServices/TypeLibVarFlags.cs
System.Runtime.InteropServices/TypeLibVersionAttribute.cs
System.Runtime.InteropServices/UCOMIBindCtx.cs
System.Runtime.InteropServices/UCOMIConnectionPoint.cs
System.Runtime.InteropServices/UCOMIConnectionPointContainer.cs
System.Runtime.InteropServices/UCOMIEnumConnectionPoints.cs
System.Runtime.InteropServices/UCOMIEnumConnections.cs
System.Runtime.InteropServices/UCOMIEnumMoniker.cs
System.Runtime.InteropServices/UCOMIEnumString.cs
System.Runtime.InteropServices/UCOMIEnumVARIANT.cs
System.Runtime.InteropServices/UCOMIMoniker.cs
System.Runtime.InteropServices/UCOMIPersistFile.cs
System.Runtime.InteropServices/UCOMIRunningObjectTable.cs
System.Runtime.InteropServices/UCOMIStream.cs
System.Runtime.InteropServices/UCOMITypeComp.cs
System.Runtime.InteropServices/UCOMITypeInfo.cs
System.Runtime.InteropServices/UCOMITypeLib.cs
System.Runtime.InteropServices/UnknownWrapper.cs
System.Runtime.InteropServices/UnmanagedType.cs
System.Runtime.InteropServices/VARDESC.cs
System.Runtime.InteropServices/VarEnum.cs
System.Runtime.InteropServices/VARFLAGS.cs
System.Runtime.InteropServices/VariantWrapper.cs
System.Runtime.InteropServices.Expando/IExpando.cs
System.Runtime.Remoting/ActivatedClientTypeEntry.cs
System.Runtime.Remoting/ActivatedServiceTypeEntry.cs
System.Runtime.Remoting/EnvoyInfo.cs
System.Runtime.Remoting/IObjectHandle.cs
System.Runtime.Remoting/IChannelInfo.cs
System.Runtime.Remoting/Identity.cs
System.Runtime.Remoting/InternalRemotingServices.cs
System.Runtime.Remoting/IEnvoyInfo.cs
System.Runtime.Remoting/IRemotingTypeInfo.cs
System.Runtime.Remoting/ObjectHandle.cs
System.Runtime.Remoting/ObjRef.cs
System.Runtime.Remoting/RemotingConfiguration.cs
System.Runtime.Remoting/RemotingException.cs
System.Runtime.Remoting/RemotingTimeoutException.cs
System.Runtime.Remoting/RemotingServices.cs
System.Runtime.Remoting/ServerException.cs
System.Runtime.Remoting/ServerIdentity.cs
System.Runtime.Remoting/SoapServices.cs
System.Runtime.Remoting/TypeEntry.cs
System.Runtime.Remoting/TypeInfo.cs
System.Runtime.Remoting/WellKnownObjectMode.cs
System.Runtime.Remoting/WellKnownClientTypeEntry.cs
System.Runtime.Remoting/WellKnownServiceTypeEntry.cs
System.Runtime.Remoting.Activation/ActivationServices.cs
System.Runtime.Remoting.Activation/ActivatorLevel.cs
System.Runtime.Remoting.Activation/AppDomainLevelActivator.cs
System.Runtime.Remoting.Activation/ConstructionLevelActivator.cs
System.Runtime.Remoting.Activation/ContextLevelActivator.cs
System.Runtime.Remoting.Activation/IActivator.cs
System.Runtime.Remoting.Activation/IConstructionCallMessage.cs
System.Runtime.Remoting.Activation/IConstructionReturnMessage.cs
System.Runtime.Remoting.Activation/RemoteActivator.cs
System.Runtime.Remoting.Activation/RemoteActivationAttribute.cs
System.Runtime.Remoting.Activation/UrlAttribute.cs
System.Runtime.Remoting.Channels/AggregateDictionary.cs
System.Runtime.Remoting.Channels/BaseChannelObjectWithProperties.cs
System.Runtime.Remoting.Channels/BaseChannelSinkWithProperties.cs
System.Runtime.Remoting.Channels/BaseChannelWithProperties.cs
System.Runtime.Remoting.Channels/ChannelDataStore.cs
System.Runtime.Remoting.Channels/ChannelServices.cs
System.Runtime.Remoting.Channels/ChannelSinkStackEntry.cs
System.Runtime.Remoting.Channels/ClientChannelSinkStack.cs
System.Runtime.Remoting.Channels/IChannel.cs
System.Runtime.Remoting.Channels/IChannelDataStore.cs
System.Runtime.Remoting.Channels/IChannelReceiver.cs
System.Runtime.Remoting.Channels/IChannelReceiverHook.cs
System.Runtime.Remoting.Channels/IChannelSender.cs
System.Runtime.Remoting.Channels/IChannelSinkBase.cs
System.Runtime.Remoting.Channels/IClientChannelSink.cs
System.Runtime.Remoting.Channels/IClientChannelSinkProvider.cs
System.Runtime.Remoting.Channels/IClientChannelSinkStack.cs
System.Runtime.Remoting.Channels/IClientFormatterSink.cs
System.Runtime.Remoting.Channels/IClientFormatterSinkProvider.cs
System.Runtime.Remoting.Channels/IClientResponseChannelSinkStack.cs
System.Runtime.Remoting.Channels/IServerResponseChannelSinkStack.cs
System.Runtime.Remoting.Channels/ServerDispatchSink.cs
System.Runtime.Remoting.Channels/ServerDispatchSinkProvider.cs
System.Runtime.Remoting.Channels/IServerChannelSink.cs
System.Runtime.Remoting.Channels/IServerChannelSinkProvider.cs
System.Runtime.Remoting.Channels/IServerChannelSinkStack.cs
System.Runtime.Remoting.Channels/IServerFormatterSinkProvider.cs
System.Runtime.Remoting.Channels/ITransportHeaders.cs
System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs
System.Runtime.Remoting.Channels/ServerProcessing.cs
System.Runtime.Remoting.Channels/SinkProviderData.cs
System.Runtime.Remoting.Channels/TransportHeaders.cs
System.Runtime.Remoting.Channels/CrossAppDomainChannel.cs
System.Runtime.Remoting.Contexts/Context.cs
System.Runtime.Remoting.Contexts/ContextAttribute.cs
System.Runtime.Remoting.Contexts/ContextProperty.cs
System.Runtime.Remoting.Contexts/CrossContextChannel.cs
System.Runtime.Remoting.Contexts/CrossContextDelegate.cs
System.Runtime.Remoting.Contexts/IContextAttribute.cs
System.Runtime.Remoting.Contexts/IContextProperty.cs
System.Runtime.Remoting.Contexts/IContextPropertyActivator.cs
System.Runtime.Remoting.Contexts/IContributeClientContextSink.cs
System.Runtime.Remoting.Contexts/IContributeDynamicSink.cs
System.Runtime.Remoting.Contexts/IContributeEnvoySink.cs
System.Runtime.Remoting.Contexts/IContributeObjectSink.cs
System.Runtime.Remoting.Contexts/IContributeServerContextSink.cs
System.Runtime.Remoting.Contexts/IDynamicMessageSink.cs
System.Runtime.Remoting.Contexts/IDynamicProperty.cs
System.Runtime.Remoting.Contexts/SynchronizationAttribute.cs
System.Runtime.Remoting.Lifetime/ClientSponsor.cs
System.Runtime.Remoting.Lifetime/ILease.cs
System.Runtime.Remoting.Lifetime/ISponsor.cs
System.Runtime.Remoting.Lifetime/Lease.cs
System.Runtime.Remoting.Lifetime/LeaseManager.cs
System.Runtime.Remoting.Lifetime/LeaseSink.cs
System.Runtime.Remoting.Lifetime/LeaseState.cs
System.Runtime.Remoting.Lifetime/LifetimeServices.cs
System.Runtime.Remoting.Messaging/ArgInfo.cs
System.Runtime.Remoting.Messaging/AsyncResult.cs
System.Runtime.Remoting.Messaging/CallContext.cs
System.Runtime.Remoting.Messaging/ClientContextTerminatorSink.cs
System.Runtime.Remoting.Messaging/ConstructionCall.cs
System.Runtime.Remoting.Messaging/ConstructionCallDictionary.cs
System.Runtime.Remoting.Messaging/ConstructionResponse.cs
System.Runtime.Remoting.Messaging/EnvoyTerminatorSink.cs
System.Runtime.Remoting.Messaging/Header.cs
System.Runtime.Remoting.Messaging/HeaderHandler.cs
System.Runtime.Remoting.Messaging/ErrorMessage.cs
System.Runtime.Remoting.Messaging/IInternalMessage.cs
System.Runtime.Remoting.Messaging/IMessage.cs
System.Runtime.Remoting.Messaging/IMessageCtrl.cs
System.Runtime.Remoting.Messaging/IMessageSink.cs
System.Runtime.Remoting.Messaging/IMethodCallMessage.cs
System.Runtime.Remoting.Messaging/IMethodMessage.cs
System.Runtime.Remoting.Messaging/IMethodReturnMessage.cs
System.Runtime.Remoting.Messaging/IRemotingFormatter.cs
System.Runtime.Remoting.Messaging/InternalMessageWrapper.cs
System.Runtime.Remoting.Messaging/ISerializationRootObject.cs
System.Runtime.Remoting.Messaging/LogicalCallContext.cs
System.Runtime.Remoting.Messaging/MessageSurrogateFilter.cs
System.Runtime.Remoting.Messaging/MethodCall.cs
System.Runtime.Remoting.Messaging/MethodCallMessageWrapper.cs
System.Runtime.Remoting.Messaging/MethodResponse.cs
System.Runtime.Remoting.Messaging/MethodCallDictionary.cs
System.Runtime.Remoting.Messaging/MethodDictionary.cs
System.Runtime.Remoting.Messaging/MethodReturnDictionary.cs
System.Runtime.Remoting.Messaging/MethodReturnMessageWrapper.cs
System.Runtime.Remoting.Messaging/MonoMethodMessage.cs
System.Runtime.Remoting.Messaging/OneWayAttribute.cs
System.Runtime.Remoting.Messaging/RemotingSurrogateSelector.cs
System.Runtime.Remoting.Messaging/RemotingSurrogate.cs
System.Runtime.Remoting.Messaging/ReturnMessage.cs
System.Runtime.Remoting.Messaging/ServerContextTerminatorSink.cs
System.Runtime.Remoting.Messaging/ServerObjectTerminatorSink.cs
System.Runtime.Remoting.Messaging/StackBuilderSink.cs
System.Runtime.Remoting.Messaging/CADMessages.cs
System.Runtime.Remoting.Metadata/SoapAttribute.cs
System.Runtime.Remoting.Metadata/SoapFieldAttribute.cs
System.Runtime.Remoting.Metadata/SoapMethodAttribute.cs
System.Runtime.Remoting.Metadata/SoapOption.cs
System.Runtime.Remoting.Metadata/SoapParameterAttribute.cs
System.Runtime.Remoting.Metadata/SoapTypeAttribute.cs
System.Runtime.Remoting.Metadata/XmlFieldOrderOption.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/ISoapXsd.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapAnyUri.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapEntity.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapMonth.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNonNegativeInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapToken.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapBase64Binary.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapHexBinary.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapMonthDay.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNonPositiveInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapYear.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDate.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapHelper.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapId.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNormalizedString.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapYearMonth.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDateTime.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapIdref.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNcName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNotation.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDay.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapIdrefs.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNegativeInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapPositiveInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDuration.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNmtoken.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapQName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapEntities.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapLanguage.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNmtokens.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapTime.cs
System.Runtime.Remoting.Proxies/RealProxy.cs
System.Runtime.Remoting.Proxies/RemotingProxy.cs
System.Runtime.Remoting.Proxies/ProxyAttribute.cs
System.Runtime.Remoting.Services/EnterpriseServicesHelper.cs
System.Runtime.Remoting.Services/ITrackingHandler.cs
System.Runtime.Remoting.Services/TrackingServices.cs
System.Runtime.Serialization/Formatter.cs
System.Runtime.Serialization/FormatterConverter.cs
System.Runtime.Serialization/FormatterServices.cs
System.Runtime.Serialization/IDeserializationCallback.cs
System.Runtime.Serialization/IFormatter.cs
System.Runtime.Serialization/IFormatterConverter.cs
System.Runtime.Serialization/IObjectReference.cs
System.Runtime.Serialization/ISerializable.cs
System.Runtime.Serialization/ISerializationSurrogate.cs
System.Runtime.Serialization/ISurrogateSelector.cs
System.Runtime.Serialization/ObjectIDGenerator.cs
System.Runtime.Serialization/ObjectManager.cs
System.Runtime.Serialization/SerializationBinder.cs
System.Runtime.Serialization/SerializationEntry.cs
System.Runtime.Serialization/SerializationException.cs
System.Runtime.Serialization/SerializationInfo.cs
System.Runtime.Serialization/SerializationInfoEnumerator.cs
System.Runtime.Serialization/StreamingContext.cs
System.Runtime.Serialization/StreamingContextStates.cs
System.Runtime.Serialization/SurrogateSelector.cs
System.Runtime.Serialization.Formatters/FormatterAssemblyStyle.cs
System.Runtime.Serialization.Formatters/FormatterTopObjectStyle.cs
System.Runtime.Serialization.Formatters/FormatterTypeStyle.cs
System.Runtime.Serialization.Formatters/IFieldInfo.cs
System.Runtime.Serialization.Formatters/InternalArrayTypeE.cs
System.Runtime.Serialization.Formatters/InternalElementTypeE.cs
System.Runtime.Serialization.Formatters/InternalMemberTypeE.cs
System.Runtime.Serialization.Formatters/InternalMemberValueE.cs
System.Runtime.Serialization.Formatters/InternalNameSpaceE.cs
System.Runtime.Serialization.Formatters/InternalObjectPositionE.cs
System.Runtime.Serialization.Formatters/InternalObjectTypeE.cs
System.Runtime.Serialization.Formatters/InternalParseStateE.cs
System.Runtime.Serialization.Formatters/InternalParseTypeE.cs
System.Runtime.Serialization.Formatters/InternalPrimitiveTypeE.cs
System.Runtime.Serialization.Formatters/InternalRM.cs
System.Runtime.Serialization.Formatters/InternalSerializerTypeE.cs
System.Runtime.Serialization.Formatters/InternalST.cs
System.Runtime.Serialization.Formatters/ISoapMessage.cs
System.Runtime.Serialization.Formatters/ServerFault.cs
System.Runtime.Serialization.Formatters/SoapFault.cs
System.Runtime.Serialization.Formatters/SoapMessage.cs
System.Runtime.Serialization.Formatters/TypeFilterLevel.cs
System.Runtime.Serialization.Formatters.Binary/BinaryFormatter.cs
System.Runtime.Serialization.Formatters.Binary/BinaryCommon.cs
System.Runtime.Serialization.Formatters.Binary/CodeGenerator.cs
System.Runtime.Serialization.Formatters.Binary/ObjectReader.cs
System.Runtime.Serialization.Formatters.Binary/ObjectWriter.cs
System.Runtime.Serialization.Formatters.Binary/MessageFormatter.cs
System.Security/AllowPartiallyTrustedCallersAttribute.cs
System.Security/CodeAccessPermission.cs
System.Security/IEvidenceFactory.cs
System.Security/IPermission.cs
System.Security/ISecurityEncodable.cs
System.Security/ISecurityPolicyEncodable.cs
System.Security/IStackWalk.cs
System.Security/NamedPermissionSet.cs
System.Security/PermissionSet.cs
System.Security/PolicyLevelType.cs
System.Security/SecurityElement.cs
System.Security/SecurityException.cs
System.Security/SecurityManager.cs
System.Security/SecurityZone.cs
System.Security/SuppressUnmanagedCodeSecurityAttribute.cs
System.Security/UnverifiableCodeAttribute.cs
System.Security/VerificationException.cs
System.Security/XmlSyntaxException.cs
System.Security.Cryptography/AsymmetricAlgorithm.cs
System.Security.Cryptography/AsymmetricKeyExchangeDeformatter.cs
System.Security.Cryptography/AsymmetricKeyExchangeFormatter.cs
System.Security.Cryptography/AsymmetricSignatureDeformatter.cs
System.Security.Cryptography/AsymmetricSignatureFormatter.cs
System.Security.Cryptography/Base64Constants.cs
System.Security.Cryptography/CipherMode.cs
System.Security.Cryptography/CryptoAPITransform.cs
System.Security.Cryptography/CryptoConfig.cs
System.Security.Cryptography/CryptographicException.cs
System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs
System.Security.Cryptography/CryptoStream.cs
System.Security.Cryptography/CryptoStreamMode.cs
System.Security.Cryptography/CspKeyContainerInfo.cs
System.Security.Cryptography/CspParameters.cs
System.Security.Cryptography/CspProviderFlags.cs
System.Security.Cryptography/DataProtectionScope.cs
System.Security.Cryptography/DeriveBytes.cs
System.Security.Cryptography/DES.cs
System.Security.Cryptography/DESCryptoServiceProvider.cs
System.Security.Cryptography/DSA.cs
System.Security.Cryptography/DSACryptoServiceProvider.cs
System.Security.Cryptography/DSAParameters.cs
System.Security.Cryptography/DSASignatureDeformatter.cs
System.Security.Cryptography/DSASignatureFormatter.cs
System.Security.Cryptography/FromBase64Transform.cs
System.Security.Cryptography/HashAlgorithm.cs
System.Security.Cryptography/HMAC.cs
System.Security.Cryptography/HMACMD5.cs
System.Security.Cryptography/HMACRIPEMD160.cs
System.Security.Cryptography/HMACSHA1.cs
System.Security.Cryptography/HMACSHA256.cs
System.Security.Cryptography/HMACSHA384.cs
System.Security.Cryptography/HMACSHA512.cs
System.Security.Cryptography/ICryptoTransform.cs
System.Security.Cryptography/ICspAsymmetricAlgorithm.cs
System.Security.Cryptography/KeyedHashAlgorithm.cs
System.Security.Cryptography/KeyNumber.cs
System.Security.Cryptography/KeySizes.cs
System.Security.Cryptography/MACTripleDES.cs
System.Security.Cryptography/MaskGenerationMethod.cs
System.Security.Cryptography/MD5.cs
System.Security.Cryptography/MD5CryptoServiceProvider.cs
System.Security.Cryptography/MemoryProtectionScope.cs
System.Security.Cryptography/PaddingMode.cs
System.Security.Cryptography/PasswordDeriveBytes.cs
System.Security.Cryptography/PKCS1MaskGenerationMethod.cs
System.Security.Cryptography/ProtectedData.cs
System.Security.Cryptography/ProtectedMemory.cs
System.Security.Cryptography/RandomNumberGenerator.cs
System.Security.Cryptography/RC2.cs
System.Security.Cryptography/RC2CryptoServiceProvider.cs
System.Security.Cryptography/Rfc2898DeriveBytes.cs
System.Security.Cryptography/Rijndael.cs
System.Security.Cryptography/RijndaelManaged.cs
System.Security.Cryptography/RNGCryptoServiceProvider.cs
System.Security.Cryptography/RSA.cs
System.Security.Cryptography/RSACryptoServiceProvider.cs
System.Security.Cryptography/RSAOAEPKeyExchangeDeformatter.cs
System.Security.Cryptography/RSAOAEPKeyExchangeFormatter.cs
System.Security.Cryptography/RSAParameters.cs
System.Security.Cryptography/RSAPKCS1KeyExchangeDeformatter.cs
System.Security.Cryptography/RSAPKCS1KeyExchangeFormatter.cs
System.Security.Cryptography/RSAPKCS1SignatureDeformatter.cs
System.Security.Cryptography/RSAPKCS1SignatureFormatter.cs
System.Security.Cryptography/SHA1.cs
System.Security.Cryptography/SHA1CryptoServiceProvider.cs
System.Security.Cryptography/SHA1Managed.cs
System.Security.Cryptography/SHA256.cs
System.Security.Cryptography/SHA256Managed.cs
System.Security.Cryptography/SHA384.cs
System.Security.Cryptography/SHA384Managed.cs
System.Security.Cryptography/SHA512.cs
System.Security.Cryptography/SHA512Managed.cs
System.Security.Cryptography/SHAConstants.cs
System.Security.Cryptography/SignatureDescription.cs
System.Security.Cryptography/SymmetricAlgorithm.cs
System.Security.Cryptography/ToBase64Transform.cs
System.Security.Cryptography/TripleDES.cs
System.Security.Cryptography/TripleDESCryptoServiceProvider.cs
System.Security.Cryptography.X509Certificates/X509Certificate.cs
System.Security.Permissions/CodeAccessSecurityAttribute.cs
System.Security.Permissions/EnvironmentPermission.cs
System.Security.Permissions/EnvironmentPermissionAccess.cs
System.Security.Permissions/EnvironmentPermissionAttribute.cs
System.Security.Permissions/FileDialogPermission.cs 
System.Security.Permissions/FileDialogPermissionAccess.cs
System.Security.Permissions/FileDialogPermissionAttribute.cs
System.Security.Permissions/FileIOPermission.cs
System.Security.Permissions/FileIOPermissionAccess.cs
System.Security.Permissions/FileIOPermissionAttribute.cs
System.Security.Permissions/IBuiltInPermission.cs
System.Security.Permissions/IsolatedStorageContainment.cs
System.Security.Permissions/IsolatedStorageFilePermission.cs 
System.Security.Permissions/IsolatedStorageFilePermissionAttribute.cs
System.Security.Permissions/IsolatedStoragePermission.cs
System.Security.Permissions/IsolatedStoragePermissionAttribute.cs
System.Security.Permissions/IUnrestrictedPermission.cs
System.Security.Permissions/PermissionSetAttribute.cs
System.Security.Permissions/PermissionState.cs
System.Security.Permissions/PrincipalPermission.cs 
System.Security.Permissions/PrincipalPermissionAttribute.cs
System.Security.Permissions/PublisherIdentityPermission.cs
System.Security.Permissions/PublisherIdentityPermissionAttribute.cs 
System.Security.Permissions/ReflectionPermission.cs
System.Security.Permissions/ReflectionPermissionAttribute.cs
System.Security.Permissions/ReflectionPermissionFlag.cs
System.Security.Permissions/RegistryPermission.cs
System.Security.Permissions/RegistryPermissionAccess.cs
System.Security.Permissions/RegistryPermissionAttribute.cs
System.Security.Permissions/SecurityAction.cs
System.Security.Permissions/SecurityAttribute.cs
System.Security.Permissions/SecurityPermission.cs
System.Security.Permissions/SecurityPermissionAttribute.cs
System.Security.Permissions/SecurityPermissionFlag.cs
System.Security.Permissions/SiteIdentityPermission.cs 
System.Security.Permissions/SiteIdentityPermissionAttribute.cs
System.Security.Permissions/StrongNameIdentityPermission.cs
System.Security.Permissions/StrongNamePermissionAttribute.cs
System.Security.Permissions/StrongNamePublicKeyBlob.cs
System.Security.Permissions/UIPermission.cs 
System.Security.Permissions/UIPermissionAttribute.cs
System.Security.Permissions/UIPermissionClipboard.cs
System.Security.Permissions/UIPermissionWindow.cs
System.Security.Permissions/UrlIdentityPermission.cs
System.Security.Permissions/UrlIdentityPermissionAttribute.cs
System.Security.Permissions/ZoneIdentityPermission.cs
System.Security.Permissions/ZoneIdentityPermissionAttribute.cs
System.Security.Policy/AllMembershipCondition.cs
System.Security.Policy/ApplicationDirectory.cs
System.Security.Policy/ApplicationDirectoryMembershipCondition.cs
System.Security.Policy/CodeGroup.cs
System.Security.Policy/Evidence.cs
System.Security.Policy/FileCodeGroup.cs
System.Security.Policy/FirstMatchCodeGroup.cs
System.Security.Policy/Hash.cs
System.Security.Policy/HashMembershipCondition.cs
System.Security.Policy/IBuiltInEvidence.cs
System.Security.Policy/IConstantMembershipCondition.cs
System.Security.Policy/IIdentityPermissionFactory.cs
System.Security.Policy/IMembershipCondition.cs
System.Security.Policy/NetCodeGroup.cs
System.Security.Policy/PermissionRequestEvidence.cs
System.Security.Policy/PolicyException.cs
System.Security.Policy/PolicyLevel.cs
System.Security.Policy/PolicyStatement.cs
System.Security.Policy/PolicyStatementAttribute.cs
System.Security.Policy/Publisher.cs
System.Security.Policy/PublisherMembershipCondition.cs
System.Security.Policy/Site.cs
System.Security.Policy/SiteMembershipCondition.cs
System.Security.Policy/StrongName.cs
System.Security.Policy/StrongNameMembershipCondition.cs
System.Security.Policy/UnionCodeGroup.cs
System.Security.Policy/Url.cs
System.Security.Policy/UrlMembershipCondition.cs
System.Security.Policy/Zone.cs
System.Security.Policy/ZoneMembershipCondition.cs
System.Security.Principal/GenericIdentity.cs
System.Security.Principal/GenericPrincipal.cs
System.Security.Principal/IIdentity.cs
System.Security.Principal/IPrincipal.cs
System.Security.Principal/PrincipalPolicy.cs
System.Security.Principal/WindowsAccountType.cs
System.Security.Principal/WindowsBuiltInRole.cs
System.Security.Principal/WindowsIdentity.cs
System.Security.Principal/WindowsImpersonationContext.cs
System.Security.Principal/WindowsPrincipal.cs
System.Text/ASCIIEncoding.cs
System.Text/Decoder.cs
System.Text/Encoder.cs
System.Text/Encoding.cs
System.Text/Latin1Encoding.cs
System.Text/StringBuilder.cs
System.Text/UnicodeEncoding.cs
System.Text/UTF7Encoding.cs
System.Text/UTF8Encoding.cs
System.Threading/ApartmentState.cs
System.Threading/AutoResetEvent.cs
System.Threading/CompressedStack.cs
System.Threading/Interlocked.cs
System.Threading/IOCompletionCallback.cs
System.Threading/LockCookie.cs
System.Threading/LockQueue.cs
System.Threading/ManualResetEvent.cs
System.Threading/Monitor.cs
System.Threading/Mutex.cs
System.Threading/NativeEventCalls.cs
System.Threading/NativeOverlapped.cs
System.Threading/Overlapped.cs
System.Threading/ReaderWriterLock.cs
System.Threading/RegisteredWaitHandle.cs
System.Threading/SynchronizationLockException.cs
System.Threading/Thread.cs
System.Threading/ThreadAbortException.cs
System.Threading/ThreadInterruptedException.cs
System.Threading/ThreadPool.cs
System.Threading/ThreadPriority.cs
System.Threading/ThreadStart.cs
System.Threading/ThreadState.cs
System.Threading/ThreadStateException.cs
System.Threading/Timeout.cs
System.Threading/Timer.cs
System.Threading/TimerCallback.cs
System.Threading/WaitCallback.cs
System.Threading/WaitHandle.cs
System.Threading/WaitOrTimerCallback.cs
System.Collections.Generic/ICollection.cs
System.Collections.Generic/IEnumerable.cs
System.Collections.Generic/IEnumerator.cs
System.Collections.Generic/IList.cs
System.Collections.Generic/IComparer.cs
System.Collections.Generic/IComparable.cs
System.Collections.Generic/IDictionary.cs
System.Collections.Generic/IKeyComparer.cs
System.Collections.Generic/KeyValuePair.cs
System.Collections.Generic/Queue.cs
System.Collections.Generic/Stack.cs
System.Collections.Generic/List.cs
System/Action.cs
System/ArraySegment.cs
System/Comparison.cs
System/Converter.cs
System/Predicate.cs
System.Collections.Generic/Comparer.cs
System.Collections/IKeyComparer.cs