pulg
2025-06-10 b3d20305722ae41ca0093ea034b12373dfdd2b3b
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
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.CodeAnalysis.Scripting</name>
    </assembly>
    <members>
        <member name="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">
            <summary>
            An exception thrown when the compilation stage of interactive execution produces compilation errors.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.CompilationErrorException.Diagnostics">
            <summary>
            The list of diagnostics produced by compilation.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.AssemblyLoadResult">
            <summary>
            The result of loading an assembly reference to the interactive session.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.AssemblyLoadResult.IsSuccessful">
            <summary>
            True if the assembly was loaded by the assembly loader, false if has been loaded before.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.AssemblyLoadResult.Path">
            <summary>
            Full path to the physical assembly file (might be a shadow-copy of the original assembly file).
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.AssemblyLoadResult.OriginalPath">
            <summary>
            Original assembly file path.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader">
            <summary>
            Implements an assembly loader for interactive compiler and REPL.
            </summary>
            <remarks>
            <para>
            The class is thread-safe.
            </para>
            </remarks>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader.LoadedAssembly.OriginalPath">
            <summary>
            The original path of the assembly before it was shadow-copied.
            For GAC'd assemblies, this is equal to Assembly.Location no matter what path was used to load them.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader.RegisterDependency(Microsoft.CodeAnalysis.AssemblyIdentity,System.String)">
            <summary>
            Notifies the assembly loader about a dependency that might be loaded in future.
            </summary>
            <param name="dependency">Assembly identity.</param>
            <param name="path">Assembly location.</param>
            <remarks>
            Associates a full assembly name with its location. The association is used when an assembly 
            is being loaded and its name needs to be resolved to a location.
            </remarks>
            <exception cref="T:System.ArgumentNullException"><paramref name="dependency"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="path"/> is not an existing path.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader.RegisterDependency(System.Reflection.Assembly)">
            <summary>
            Notifies the assembly loader about an in-memory dependency that should be available within the resolution context.
            </summary>
            <param name="dependency">Assembly identity.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="dependency"/> is null.</exception>
            <remarks>
            When another in-memory assembly references the <paramref name="dependency"/> the loader 
            responds with the specified dependency if the assembly identity matches the requested one.
            </remarks>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopy">
            <summary>
            Represents a shadow copy of an assembly or a standalone module.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopy.PrimaryModule">
            <summary>
            Assembly manifest module copy or a standalone module copy.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopy.DocumentationFile">
            <summary>
            Documentation file copy or null if there is none.
            </summary>
            <remarks>
            Documentation files are currently only supported for manifest modules, not modules included in an assembly.
            </remarks>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider">
            <summary>
            Implements shadow-copying metadata file cache.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.#ctor(System.String,System.Collections.Generic.IEnumerable{System.String},System.Globalization.CultureInfo)">
            <summary>
            Creates an instance of <see cref="T:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider"/>.
            </summary>
            <param name="directory">The directory to use to store file copies.</param>
            <param name="noShadowCopyDirectories">Directories to exclude from shadow-copying.</param>
            <param name="documentationCommentsCulture">Culture of documentation comments to copy. If not specified no doc comment files are going to be copied.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="directory"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="directory"/> is not an absolute path.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.IsShadowCopy(System.String)">
            <summary>
            Determine whether given path is under the shadow-copy directory managed by this shadow-copy provider.
            </summary>
            <param name="fullPath">Absolute path.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="fullPath"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="fullPath"/> is not an absolute path.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.Dispose">
            <summary>
            Clears shadow-copy cache, disposes all allocated metadata, and attempts to delete copied files.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.GetMetadata(System.String,Microsoft.CodeAnalysis.MetadataImageKind)">
            <summary>
            Gets or creates metadata for specified file path.
            </summary>
            <param name="fullPath">Full path to an assembly manifest module file or a standalone module file.</param>
            <param name="kind">Metadata kind (assembly or module).</param>
            <returns>Metadata for the specified file.</returns>
            <exception cref="T:System.IO.IOException">Error reading file <paramref name="fullPath"/>. See <see cref="P:System.Exception.InnerException"/> for details.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.GetMetadataShadowCopy(System.String,Microsoft.CodeAnalysis.MetadataImageKind)">
            <summary>
            Gets or creates a copy of specified assembly or standalone module.
            </summary>
            <param name="fullPath">Full path to an assembly manifest module file or a standalone module file.</param>
            <param name="kind">Metadata kind (assembly or module).</param>
            <returns>
            Copy of the specified file, or null if the file doesn't need a copy (<see cref="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.NeedsShadowCopy(System.String)"/>). 
            Returns the same object if called multiple times with the same path.
            </returns>
            <exception cref="T:System.ArgumentNullException"><paramref name="fullPath"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="fullPath"/> is not an absolute path.</exception>
            <exception cref="T:System.IO.IOException">Error reading file <paramref name="fullPath"/>. See <see cref="P:System.Exception.InnerException"/> for details.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.SuppressShadowCopy(System.String)">
            <summary>
            Suppresses shadow-copying of specified path.
            </summary>
            <param name="originalPath">Full path.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="originalPath"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="originalPath"/> is not an absolute path.</exception>
            <remarks>
            Doesn't affect files that have already been shadow-copied.
            </remarks>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.MetadataShadowCopyProvider.NeedsShadowCopy(System.String)">
            <summary>
            Determines whether given file is a candidate for shadow-copy.
            </summary>
            <param name="fullPath">An absolute path.</param>
            <returns>True if the shadow-copy policy applies to the specified path.</returns>
            <exception cref="T:System.NullReferenceException"><paramref name="fullPath"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="fullPath"/> is not absolute.</exception>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.FileShadowCopy">
            <summary>
            Represents a shadow copy of a single file.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommandLineRunner.RunInteractive">
            <summary>
            csi.exe and vbi.exe entry point.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommandLineRunner.RunInteractiveCore(Microsoft.CodeAnalysis.ErrorLogger)">
            <summary>
            csi.exe and vbi.exe entry point.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.CommandLineScriptGlobals">
            <summary>
            Defines global members that common command line script hosts expose to the hosted scripts.
            </summary>
            <remarks>
            It is recommended for hosts to expose the members defined by this class and implement 
            the same semantics, so that they can run scripts written against standard hosts. 
            
            Specialized hosts that target niche scenarios might choose to not provide this functionality.
            </remarks>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.CommandLineScriptGlobals.Args">
            <summary>
            Arguments given to the script.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommandLineScriptGlobals.Print(System.Object)">
            <summary>
            Pretty-prints an object.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveScriptGlobals">
            <summary>
            Defines global members that common REPL (Read Eval Print Loop) hosts make available in 
            the interactive session.
            </summary>
            <remarks>
            It is recommended for hosts to expose the members defined by this class and implement 
            the same semantics, so that they can run scripts written against standard hosts. 
            
            Specialized hosts that target niche scenarios might choose to not provide this functionality.
            </remarks>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveScriptGlobals.Args">
            <summary>
            Arguments given to the script.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveScriptGlobals.Print(System.Object)">
            <summary>
            Pretty-prints an object.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter">
            <summary>
            Object pretty printer.
            </summary>
            <summary>
            Object pretty printer.
            </summary>
            <summary>
            Object pretty printer.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Builder.AppendInfiniteRecursionMarker">
            <remarks>
            This is for conveying cyclic dependencies to the user, not for detecting them.
            </remarks>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.BuilderOptions">
            <remarks>
            Internal for testing.
            </remarks>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.FormatMethodSignature(System.Reflection.MethodBase)">
            <summary>
            Returns a method signature display string. Used to display stack frames.
            </summary>
            <returns>Null if the method is a compiler generated method that shouldn't be displayed to the user.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Visitor.FormatObjectMembers(Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Builder,System.Object,System.Reflection.TypeInfo,System.Boolean,System.Boolean)">
            <summary>
            Formats object members to a list.
            
            Inline == false:
            <code>
            { A=true, B=false, C=new int[3] { 1, 2, 3 } }
            </code>
            
            Inline == true:
            <code>
            {
              A: true,
              B: false,
              C: new int[3] { 1, 2, 3 }
            }
            </code>
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Visitor.FormatObjectMembersRecursive(System.Collections.Generic.List{Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Visitor.FormattedMember},System.Object,System.Boolean,System.Int32@)">
            <summary>
            Enumerates sorted object members to display.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Visitor.FormatWithEmbeddedExpressions(System.Int32,System.String,System.Object)">
            <summary>
            Evaluate a format string with possible member references enclosed in braces. 
            E.g. "goo = {GetGooString(),nq}, bar = {Bar}".
            </summary>
            <remarks>
            Although in theory any expression is allowed to be embedded in the string such behavior is in practice fundamentally broken.
            The attribute doesn't specify what language (VB, C#, F#, etc.) to use to parse these expressions. Even if it did all languages 
            would need to be able to evaluate each other language's expressions, which is not viable and the Expression Evaluator doesn't 
            work that way today. Instead it evaluates the embedded expressions in the language of the current method frame. When consuming 
            VB objects from C#, for example, the evaluation might fail due to language mismatch (evaluating VB expression using C# parser).
            
            Therefore we limit the expressions to a simple language independent syntax: {clr-member-name} '(' ')' ',nq', 
            where parentheses and ,nq suffix (no-quotes) are optional and the name is an arbitrary CLR field, property, or method name.
            We then resolve the member by name using case-sensitive lookup first with fallback to case insensitive and evaluate it.
            If parentheses are present we only look for methods.
            Only parameterless members are considered.
            </remarks>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Visitor.FormattedMember.MinimalLength">
            <remarks>
            Doesn't (and doesn't need to) reflect the number of digits in <see cref="F:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter.Visitor.FormattedMember.Index"/> since
            it's only used for a conservative approximation (shorter is more conservative when trying
            to determine the minimum number of members that will fill the output).
            </remarks>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.CommonPrimitiveFormatter.NullLiteral">
            <summary>
            String that describes "null" literal in the language.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommonPrimitiveFormatter.FormatPrimitive(System.Object,Microsoft.CodeAnalysis.Scripting.Hosting.CommonPrimitiveFormatterOptions)">
            <summary>
            Returns null if the type is not considered primitive in the target language.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.CommonPrimitiveFormatterOptions.NumberRadix">
            <remarks>
            Since <see cref="T:Microsoft.CodeAnalysis.Scripting.Hosting.CommonPrimitiveFormatter"/> is an extension point, we don't
            perform any validation on <see cref="P:Microsoft.CodeAnalysis.Scripting.Hosting.CommonPrimitiveFormatterOptions.NumberRadix"/> - it's up to the individual
            subtype.
            </remarks>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.CommonTypeNameFormatter.FormatArrayTypeName(System.Type,System.Array,Microsoft.CodeAnalysis.Scripting.Hosting.CommonTypeNameFormatterOptions)">
            <summary>
            Formats an array type name (vector or multidimensional).
            </summary>
        </member>
        <member name="F:Microsoft.CodeAnalysis.Scripting.Hosting.MemberDisplayFormat.SingleLine">
            <summary>
            Display structure of the object on a single line.
            </summary>
        </member>
        <member name="F:Microsoft.CodeAnalysis.Scripting.Hosting.MemberDisplayFormat.SeparateLines">
            <summary>
            Displays a simple description of the object followed by list of members. Each member is
            displayed on a separate line.
            </summary>
        </member>
        <member name="F:Microsoft.CodeAnalysis.Scripting.Hosting.MemberDisplayFormat.Hidden">
            <summary>
            Display just a simple description of the object, like type name or ToString(). Don't
            display any members of the object.
            </summary>
            <remarks>
            <see cref="T:Microsoft.CodeAnalysis.Scripting.Hosting.CommonObjectFormatter"/> does not apply this format to collections elements - 
            they are shown regardless.
            </remarks>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.ObjectFormatter">
            <summary>
            Object pretty printer.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.PrintOptions.IsValidRadix(System.Int32)">
            <remarks>
            Virtual so that extenders can support other radices.
            </remarks>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.ReplServiceProvider">
            <summary>
            Provides basic REPL functionality.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.NuGetPackageResolver.TryParsePackageReference(System.String,System.String@,System.String@)">
            <summary>
            Syntax is "nuget:name[/version]".
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.RuntimeMetadataReferenceResolver">
            <summary>
            Resolves metadata references for scripts.
            </summary>
            <remarks>
            Operates on runtime metadata artifacts.
            </remarks>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.RuntimeMetadataReferenceResolver.CreateCurrentPlatformResolver(System.Collections.Immutable.ImmutableArray{System.String},System.String,System.Func{System.String,Microsoft.CodeAnalysis.MetadataReferenceProperties,Microsoft.CodeAnalysis.PortableExecutableReference})">
            <summary>
            Creates a resolver that uses the current platform settings (GAC, platform assembly list).
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Hosting.GacFileResolver">
            <summary>
            Resolves assembly identities in Global Assembly Cache.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.GacFileResolver.IsAvailable">
            <summary>
            Returns true if GAC is available on the current platform.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.GacFileResolver.Architectures">
            <summary>
            Architecture filter used when resolving assembly references.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Hosting.GacFileResolver.PreferredCulture">
            <summary>
            <see cref="T:System.Globalization.CultureInfo"/> used when resolving assembly references, or null to prefer no culture.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Hosting.GacFileResolver.#ctor(System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture},System.Globalization.CultureInfo)">
            <summary>
            Creates an instance of a <see cref="T:Microsoft.CodeAnalysis.Scripting.Hosting.GacFileResolver"/>, if available on the platform (check <see cref="P:Microsoft.CodeAnalysis.Scripting.Hosting.GacFileResolver.IsAvailable"/>).
            </summary>
            <param name="architectures">Supported architectures used to filter GAC assemblies.</param>
            <param name="preferredCulture">A culture to use when choosing the best assembly from
            among the set filtered by <paramref name="architectures"/></param>
            <exception cref="T:System.PlatformNotSupportedException">The platform doesn't support GAC.</exception>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.Script">
            <summary>
            A class that represents a script that you can run.
            
            Create a script using a language specific script class such as CSharpScript or VisualBasicScript.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Script.Previous">
            <summary>
            A script that will run first when this script is run. 
            Any declarations made in the previous script can be referenced in this script.
            The end state from running this script includes all declarations made by both scripts.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Script.Options">
            <summary>
            The options used by this script.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Script.Code">
            <summary>
            The source code of the script.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Script.SourceText">
            <summary>
            The <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.SourceText"/> of the script.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType">
            <summary>
            The type of an object whose members can be accessed by the script as global variables.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.Script.ReturnType">
            <summary>
            The expected return type of the script.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.WithOptions(Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
            <summary>
            Creates a new version of this script with the specified options.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.ContinueWith(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
            <summary>
            Continues the script with given code snippet.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.ContinueWith(System.IO.Stream,Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
            <summary>
            Continues the script with given <see cref="T:System.IO.Stream"/> representing code.
            </summary>
            <exception cref="T:System.ArgumentNullException">Stream is null.</exception>
            <exception cref="T:System.ArgumentException">Stream is not readable or seekable.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.ContinueWith``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
            <summary>
            Continues the script with given code snippet.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.ContinueWith``1(System.IO.Stream,Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
            <summary>
            Continues the script with given <see cref="T:System.IO.Stream"/> representing code.
            </summary>
            <exception cref="T:System.ArgumentNullException">Stream is null.</exception>
            <exception cref="T:System.ArgumentException">Stream is not readable or seekable.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.GetCompilation">
            <summary>
            Get's the <see cref="T:Microsoft.CodeAnalysis.Compilation"/> that represents the semantics of the script.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.EvaluateAsync(System.Object,System.Threading.CancellationToken)">
            <summary>
            Runs the script from the beginning and returns the result of the last code snippet.
            </summary>
            <param name="globals">
            An instance of <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/> holding on values of global variables accessible from the script.
            Must be specified if and only if the script was created with a <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>The result of the last code snippet.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.RunAsync(System.Object,System.Threading.CancellationToken)">
            <summary>
            Runs the script from the beginning.
            </summary>
            <param name="globals">
            An instance of <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/> holding on values for global variables accessible from the script.
            Must be specified if and only if the script was created with <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.RunAsync(System.Object,System.Func{System.Exception,System.Boolean},System.Threading.CancellationToken)">
            <summary>
            Runs the script from the beginning.
            </summary>
            <param name="globals">
            An instance of <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/> holding on values for global variables accessible from the script.
            Must be specified if and only if the script was created with <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.
            </param>
            <param name="catchException">
            If specified, any exception thrown by the script top-level code is passed to <paramref name="catchException"/>.
            If it returns true the exception is caught and stored on the resulting <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/>, otherwise the exception is propagated to the caller.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.RunFromAsync(Microsoft.CodeAnalysis.Scripting.ScriptState,System.Threading.CancellationToken)">
            <summary>
            Run the script from the specified state.
            </summary>
            <param name="previousState">
            Previous state of the script execution.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.RunFromAsync(Microsoft.CodeAnalysis.Scripting.ScriptState,System.Func{System.Exception,System.Boolean},System.Threading.CancellationToken)">
            <summary>
            Run the script from the specified state.
            </summary>
            <param name="previousState">
            Previous state of the script execution.
            </param>
            <param name="catchException">
            If specified, any exception thrown by the script top-level code is passed to <paramref name="catchException"/>.
            If it returns true the exception is caught and stored on the resulting <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/>, otherwise the exception is propagated to the caller.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.Compile(System.Threading.CancellationToken)">
            <summary>
            Forces the script through the compilation step.
            If not called directly, the compilation step will occur on the first call to Run.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script.GetReferencesForCompilation(Microsoft.CodeAnalysis.CommonMessageProvider,Microsoft.CodeAnalysis.DiagnosticBag,Microsoft.CodeAnalysis.MetadataReference)">
            <summary>
            Gets the references that need to be assigned to the compilation.
            This can be different than the list of references defined by the <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> instance.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.GetExecutor(System.Threading.CancellationToken)">
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Compilation has errors.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.GetPrecedingExecutors(System.Threading.CancellationToken)">
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Compilation has errors.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.TryGetPrecedingExecutors(Microsoft.CodeAnalysis.Scripting.Script,System.Threading.CancellationToken)">
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Compilation has errors.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.EvaluateAsync(System.Object,System.Threading.CancellationToken)">
            <summary>
            Runs the script from the beginning and returns the result of the last code snippet.
            </summary>
            <param name="globals">
            An instance of <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/> holding on values of global variables accessible from the script.
            Must be specified if and only if the script was created with a <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>The result of the last code snippet.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.RunAsync(System.Object,System.Threading.CancellationToken)">
            <summary>
            Runs the script from the beginning.
            </summary>
            <param name="globals">
            An instance of <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/> holding on values for global variables accessible from the script.
            Must be specified if and only if the script was created with <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Compilation has errors.</exception>
            <exception cref="T:System.ArgumentException">The type of <paramref name="globals"/> doesn't match <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.RunAsync(System.Object,System.Func{System.Exception,System.Boolean},System.Threading.CancellationToken)">
            <summary>
            Runs the script from the beginning.
            </summary>
            <param name="globals">
            An instance of <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/> holding on values for global variables accessible from the script.
            Must be specified if and only if the script was created with <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.
            </param>
            <param name="catchException">
            If specified, any exception thrown by the script top-level code is passed to <paramref name="catchException"/>.
            If it returns true the exception is caught and stored on the resulting <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/>, otherwise the exception is propagated to the caller.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Compilation has errors.</exception>
            <exception cref="T:System.ArgumentException">The type of <paramref name="globals"/> doesn't match <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.CreateDelegate(System.Threading.CancellationToken)">
            <summary>
            Creates a delegate that will run this script from the beginning when invoked.
            </summary>
            <remarks>
            The delegate doesn't hold on this script or its compilation.
            </remarks>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.RunFromAsync(Microsoft.CodeAnalysis.Scripting.ScriptState,System.Threading.CancellationToken)">
            <summary>
            Run the script from the specified state.
            </summary>
            <param name="previousState">
            Previous state of the script execution.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
            <exception cref="T:System.ArgumentNullException"><paramref name="previousState"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="previousState"/> is not a previous execution state of this script.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.Script`1.RunFromAsync(Microsoft.CodeAnalysis.Scripting.ScriptState,System.Func{System.Exception,System.Boolean},System.Threading.CancellationToken)">
            <summary>
            Run the script from the specified state.
            </summary>
            <param name="previousState">
            Previous state of the script execution.
            </param>
            <param name="catchException">
            If specified, any exception thrown by the script top-level code is passed to <paramref name="catchException"/>.
            If it returns true the exception is caught and stored on the resulting <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/>, otherwise the exception is propagated to the caller.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running the script, including all declared variables and return value.</returns>
            <exception cref="T:System.ArgumentNullException"><paramref name="previousState"/> is null.</exception>
            <exception cref="T:System.ArgumentException"><paramref name="previousState"/> is not a previous execution state of this script.</exception>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.ScriptBuilder">
            <summary>
            Represents a runtime execution context for scripts.
            </summary>
        </member>
        <member name="F:Microsoft.CodeAnalysis.Scripting.ScriptBuilder.s_globalAssemblyNamePrefix">
            <summary>
            Unique prefix for generated assemblies.
            </summary>
            <remarks>
            The full names of uncollectible assemblies generated by this context must be unique,
            so that we can resolve references among them. Note that CLR can load two different assemblies of the very same 
            identity into the same load context.
            
            We are using a certain naming scheme for the generated assemblies (a fixed name prefix followed by a number). 
            If we allowed the compiled code to add references that match this exact pattern it might happen that 
            the user supplied reference identity conflicts with the identity we use for our generated assemblies and 
            the AppDomain assembly resolve event won't be able to correctly identify the target assembly.
            
            To avoid this problem we use a prefix for assemblies we generate that is unlikely to conflict with user specified references.
            We also check that no user provided references are allowed to be used in the compiled code and report an error ("reserved assembly name").
            </remarks>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptBuilder.CreateExecutor``1(Microsoft.CodeAnalysis.Scripting.ScriptCompiler,Microsoft.CodeAnalysis.Compilation,System.Boolean,System.Threading.CancellationToken)">
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Compilation has errors.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptBuilder.Build``1(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.DiagnosticBag,System.Boolean,System.Threading.CancellationToken)">
            <summary>
            Builds a delegate that will execute just this scripts code.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.ScriptExecutionState">
            <summary>
            Represents the submission states and globals that get passed to a script entry point when run.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions">
            <summary>
            Options for creating and running scripts.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.MetadataReferences">
            <summary>
            An array of <see cref="T:Microsoft.CodeAnalysis.MetadataReference"/>s to be added to the script.
            </summary>
            <remarks>
            The array may contain both resolved and unresolved references (<see cref="T:Microsoft.CodeAnalysis.UnresolvedMetadataReference"/>).
            Unresolved references are resolved when the script is about to be executed 
            (<see cref="M:Microsoft.CodeAnalysis.Scripting.Script.RunAsync(System.Object,System.Threading.CancellationToken)"/>.
            Any resolution errors are reported at that point through <see cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException"/>.
            </remarks>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.MetadataResolver">
            <summary>
            <see cref="T:Microsoft.CodeAnalysis.MetadataReferenceResolver"/> to be used to resolve missing dependencies, unresolved metadata references and #r directives.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.SourceResolver">
            <summary>
            <see cref="T:Microsoft.CodeAnalysis.SourceReferenceResolver"/> to be used to resolve source of scripts referenced via #load directive.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.Imports">
            <summary>
            The namespaces, static classes and aliases imported by the script.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.EmitDebugInformation">
            <summary>
            Specifies whether debugging symbols should be emitted.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.FileEncoding">
            <summary>
            Specifies the encoding to be used when debugging scripts loaded from a file, or saved to a file for debugging purposes.
            If it's null, the compiler will attempt to detect the necessary encoding for debugging
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.FilePath">
            <summary>
            The path to the script source if it originated from a file, empty otherwise.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.OptimizationLevel">
            <summary>
            Specifies whether or not optimizations should be performed on the output IL.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.CheckOverflow">
            <summary>
            Whether bounds checking on integer arithmetic is enforced by default or not.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AllowUnsafe">
            <summary>
            Allow unsafe regions (i.e. unsafe modifiers on members and unsafe blocks).
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WarningLevel">
            <summary>
            Global warning level (from 0 to 4).
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithFilePath(System.String)">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.FilePath"/> changed.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithReferences(System.Collections.Immutable.ImmutableArray{Microsoft.CodeAnalysis.MetadataReference})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the references changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the references changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithReferences(Microsoft.CodeAnalysis.MetadataReference[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the references changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddReferences(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.MetadataReference})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with references added.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddReferences(Microsoft.CodeAnalysis.MetadataReference[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with references added.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithReferences(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the references changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
            <exception cref="T:System.NotSupportedException">Specified assembly is not supported (e.g. it's a dynamic assembly).</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithReferences(System.Reflection.Assembly[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the references changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
            <exception cref="T:System.NotSupportedException">Specified assembly is not supported (e.g. it's a dynamic assembly).</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddReferences(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with references added.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
            <exception cref="T:System.NotSupportedException">Specified assembly is not supported (e.g. it's a dynamic assembly).</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddReferences(System.Reflection.Assembly[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with references added.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
            <exception cref="T:System.NotSupportedException">Specified assembly is not supported (e.g. it's a dynamic assembly).</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithReferences(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the references changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithReferences(System.String[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the references changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddReferences(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with references added.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="references"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddReferences(System.String[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with references added.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithMetadataResolver(Microsoft.CodeAnalysis.MetadataReferenceResolver)">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with specified <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.MetadataResolver"/>.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithSourceResolver(Microsoft.CodeAnalysis.SourceReferenceResolver)">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with specified <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.SourceResolver"/>.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithImports(System.Collections.Immutable.ImmutableArray{System.String})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.Imports"/> changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="imports"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithImports(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.Imports"/> changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="imports"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithImports(System.String[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.Imports"/> changed.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="imports"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddImports(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.Imports"/> added.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="imports"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.AddImports(System.String[])">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.Imports"/> added.
            </summary>
            <exception cref="T:System.ArgumentNullException"><paramref name="imports"/> is null or contains a null reference.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithEmitDebugInformation(System.Boolean)">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with debugging information enabled.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithFileEncoding(System.Text.Encoding)">
            <summary>
            Creates a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with specified <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.FileEncoding"/>.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithOptimizationLevel(Microsoft.CodeAnalysis.OptimizationLevel)">
            <summary>
            Create a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the specified <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.OptimizationLevel"/>.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithAllowUnsafe(System.Boolean)">
            <summary>
            Create a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with unsafe code regions allowed.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithCheckOverflow(System.Boolean)">
            <summary>
            Create a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with bounds checking on integer arithmetic enforced.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WithWarningLevel(System.Int32)">
            <summary>
            Create a new <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptOptions"/> with the specific <see cref="P:Microsoft.CodeAnalysis.Scripting.ScriptOptions.WarningLevel"/>.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.ScriptRunner`1">
            <summary>
            A delegate that will run a script when invoked.
            </summary>
            <param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
            <param name="cancellationToken">Cancellation token.</param>
            <exception cref="T:System.ArgumentException">The type of <paramref name="globals"/> doesn't match the corresponding <see cref="P:Microsoft.CodeAnalysis.Scripting.Script.GlobalsType"/>.</exception>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.ScriptState">
            <summary>
            The result of running a script.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptState.Script">
            <summary>
            The script that ran to produce this result.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptState.Exception">
            <summary>
            Caught exception originating from the script top-level code.
            </summary>
            <remarks>
            Exceptions are only caught and stored here if the API returning the <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> is instructed to do so. 
            By default they are propagated to the caller of the API.
            </remarks>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptState.ReturnValue">
            <summary>
            The final value produced by running the script.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptState.Variables">
            <summary>
            Returns variables defined by the scripts in the declaration order.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptState.GetVariable(System.String)">
            <summary>
            Returns a script variable of the specified name. 
            </summary> 
            <remarks>
            If multiple script variables are defined in the script (in distinct submissions) returns the last one.
            Name lookup is case sensitive in C# scripts and case insensitive in VB scripts.
            </remarks>
            <returns><see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptVariable"/> or null, if no variable of the specified <paramref name="name"/> is defined in the script.</returns>
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is null.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptState.ContinueWithAsync(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Threading.CancellationToken)">
            <summary>
            Continues script execution from the state represented by this instance by running the specified code snippet.
            </summary>
            <param name="code">The code to be executed.</param>
            <param name="options">Options.</param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running <paramref name="code"/>, including all declared variables and return value.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptState.ContinueWithAsync(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Func{System.Exception,System.Boolean},System.Threading.CancellationToken)">
            <summary>
            Continues script execution from the state represented by this instance by running the specified code snippet.
            </summary>
            <param name="code">The code to be executed.</param>
            <param name="options">Options.</param>
            <param name="catchException">
            If specified, any exception thrown by the script top-level code is passed to <paramref name="catchException"/>.
            If it returns true the exception is caught and stored on the resulting <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/>, otherwise the exception is propagated to the caller.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running <paramref name="code"/>, including all declared variables, return value and caught exception (if applicable).</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptState.ContinueWithAsync``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Threading.CancellationToken)">
            <summary>
            Continues script execution from the state represented by this instance by running the specified code snippet.
            </summary>
            <param name="code">The code to be executed.</param>
            <param name="options">Options.</param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running <paramref name="code"/>, including all declared variables and return value.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.Scripting.ScriptState.ContinueWithAsync``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Func{System.Exception,System.Boolean},System.Threading.CancellationToken)">
            <summary>
            Continues script execution from the state represented by this instance by running the specified code snippet.
            </summary>
            <param name="code">The code to be executed.</param>
            <param name="options">Options.</param>
            <param name="catchException">
            If specified, any exception thrown by the script top-level code is passed to <paramref name="catchException"/>.
            If it returns true the exception is caught and stored on the resulting <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/>, otherwise the exception is propagated to the caller.
            </param>
            <param name="cancellationToken">Cancellation token.</param>
            <returns>A <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> that represents the state after running <paramref name="code"/>, including all declared variables, return value and caught exception (if applicable).</returns>
        </member>
        <member name="T:Microsoft.CodeAnalysis.Scripting.ScriptVariable">
            <summary>
            A variable declared by the script.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptVariable.Name">
            <summary>
            The name of the variable.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptVariable.Type">
            <summary>
            The type of the variable.
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptVariable.IsReadOnly">
            <summary>
            True if the variable can't be written to (it's declared as readonly or a constant).
            </summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptVariable.Value">
            <summary>
            The value of the variable after running the script.
            </summary>
            <exception cref="T:System.InvalidOperationException">Variable is read-only or a constant.</exception>
            <exception cref="T:System.ArgumentException">The type of the specified <paramref name="value"/> isn't assignable to the type of the variable.</exception>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.StackOverflowWhileEvaluating">
            <summary>!&lt;Stack overflow while evaluating object&gt;</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.CantAssignTo">
            <summary>Can't assign '{0}' to '{1}'.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.ExpectedAnAssemblyReference">
            <summary>Expected an assembly reference.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.DisplayNameOrPathCannotBe">
            <summary>Display name or path cannot be empty.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.AbsolutePathExpected">
            <summary>Absolute path expected</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.GlobalsNotAssignable">
            <summary>The globals of type '{0}' is not assignable to '{1}'</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.StartingStateIncompatible">
            <summary>Starting state was incompatible with script.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.InvalidAssemblyName">
            <summary>Invalid assembly name</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.InvalidCharactersInAssemblyName">
            <summary>Invalid characters in assemblyName</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.ScriptRequiresGlobalVariables">
            <summary>The script requires access to global variables but none were given</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.GlobalVariablesWithoutGlobalType">
            <summary>Global variables passed to a script without a global type</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.PlusAdditionalError">
            <summary>+ additional {0} error</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.PlusAdditionalErrors">
            <summary>+ additional {0} errors</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.AtFileLine">
            <summary>at {0} : {1}</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.CannotSetReadOnlyVariable">
            <summary>Cannot set a read-only variable</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.CannotSetConstantVariable">
            <summary>Cannot set a constant variable</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.HelpPrompt">
            <summary>Type "#help" for more information.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.HelpText">
            <summary>Keyboard shortcuts:
              Enter         If the current submission appears to be complete, evaluate it.  Otherwise, insert a new line.
              Escape        Clear the current submission.
              UpArrow       Replace the current submission with a previous submission.
              Dow ...</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.AssemblyAlreadyLoaded">
            <summary>Assembly '{0}, Version={1}' has already been loaded from '{2}'. A different assembly with the same name and version can't be loaded: '{3}'.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.AssemblyAlreadyLoadedNotSigned">
            <summary>Assembly '{0}' has already been loaded from '{1}'. A different assembly with the same name can't be loaded unless it's signed: '{2}'.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.Scripting.ScriptingResources.CannotSetLanguageSpecificOption">
            <summary>Cannot set {0} specific option {1} because the options were already configured for a different language.</summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.RelativePathResolver.#ctor(System.Collections.Immutable.ImmutableArray{System.String},System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.CodeAnalysis.RelativePathResolver"/> class.
            </summary>
            <param name="searchPaths">An ordered set of fully qualified 
            paths which are searched when resolving assembly names.</param>
            <param name="baseDirectory">Directory used when resolving relative paths.</param>
        </member>
        <member name="T:Microsoft.CodeAnalysis.ClrGlobalAssemblyCache">
            <summary>
            Provides APIs to enumerate and look up assemblies stored in the Global Assembly Cache.
            
            This resolver only works when running under the .net framework runtime.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.ClrGlobalAssemblyCache.GetAssemblyIdentities(System.Reflection.AssemblyName,System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture})">
            <summary>
            Enumerates assemblies in the GAC returning those that match given partial name and
            architecture.
            </summary>
            <param name="partialName">Optional partial name.</param>
            <param name="architectureFilter">Optional architecture filter.</param>
        </member>
        <member name="M:Microsoft.CodeAnalysis.ClrGlobalAssemblyCache.GetAssemblyIdentities(System.String,System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture})">
            <summary>
            Enumerates assemblies in the GAC returning those that match given partial name and
            architecture.
            </summary>
            <param name="partialName">The optional partial name.</param>
            <param name="architectureFilter">The optional architecture filter.</param>
        </member>
        <member name="M:Microsoft.CodeAnalysis.ClrGlobalAssemblyCache.GetAssemblySimpleNames(System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture})">
            <summary>
            Enumerates assemblies in the GAC returning their simple names.
            </summary>
            <param name="architectureFilter">Optional architecture filter.</param>
            <returns>Unique simple names of GAC assemblies.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.FusionAssemblyIdentity.ToAssemblyIdentity(Microsoft.CodeAnalysis.FusionAssemblyIdentity.IAssemblyName)">
            <summary>
            Converts <see cref="T:Microsoft.CodeAnalysis.FusionAssemblyIdentity.IAssemblyName"/> to <see cref="T:System.Reflection.AssemblyName"/> with all metadata fields filled.
            </summary>
            <returns>
            Assembly name with Version, Culture and PublicKeyToken components filled in:
            "SimpleName, Version=#.#.#.#, Culture=XXX, PublicKeyToken=XXXXXXXXXXXXXXXX".
            In addition Retargetable flag and ContentType are set.
            </returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.FusionAssemblyIdentity.ToAssemblyNameObject(System.Reflection.AssemblyName)">
            <summary>
            Converts <see cref="T:System.Reflection.AssemblyName"/> to an equivalent <see cref="T:Microsoft.CodeAnalysis.FusionAssemblyIdentity.IAssemblyName"/>.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.FusionAssemblyIdentity.ToAssemblyNameObject(System.String)">
            <summary>
            Creates <see cref="T:Microsoft.CodeAnalysis.FusionAssemblyIdentity.IAssemblyName"/> object by parsing given display name.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.FusionAssemblyIdentity.GetBestMatch(System.Collections.Generic.IEnumerable{Microsoft.CodeAnalysis.FusionAssemblyIdentity.IAssemblyName},System.String)">
            <summary>
            Selects the candidate assembly with the largest version number.  Uses culture as a tie-breaker if it is provided.
            All candidates are assumed to have the same name and must include versions and cultures.  
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.GlobalAssemblyCache">
            <summary>
            Provides APIs to enumerate and look up assemblies stored in the Global Assembly Cache.
            </summary>
        </member>
        <member name="F:Microsoft.CodeAnalysis.GlobalAssemblyCache.CurrentArchitectures">
            <summary>
            Represents the current Processor architecture.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.GlobalAssemblyCache.GetAssemblyIdentities(System.Reflection.AssemblyName,System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture})">
            <summary>
            Enumerates assemblies in the GAC returning those that match given partial name and
            architecture.
            </summary>
            <param name="partialName">Optional partial name.</param>
            <param name="architectureFilter">Optional architecture filter.</param>
        </member>
        <member name="M:Microsoft.CodeAnalysis.GlobalAssemblyCache.GetAssemblyIdentities(System.String,System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture})">
            <summary>
            Enumerates assemblies in the GAC returning those that match given partial name and
            architecture.
            </summary>
            <param name="partialName">The optional partial name.</param>
            <param name="architectureFilter">The optional architecture filter.</param>
        </member>
        <member name="M:Microsoft.CodeAnalysis.GlobalAssemblyCache.GetAssemblySimpleNames(System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture})">
            <summary>
            Enumerates assemblies in the GAC returning their simple names.
            </summary>
            <param name="architectureFilter">Optional architecture filter.</param>
            <returns>Unique simple names of GAC assemblies.</returns>
        </member>
        <member name="M:Microsoft.CodeAnalysis.GlobalAssemblyCache.ResolvePartialName(System.String,System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture},System.Globalization.CultureInfo)">
            <summary>
            Looks up specified partial assembly name in the GAC and returns the best matching <see cref="T:Microsoft.CodeAnalysis.AssemblyIdentity"/>.
            </summary>
            <param name="displayName">The display name of an assembly</param>
            <param name="architectureFilter">The optional processor architecture</param>
            <param name="preferredCulture">The optional preferred culture information</param>
            <returns>An assembly identity or null, if <paramref name="displayName"/> can't be resolved.</returns>
            <exception cref="T:System.ArgumentNullException"><paramref name="displayName"/> is null.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.GlobalAssemblyCache.ResolvePartialName(System.String,System.String@,System.Collections.Immutable.ImmutableArray{System.Reflection.ProcessorArchitecture},System.Globalization.CultureInfo)">
            <summary>
            Looks up specified partial assembly name in the GAC and returns the best matching <see cref="T:Microsoft.CodeAnalysis.AssemblyIdentity"/>.
            </summary>
            <param name="displayName">The display name of an assembly</param>
            <param name="location">Full path name of the resolved assembly</param>
            <param name="architectureFilter">The optional processor architecture</param>
            <param name="preferredCulture">The optional preferred culture information</param>
            <returns>An assembly identity or null, if <paramref name="displayName"/> can't be resolved.</returns>
            <exception cref="T:System.ArgumentNullException"><paramref name="displayName"/> is null.</exception>
        </member>
        <member name="T:Microsoft.CodeAnalysis.MonoGlobalAssemblyCache">
            <summary>
            Provides APIs to enumerate and look up assemblies stored in the Global Assembly Cache.
            </summary>
        </member>
        <member name="T:Microsoft.CodeAnalysis.DotNetCoreGlobalAssemblyCache">
            <summary>
            Implements a no-op wrapper to search the global assembly cache when running under a .net core runtime.
            At some point we may wish to get information about assemblies in the GAC under a .net core runtime - for example
            if we're loading a .net framework project in vscode and want to find the actual assembly to decompile.
            
            However it isn't extremely straightforward to implement and we don't need it at this time so leaving it as a no-op.
            More info on how this might be possible under a .net core runtime can be found https://github.com/dotnet/core/issues/3048#issuecomment-725781811
            </summary>
        </member>
    </members>
</doc>