forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.CodeAnalysis.Scripting.CSharp.xml
More file actions
106 lines (106 loc) · 5.75 KB
/
Microsoft.CodeAnalysis.Scripting.CSharp.xml
File metadata and controls
106 lines (106 loc) · 5.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.CodeAnalysis.Scripting.CSharp</name>
</assembly>
<members>
<member name="T:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript">
<summary>
A factory for creating and running csharp scripts.
</summary>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Create(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
<summary>
Create a new C# script.
<param name="code">The source code of the script.</param>
<param name="options">The script options.</param>
</summary>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Create(System.String)">
<summary>
Create a new C# script.
<param name="code">The source code of the script.</param>
</summary>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Run(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object)">
<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,
or a <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> instance that was the output from a previously run script.</param>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Run(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
<summary>
Run a C# script.
</summary>
<param name="code">The source code of the script.</param>
<param name="options">The script options.</param>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Run(System.String,System.Object)">
<summary>
Run a C# script.
</summary>
<param name="code">The source code of the script.</param>
<param name="globals">An object instance whose members can be accessed by the script as global variables,
or a <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> instance that was the output from a previously run script.</param>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Run(System.String)">
<summary>
Run a C# script.
</summary>
<param name="code">The source code of the script.</param>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Eval(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions,System.Object)">
<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,
or a <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> instance that was the output from a previously run script.</param>
<return>Returns the value returned by running the script.</return>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Eval(System.String,Microsoft.CodeAnalysis.Scripting.ScriptOptions)">
<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>
<return>Returns the value returned by running the script.</return>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Eval(System.String,System.Object)">
<summary>
Run a C# script and return its resulting value.
</summary>
<param name="code">The source code of the script.</param>
<param name="globals">An object instance whose members can be accessed by the script as global variables,
or a <see cref="T:Microsoft.CodeAnalysis.Scripting.ScriptState"/> instance that was the output from a previously run script.</param>
<return>Returns the value returned by running the script.</return>
</member>
<member name="M:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScript.Eval(System.String)">
<summary>
Run a C# script and return its resulting value.
</summary>
<param name="code">The source code of the script.</param>
<return>Returns the value returned by running the script.</return>
</member>
<member name="T:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScriptingResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScriptingResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.CodeAnalysis.Scripting.CSharp.CSharpScriptingResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
</members>
</doc>