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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.CodeAnalysis.CSharp.Scripting</name>
    </assembly>
    <members>
        <member name="T:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript">
            <summary>
            A factory for creating and running C# scripts.
            </summary>
        </member>
        <member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.Create``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
            <summary>
            Create a new C# script.
            </summary>
            <param name="code">The source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globalsType">Type of global object.</param>
            <param name="assemblyLoader">Custom  assembly loader.</param>
            <typeparam name="T">The return type of the script</typeparam>
            <exception cref="T:System.ArgumentNullException">Code is null.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.Create``1(System.IO.Stream,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
            <summary>
            Create a new C# script.
            </summary>
            <param name="code">The <see cref="T:System.IO.Stream"/> representing the source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globalsType">Type of global object.</param>
            <param name="assemblyLoader">Custom  assembly loader.</param>
            <typeparam name="T">The return type of the script</typeparam>
            <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.CSharp.Scripting.CSharpScript.Create(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
            <summary>
            Create a new C# script.
            </summary>
            <param name="code">The source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globalsType">Type of global object.</param>
            <param name="assemblyLoader">Custom  assembly loader.</param>
            <exception cref="T:System.ArgumentNullException">Code is null.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.Create(System.IO.Stream,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Type,Microsoft.CodeAnalysis.Scripting.Hosting.InteractiveAssemblyLoader)">
            <summary>
            Create a new C# script.
            </summary>
            <param name="code">The <see cref="T:System.IO.Stream"/> representing the source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globalsType">Type of global object.</param>
            <param name="assemblyLoader">Custom  assembly loader.</param>
            <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.CSharp.Scripting.CSharpScript.RunAsync``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
            <summary>
            Run a C# script.
            </summary>
            <param name="code">The source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
            <param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
            <param name="cancellationToken">Cancellation token.</param>
            <typeparam name="T">The return type of the submission</typeparam>
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.RunAsync(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
            <summary>
            Run a C# script.
            </summary>
            <param name="code">The source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
            <param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
            <param name="cancellationToken">Cancellation token.</param>
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.EvaluateAsync``1(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
            <summary>
            Run a C# script and return its resulting value.
            </summary>
            <param name="code">The source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
            <param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
            <param name="cancellationToken">Cancellation token.</param>
            <typeparam name="T">The return type of the submission</typeparam>
            <return>Returns the value returned by running the script.</return>
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
        </member>
        <member name="M:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScript.EvaluateAsync(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object,System.Type,System.Threading.CancellationToken)">
            <summary>
            Run a C# script and return its resulting value.
            </summary>
            <param name="code">The source code of the script.</param>
            <param name="options">The script options.</param>
            <param name="globals">An object instance whose members can be accessed by the script as global variables.</param>
            <param name="globalsType">Type of global object, <paramref name="globals"/>.GetType() is used if not specified.</param>
            <param name="cancellationToken">Cancellation token.</param>
            <return>Returns the value returned by running the script.</return>
            <exception cref="T:Microsoft.CodeAnalysis.Scripting.CompilationErrorException">Specified code has errors.</exception>
        </member>
        <member name="P:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScriptingResources.LogoLine1">
            <summary>Microsoft (R) Visual C# Interactive Compiler version {0}</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScriptingResources.LogoLine2">
            <summary>Copyright (C) Microsoft Corporation. All rights reserved.</summary>
        </member>
        <member name="P:Microsoft.CodeAnalysis.CSharp.Scripting.CSharpScriptingResources.InteractiveHelp">
            <summary>Usage: csi [option] ... [script-file.csx] [script-argument] ...
            
            Executes script-file.csx if specified, otherwise launches an interactive REPL (Read Eval Print Loop).
            
            Options:
              /help                          Display this usage message (alternative form:  ...</summary>
        </member>
    </members>
</doc>