forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlobals.xml
183 lines (149 loc) · 7.84 KB
/
Globals.xml
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
<Type Name="Globals" FullName="Microsoft.VisualBasic.Globals">
<TypeSignature Language="C#" Value="public sealed class Globals" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed Globals extends System.Object" />
<TypeSignature Language="DocId" Value="T:Microsoft.VisualBasic.Globals" />
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>Microsoft.VisualBasic.CompilerServices.StandardModule</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>The <see langword="Globals" /> module contains script engine functions.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This module supports the Visual Basic language keywords and runtime library members that provide information about the runtime currently in use.
## Examples
The following example uses the `ScriptEngineMajorVersion` property and related properties to return a string describing the current runtime information:
```
Function getRuntimeInfo() As String
Dim runtime As String = ScriptEngine & " Version "
runtime &= CStr(ScriptEngineMajorVersion) & "."
runtime &= CStr(ScriptEngineMinorVersion) & "."
runtime &= CStr(ScriptEngineBuildVersion)
' Return the current runtime information.
Return runtime
End Function
```
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName="ScriptEngine">
<MemberSignature Language="C#" Value="public static string ScriptEngine { get; }" />
<MemberSignature Language="ILAsm" Value=".property string ScriptEngine" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Globals.ScriptEngine" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns a <see langword="String" /> representing the runtime currently in use.</summary>
<value>Returns a <see langword="String" /> representing the runtime currently in use.</value>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="ScriptEngineBuildVersion">
<MemberSignature Language="C#" Value="public static int ScriptEngineBuildVersion { get; }" />
<MemberSignature Language="ILAsm" Value=".property int32 ScriptEngineBuildVersion" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Globals.ScriptEngineBuildVersion" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns an <see langword="Integer" /> containing the build version number of the runtime currently in use.</summary>
<value>Returns an <see langword="Integer" /> containing the build version number of the runtime currently in use.</value>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="ScriptEngineMajorVersion">
<MemberSignature Language="C#" Value="public static int ScriptEngineMajorVersion { get; }" />
<MemberSignature Language="ILAsm" Value=".property int32 ScriptEngineMajorVersion" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Globals.ScriptEngineMajorVersion" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns an <see langword="Integer" /> containing the major version number of the runtime currently in use.</summary>
<value>Returns an <see langword="Integer" /> containing the major version number of the runtime currently in use.</value>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="ScriptEngineMinorVersion">
<MemberSignature Language="C#" Value="public static int ScriptEngineMinorVersion { get; }" />
<MemberSignature Language="ILAsm" Value=".property int32 ScriptEngineMinorVersion" />
<MemberSignature Language="DocId" Value="P:Microsoft.VisualBasic.Globals.ScriptEngineMinorVersion" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns an <see langword="Integer" /> containing the minor version number of the runtime currently in use.</summary>
<value>Returns an <see langword="Integer" /> containing the minor version number of the runtime currently in use.</value>
<remarks>
<format type="text/markdown"><]
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>