Release 4.0.0-preview1-00304
[platform/core/csapi/tizenfx.git] / pkg / build / tizen40 / ref / System.Console.xml
1 <?xml version="1.0" encoding="utf-8"?><span>
2 <doc>
3   <assembly>
4     <name>System.Console</name>
5   </assembly>
6   <members>
7     <member name="T:System.Console">
8       <summary>Represents the standard input, output, and error streams for console applications. This class cannot be inherited.</summary>
9     </member>
10     <member name="P:System.Console.BackgroundColor">
11       <summary>Gets or sets the background color of the console.</summary>
12       <returns>A value that specifies the background color of the console; that is, the color that appears behind each character. The default is black.</returns>
13       <exception cref="T:System.ArgumentException">The color specified in a set operation is not a valid member of <see cref="T:System.ConsoleColor"></see>.</exception>
14       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
15       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
16     </member>
17     <member name="M:System.Console.Beep">
18       <summary>Plays the sound of a beep through the console speaker.</summary>
19       <exception cref="T:System.Security.HostProtectionException">This method was executed on a server, such as SQL Server, that does not permit access to a user interface.</exception>
20     </member>
21     <member name="M:System.Console.Beep(System.Int32,System.Int32)">
22       <summary>Plays the sound of a beep of a specified frequency and duration through the console speaker.</summary>
23       <param name="frequency">The frequency of the beep, ranging from 37 to 32767 hertz.</param>
24       <param name="duration">The duration of the beep measured in milliseconds.</param>
25       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="frequency">frequency</paramref> is less than 37 or more than 32767 hertz.   -or-  <paramref name="duration">duration</paramref> is less than or equal to zero.</exception>
26       <exception cref="T:System.Security.HostProtectionException">This method was executed on a server, such as SQL Server, that does not permit access to the console.</exception>
27     </member>
28     <member name="P:System.Console.BufferHeight">
29       <summary>Gets or sets the height of the buffer area.</summary>
30       <returns>The current height, in rows, of the buffer area.</returns>
31       <exception cref="T:System.ArgumentOutOfRangeException">The value in a set operation is less than or equal to zero.   -or-   The value in a set operation is greater than or equal to <see cref="F:System.Int16.MaxValue"></see>.   -or-   The value in a set operation is less than <see cref="P:System.Console.WindowTop"></see> + <see cref="P:System.Console.WindowHeight"></see>.</exception>
32       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
33       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
34     </member>
35     <member name="P:System.Console.BufferWidth">
36       <summary>Gets or sets the width of the buffer area.</summary>
37       <returns>The current width, in columns, of the buffer area.</returns>
38       <exception cref="T:System.ArgumentOutOfRangeException">The value in a set operation is less than or equal to zero.   -or-   The value in a set operation is greater than or equal to <see cref="F:System.Int16.MaxValue"></see>.   -or-   The value in a set operation is less than <see cref="P:System.Console.WindowLeft"></see> + <see cref="P:System.Console.WindowWidth"></see>.</exception>
39       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
40       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
41     </member>
42     <member name="E:System.Console.CancelKeyPress">
43       <summary>Occurs when the <see cref="F:System.ConsoleModifiers.Control"></see> modifier key (Ctrl) and either the <see cref="F:System.ConsoleKey.C"></see> console key (C) or the Break key are pressed simultaneously (Ctrl+C or Ctrl+Break).</summary>
44       <returns></returns>
45     </member>
46     <member name="P:System.Console.CapsLock">
47       <summary>Gets a value indicating whether the CAPS LOCK keyboard toggle is turned on or turned off.</summary>
48       <returns>true if CAPS LOCK is turned on; false if CAPS LOCK is turned off.</returns>
49     </member>
50     <member name="M:System.Console.Clear">
51       <summary>Clears the console buffer and corresponding console window of display information.</summary>
52       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
53     </member>
54     <member name="P:System.Console.CursorLeft">
55       <summary>Gets or sets the column position of the cursor within the buffer area.</summary>
56       <returns>The current position, in columns, of the cursor.</returns>
57       <exception cref="T:System.ArgumentOutOfRangeException">The value in a set operation is less than zero.   -or-   The value in a set operation is greater than or equal to <see cref="P:System.Console.BufferWidth"></see>.</exception>
58       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
59       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
60     </member>
61     <member name="P:System.Console.CursorSize">
62       <summary>Gets or sets the height of the cursor within a character cell.</summary>
63       <returns>The size of the cursor expressed as a percentage of the height of a character cell. The property value ranges from 1 to 100.</returns>
64       <exception cref="T:System.ArgumentOutOfRangeException">The value specified in a set operation is less than 1 or greater than 100.</exception>
65       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
66       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
67     </member>
68     <member name="P:System.Console.CursorTop">
69       <summary>Gets or sets the row position of the cursor within the buffer area.</summary>
70       <returns>The current position, in rows, of the cursor.</returns>
71       <exception cref="T:System.ArgumentOutOfRangeException">The value in a set operation is less than zero.   -or-   The value in a set operation is greater than or equal to <see cref="P:System.Console.BufferHeight"></see>.</exception>
72       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
73       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
74     </member>
75     <member name="P:System.Console.CursorVisible">
76       <summary>Gets or sets a value indicating whether the cursor is visible.</summary>
77       <returns>true if the cursor is visible; otherwise, false.</returns>
78       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
79       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
80     </member>
81     <member name="P:System.Console.Error">
82       <summary>Gets the standard error output stream.</summary>
83       <returns>A <see cref="T:System.IO.TextWriter"></see> that represents the standard error output stream.</returns>
84     </member>
85     <member name="P:System.Console.ForegroundColor">
86       <summary>Gets or sets the foreground color of the console.</summary>
87       <returns>A <see cref="T:System.ConsoleColor"></see> that specifies the foreground color of the console; that is, the color of each character that is displayed. The default is gray.</returns>
88       <exception cref="T:System.ArgumentException">The color specified in a set operation is not a valid member of <see cref="T:System.ConsoleColor"></see>.</exception>
89       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
90       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
91     </member>
92     <member name="P:System.Console.In">
93       <summary>Gets the standard input stream.</summary>
94       <returns>A <see cref="T:System.IO.TextReader"></see> that represents the standard input stream.</returns>
95     </member>
96     <member name="P:System.Console.InputEncoding">
97       <summary>Gets or sets the encoding the console uses to read input.</summary>
98       <returns>The encoding used to read console input.</returns>
99       <exception cref="T:System.ArgumentNullException">The property value in a set operation is null.</exception>
100       <exception cref="T:System.IO.IOException">An error occurred during the execution of this operation.</exception>
101       <exception cref="T:System.Security.SecurityException">Your application does not have permission to perform this operation.</exception>
102     </member>
103     <member name="P:System.Console.IsErrorRedirected">
104       <summary>Gets a value that indicates whether the error output stream has been redirected from the standard error stream.</summary>
105       <returns>true if error output is redirected; otherwise, false.</returns>
106     </member>
107     <member name="P:System.Console.IsInputRedirected">
108       <summary>Gets a value that indicates whether input has been redirected from the standard input stream.</summary>
109       <returns>true if input is redirected; otherwise, false.</returns>
110     </member>
111     <member name="P:System.Console.IsOutputRedirected">
112       <summary>Gets a value that indicates whether output has been redirected from the standard output stream.</summary>
113       <returns>true if output is redirected; otherwise, false.</returns>
114     </member>
115     <member name="P:System.Console.KeyAvailable">
116       <summary>Gets a value indicating whether a key press is available in the input stream.</summary>
117       <returns>true if a key press is available; otherwise, false.</returns>
118       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
119       <exception cref="T:System.InvalidOperationException">Standard input is redirected to a file instead of the keyboard.</exception>
120     </member>
121     <member name="P:System.Console.LargestWindowHeight">
122       <summary>Gets the largest possible number of console window rows, based on the current font and screen resolution.</summary>
123       <returns>The height of the largest possible console window measured in rows.</returns>
124     </member>
125     <member name="P:System.Console.LargestWindowWidth">
126       <summary>Gets the largest possible number of console window columns, based on the current font and screen resolution.</summary>
127       <returns>The width of the largest possible console window measured in columns.</returns>
128     </member>
129     <member name="M:System.Console.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
130       <summary>Copies a specified source area of the screen buffer to a specified destination area.</summary>
131       <param name="sourceLeft">The leftmost column of the source area.</param>
132       <param name="sourceTop">The topmost row of the source area.</param>
133       <param name="sourceWidth">The number of columns in the source area.</param>
134       <param name="sourceHeight">The number of rows in the source area.</param>
135       <param name="targetLeft">The leftmost column of the destination area.</param>
136       <param name="targetTop">The topmost row of the destination area.</param>
137       <exception cref="T:System.ArgumentOutOfRangeException">One or more of the parameters is less than zero.   -or-  <paramref name="sourceLeft">sourceLeft</paramref> or <paramref name="targetLeft">targetLeft</paramref> is greater than or equal to <see cref="P:System.Console.BufferWidth"></see>.   -or-  <paramref name="sourceTop">sourceTop</paramref> or <paramref name="targetTop">targetTop</paramref> is greater than or equal to <see cref="P:System.Console.BufferHeight"></see>.   -or-  <paramref name="sourceTop">sourceTop</paramref> + <paramref name="sourceHeight">sourceHeight</paramref> is greater than or equal to <see cref="P:System.Console.BufferHeight"></see>.   -or-  <paramref name="sourceLeft">sourceLeft</paramref> + <paramref name="sourceWidth">sourceWidth</paramref> is greater than or equal to <see cref="P:System.Console.BufferWidth"></see>.</exception>
138       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
139       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
140     </member>
141     <member name="M:System.Console.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Char,System.ConsoleColor,System.ConsoleColor)">
142       <summary>Copies a specified source area of the screen buffer to a specified destination area.</summary>
143       <param name="sourceLeft">The leftmost column of the source area.</param>
144       <param name="sourceTop">The topmost row of the source area.</param>
145       <param name="sourceWidth">The number of columns in the source area.</param>
146       <param name="sourceHeight">The number of rows in the source area.</param>
147       <param name="targetLeft">The leftmost column of the destination area.</param>
148       <param name="targetTop">The topmost row of the destination area.</param>
149       <param name="sourceChar">The character used to fill the source area.</param>
150       <param name="sourceForeColor">The foreground color used to fill the source area.</param>
151       <param name="sourceBackColor">The background color used to fill the source area.</param>
152       <exception cref="T:System.ArgumentOutOfRangeException">One or more of the parameters is less than zero.   -or-  <paramref name="sourceLeft">sourceLeft</paramref> or <paramref name="targetLeft">targetLeft</paramref> is greater than or equal to <see cref="P:System.Console.BufferWidth"></see>.   -or-  <paramref name="sourceTop">sourceTop</paramref> or <paramref name="targetTop">targetTop</paramref> is greater than or equal to <see cref="P:System.Console.BufferHeight"></see>.   -or-  <paramref name="sourceTop">sourceTop</paramref> + <paramref name="sourceHeight">sourceHeight</paramref> is greater than or equal to <see cref="P:System.Console.BufferHeight"></see>.   -or-  <paramref name="sourceLeft">sourceLeft</paramref> + <paramref name="sourceWidth">sourceWidth</paramref> is greater than or equal to <see cref="P:System.Console.BufferWidth"></see>.</exception>
153       <exception cref="T:System.ArgumentException">One or both of the color parameters is not a member of the <see cref="T:System.ConsoleColor"></see> enumeration.</exception>
154       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
155       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
156     </member>
157     <member name="P:System.Console.NumberLock">
158       <summary>Gets a value indicating whether the NUM LOCK keyboard toggle is turned on or turned off.</summary>
159       <returns>true if NUM LOCK is turned on; false if NUM LOCK is turned off.</returns>
160     </member>
161     <member name="M:System.Console.OpenStandardError">
162       <summary>Acquires the standard error stream.</summary>
163       <returns>The standard error stream.</returns>
164     </member>
165     <member name="M:System.Console.OpenStandardError(System.Int32)">
166       <summary>Acquires the standard error stream, which is set to a specified buffer size.</summary>
167       <param name="bufferSize">The internal stream buffer size.</param>
168       <returns>The standard error stream.</returns>
169       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is less than or equal to zero.</exception>
170     </member>
171     <member name="M:System.Console.OpenStandardInput">
172       <summary>Acquires the standard input stream.</summary>
173       <returns>The standard input stream.</returns>
174     </member>
175     <member name="M:System.Console.OpenStandardInput(System.Int32)">
176       <summary>Acquires the standard input stream, which is set to a specified buffer size.</summary>
177       <param name="bufferSize">The internal stream buffer size.</param>
178       <returns>The standard input stream.</returns>
179       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is less than or equal to zero.</exception>
180     </member>
181     <member name="M:System.Console.OpenStandardOutput">
182       <summary>Acquires the standard output stream.</summary>
183       <returns>The standard output stream.</returns>
184     </member>
185     <member name="M:System.Console.OpenStandardOutput(System.Int32)">
186       <summary>Acquires the standard output stream, which is set to a specified buffer size.</summary>
187       <param name="bufferSize">The internal stream buffer size.</param>
188       <returns>The standard output stream.</returns>
189       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="bufferSize">bufferSize</paramref> is less than or equal to zero.</exception>
190     </member>
191     <member name="P:System.Console.Out">
192       <summary>Gets the standard output stream.</summary>
193       <returns>A <see cref="T:System.IO.TextWriter"></see> that represents the standard output stream.</returns>
194     </member>
195     <member name="P:System.Console.OutputEncoding">
196       <summary>Gets or sets the encoding the console uses to write output.</summary>
197       <returns>The encoding used to write console output.</returns>
198       <exception cref="T:System.ArgumentNullException">The property value in a set operation is null.</exception>
199       <exception cref="T:System.IO.IOException">An error occurred during the execution of this operation.</exception>
200       <exception cref="T:System.Security.SecurityException">Your application does not have permission to perform this operation.</exception>
201     </member>
202     <member name="M:System.Console.Read">
203       <summary>Reads the next character from the standard input stream.</summary>
204       <returns>The next character from the input stream, or negative one (-1) if there are currently no more characters to be read.</returns>
205       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
206     </member>
207     <member name="M:System.Console.ReadKey">
208       <summary>Obtains the next character or function key pressed by the user. The pressed key is displayed in the console window.</summary>
209       <returns>An object that describes the <see cref="T:System.ConsoleKey"></see> constant and Unicode character, if any, that correspond to the pressed console key. The <see cref="T:System.ConsoleKeyInfo"></see> object also describes, in a bitwise combination of <see cref="T:System.ConsoleModifiers"></see> values, whether one or more Shift, Alt, or Ctrl modifier keys was pressed simultaneously with the console key.</returns>
210       <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Console.In"></see> property is redirected from some stream other than the console.</exception>
211     </member>
212     <member name="M:System.Console.ReadKey(System.Boolean)">
213       <summary>Obtains the next character or function key pressed by the user. The pressed key is optionally displayed in the console window.</summary>
214       <param name="intercept">Determines whether to display the pressed key in the console window. true to not display the pressed key; otherwise, false.</param>
215       <returns>An object that describes the <see cref="T:System.ConsoleKey"></see> constant and Unicode character, if any, that correspond to the pressed console key. The <see cref="T:System.ConsoleKeyInfo"></see> object also describes, in a bitwise combination of <see cref="T:System.ConsoleModifiers"></see> values, whether one or more Shift, Alt, or Ctrl modifier keys was pressed simultaneously with the console key.</returns>
216       <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Console.In"></see> property is redirected from some stream other than the console.</exception>
217     </member>
218     <member name="M:System.Console.ReadLine">
219       <summary>Reads the next line of characters from the standard input stream.</summary>
220       <returns>The next line of characters from the input stream, or null if no more lines are available.</returns>
221       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
222       <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
223       <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line of characters is greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
224     </member>
225     <member name="M:System.Console.ResetColor">
226       <summary>Sets the foreground and background console colors to their defaults.</summary>
227       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
228       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
229     </member>
230     <member name="M:System.Console.SetBufferSize(System.Int32,System.Int32)">
231       <summary>Sets the height and width of the screen buffer area to the specified values.</summary>
232       <param name="width">The width of the buffer area measured in columns.</param>
233       <param name="height">The height of the buffer area measured in rows.</param>
234       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="height">height</paramref> or <paramref name="width">width</paramref> is less than or equal to zero.   -or-  <paramref name="height">height</paramref> or <paramref name="width">width</paramref> is greater than or equal to <see cref="F:System.Int16.MaxValue"></see>.   -or-  <paramref name="width">width</paramref> is less than <see cref="P:System.Console.WindowLeft"></see> + <see cref="P:System.Console.WindowWidth"></see>.   -or-  <paramref name="height">height</paramref> is less than <see cref="P:System.Console.WindowTop"></see> + <see cref="P:System.Console.WindowHeight"></see>.</exception>
235       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
236       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
237     </member>
238     <member name="M:System.Console.SetCursorPosition(System.Int32,System.Int32)">
239       <summary>Sets the position of the cursor.</summary>
240       <param name="left">The column position of the cursor. Columns are numbered from left to right starting at 0.</param>
241       <param name="top">The row position of the cursor. Rows are numbered from top to bottom starting at 0.</param>
242       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="left">left</paramref> or <paramref name="top">top</paramref> is less than zero.   -or-  <paramref name="left">left</paramref> is greater than or equal to <see cref="P:System.Console.BufferWidth"></see>.   -or-  <paramref name="top">top</paramref> is greater than or equal to <see cref="P:System.Console.BufferHeight"></see>.</exception>
243       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
244       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
245     </member>
246     <member name="M:System.Console.SetError(System.IO.TextWriter)">
247       <summary>Sets the <see cref="P:System.Console.Error"></see> property to the specified <see cref="T:System.IO.TextWriter"></see> object.</summary>
248       <param name="newError">A stream that is the new standard error output.</param>
249       <exception cref="T:System.ArgumentNullException"><paramref name="newError">newError</paramref> is null.</exception>
250       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
251     </member>
252     <member name="M:System.Console.SetIn(System.IO.TextReader)">
253       <summary>Sets the <see cref="P:System.Console.In"></see> property to the specified <see cref="T:System.IO.TextReader"></see> object.</summary>
254       <param name="newIn">A stream that is the new standard input.</param>
255       <exception cref="T:System.ArgumentNullException"><paramref name="newIn">newIn</paramref> is null.</exception>
256       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
257     </member>
258     <member name="M:System.Console.SetOut(System.IO.TextWriter)">
259       <summary>Sets the <see cref="P:System.Console.Out"></see> property to the specified <see cref="T:System.IO.TextWriter"></see> object.</summary>
260       <param name="newOut">A stream that is the new standard output.</param>
261       <exception cref="T:System.ArgumentNullException"><paramref name="newOut">newOut</paramref> is null.</exception>
262       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
263     </member>
264     <member name="M:System.Console.SetWindowPosition(System.Int32,System.Int32)">
265       <summary>Sets the position of the console window relative to the screen buffer.</summary>
266       <param name="left">The column position of the upper left  corner of the console window.</param>
267       <param name="top">The row position of the upper left corner of the console window.</param>
268       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="left">left</paramref> or <paramref name="top">top</paramref> is less than zero.   -or-  <paramref name="left">left</paramref> + <see cref="P:System.Console.WindowWidth"></see> is greater than <see cref="P:System.Console.BufferWidth"></see>.   -or-  <paramref name="top">top</paramref> + <see cref="P:System.Console.WindowHeight"></see> is greater than <see cref="P:System.Console.BufferHeight"></see>.</exception>
269       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
270       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
271     </member>
272     <member name="M:System.Console.SetWindowSize(System.Int32,System.Int32)">
273       <summary>Sets the height and width of the console window to the specified values.</summary>
274       <param name="width">The width of the console window measured in columns.</param>
275       <param name="height">The height of the console window measured in rows.</param>
276       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="width">width</paramref> or <paramref name="height">height</paramref> is less than or equal to zero.   -or-  <paramref name="width">width</paramref> plus <see cref="P:System.Console.WindowLeft"></see> or <paramref name="height">height</paramref> plus <see cref="P:System.Console.WindowTop"></see> is greater than or equal to <see cref="F:System.Int16.MaxValue"></see>.   -or-  <paramref name="width">width</paramref> or <paramref name="height">height</paramref> is greater than the largest possible window width or height for the current screen resolution and console font.</exception>
277       <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action.</exception>
278       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
279     </member>
280     <member name="P:System.Console.Title">
281       <summary>Gets or sets the title to display in the console title bar.</summary>
282       <returns>The string to be displayed in the title bar of the console. The maximum length of the title string is 24500 characters.</returns>
283       <exception cref="T:System.InvalidOperationException">In a get operation, the retrieved title is longer than 24500 characters.</exception>
284       <exception cref="T:System.ArgumentOutOfRangeException">In a set operation, the specified title is longer than 24500 characters.</exception>
285       <exception cref="T:System.ArgumentNullException">In a set operation, the specified title is null.</exception>
286       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
287     </member>
288     <member name="P:System.Console.TreatControlCAsInput">
289       <summary>Gets or sets a value indicating whether the combination of the <see cref="F:System.ConsoleModifiers.Control"></see> modifier key and <see cref="F:System.ConsoleKey.C"></see> console key (Ctrl+C) is treated as ordinary input or as an interruption that is handled by the operating system.</summary>
290       <returns>true if Ctrl+C is treated as ordinary input; otherwise, false.</returns>
291       <exception cref="T:System.IO.IOException">Unable to get or set the input mode of the console input buffer.</exception>
292     </member>
293     <member name="P:System.Console.WindowHeight">
294       <summary>Gets or sets the height of the console window area.</summary>
295       <returns>The height of the console window measured in rows.</returns>
296       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Console.WindowWidth"></see> property or the value of the <see cref="P:System.Console.WindowHeight"></see> property is less than or equal to 0.   -or-   The value of the <see cref="P:System.Console.WindowHeight"></see> property plus the value of the <see cref="P:System.Console.WindowTop"></see> property is greater than or equal to <see cref="F:System.Int16.MaxValue"></see>.   -or-   The value of the <see cref="P:System.Console.WindowWidth"></see> property or the value of the <see cref="P:System.Console.WindowHeight"></see> property is greater than the largest possible window width or height for the current screen resolution and console font.</exception>
297       <exception cref="T:System.IO.IOException">Error reading or writing information.</exception>
298     </member>
299     <member name="P:System.Console.WindowLeft">
300       <summary>Gets or sets the leftmost position of the console window area relative to the screen buffer.</summary>
301       <returns>The leftmost console window position measured in columns.</returns>
302       <exception cref="T:System.ArgumentOutOfRangeException">In a set operation, the value to be assigned is less than zero.   -or-   As a result of the assignment, <see cref="P:System.Console.WindowLeft"></see> plus <see cref="P:System.Console.WindowWidth"></see> would exceed <see cref="P:System.Console.BufferWidth"></see>.</exception>
303       <exception cref="T:System.IO.IOException">Error reading or writing information.</exception>
304     </member>
305     <member name="P:System.Console.WindowTop">
306       <summary>Gets or sets the top position of the console window area relative to the screen buffer.</summary>
307       <returns>The uppermost console window position measured in rows.</returns>
308       <exception cref="T:System.ArgumentOutOfRangeException">In a set operation, the value to be assigned is less than zero.   -or-   As a result of the assignment, <see cref="P:System.Console.WindowTop"></see> plus <see cref="P:System.Console.WindowHeight"></see> would exceed <see cref="P:System.Console.BufferHeight"></see>.</exception>
309       <exception cref="T:System.IO.IOException">Error reading or writing information.</exception>
310     </member>
311     <member name="P:System.Console.WindowWidth">
312       <summary>Gets or sets the width of the console window.</summary>
313       <returns>The width of the console window measured in columns.</returns>
314       <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Console.WindowWidth"></see> property or the value of the <see cref="P:System.Console.WindowHeight"></see> property is less than or equal to 0.   -or-   The value of the <see cref="P:System.Console.WindowHeight"></see> property plus the value of the <see cref="P:System.Console.WindowTop"></see> property is greater than or equal to <see cref="F:System.Int16.MaxValue"></see>.   -or-   The value of the <see cref="P:System.Console.WindowWidth"></see> property or the value of the <see cref="P:System.Console.WindowHeight"></see> property is greater than the largest possible window width or height for the current screen resolution and console font.</exception>
315       <exception cref="T:System.IO.IOException">Error reading or writing information.</exception>
316     </member>
317     <member name="M:System.Console.Write(System.String,System.Object,System.Object,System.Object)">
318       <summary>Writes the text representation of the specified objects to the standard output stream using the specified format information.</summary>
319       <param name="format">A composite format string.</param>
320       <param name="arg0">The first object to write using format.</param>
321       <param name="arg1">The second object to write using format.</param>
322       <param name="arg2">The third object to write using format.</param>
323       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
324       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
325       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
326     </member>
327     <member name="M:System.Console.Write(System.String,System.Object,System.Object)">
328       <summary>Writes the text representation of the specified objects to the standard output stream using the specified format information.</summary>
329       <param name="format">A composite format string.</param>
330       <param name="arg0">The first object to write using format.</param>
331       <param name="arg1">The second object to write using format.</param>
332       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
333       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
334       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
335     </member>
336     <member name="M:System.Console.Write(System.String,System.Object[])">
337       <summary>Writes the text representation of the specified array of objects to the standard output stream using the specified format information.</summary>
338       <param name="format">A composite format string.</param>
339       <param name="arg">An array of objects to write using format.</param>
340       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
341       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> or <paramref name="arg">arg</paramref> is null.</exception>
342       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
343     </member>
344     <member name="M:System.Console.Write(System.String,System.Object)">
345       <summary>Writes the text representation of the specified object to the standard output stream using the specified format information.</summary>
346       <param name="format">A composite format string.</param>
347       <param name="arg0">An object to write using format.</param>
348       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
349       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
350       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
351     </member>
352     <member name="M:System.Console.Write(System.UInt64)">
353       <summary>Writes the text representation of the specified 64-bit unsigned integer value to the standard output stream.</summary>
354       <param name="value">The value to write.</param>
355       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
356     </member>
357     <member name="M:System.Console.Write(System.UInt32)">
358       <summary>Writes the text representation of the specified 32-bit unsigned integer value to the standard output stream.</summary>
359       <param name="value">The value to write.</param>
360       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
361     </member>
362     <member name="M:System.Console.Write(System.String)">
363       <summary>Writes the specified string value to the standard output stream.</summary>
364       <param name="value">The value to write.</param>
365       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
366     </member>
367     <member name="M:System.Console.Write(System.Char[],System.Int32,System.Int32)">
368       <summary>Writes the specified subarray of Unicode characters to the standard output stream.</summary>
369       <param name="buffer">An array of Unicode characters.</param>
370       <param name="index">The starting position in buffer.</param>
371       <param name="count">The number of characters to write.</param>
372       <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
373       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.</exception>
374       <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> plus <paramref name="count">count</paramref> specify a position that is not within <paramref name="buffer">buffer</paramref>.</exception>
375       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
376     </member>
377     <member name="M:System.Console.Write(System.Object)">
378       <summary>Writes the text representation of the specified object to the standard output stream.</summary>
379       <param name="value">The value to write, or null.</param>
380       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
381     </member>
382     <member name="M:System.Console.Write(System.Single)">
383       <summary>Writes the text representation of the specified single-precision floating-point value to the standard output stream.</summary>
384       <param name="value">The value to write.</param>
385       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
386     </member>
387     <member name="M:System.Console.Write(System.Char)">
388       <summary>Writes the specified Unicode character value to the standard output stream.</summary>
389       <param name="value">The value to write.</param>
390       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
391     </member>
392     <member name="M:System.Console.Write(System.Char[])">
393       <summary>Writes the specified array of Unicode characters to the standard output stream.</summary>
394       <param name="buffer">A Unicode character array.</param>
395       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
396     </member>
397     <member name="M:System.Console.Write(System.Boolean)">
398       <summary>Writes the text representation of the specified Boolean value to the standard output stream.</summary>
399       <param name="value">The value to write.</param>
400       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
401     </member>
402     <member name="M:System.Console.Write(System.Double)">
403       <summary>Writes the text representation of the specified double-precision floating-point value to the standard output stream.</summary>
404       <param name="value">The value to write.</param>
405       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
406     </member>
407     <member name="M:System.Console.Write(System.Int32)">
408       <summary>Writes the text representation of the specified 32-bit signed integer value to the standard output stream.</summary>
409       <param name="value">The value to write.</param>
410       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
411     </member>
412     <member name="M:System.Console.Write(System.Int64)">
413       <summary>Writes the text representation of the specified 64-bit signed integer value to the standard output stream.</summary>
414       <param name="value">The value to write.</param>
415       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
416     </member>
417     <member name="M:System.Console.Write(System.Decimal)">
418       <summary>Writes the text representation of the specified <see cref="T:System.Decimal"></see> value to the standard output stream.</summary>
419       <param name="value">The value to write.</param>
420       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
421     </member>
422     <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object)">
423       <summary>Writes the text representation of the specified objects, followed by the current line terminator, to the standard output stream using the specified format information.</summary>
424       <param name="format">A composite format string.</param>
425       <param name="arg0">The first object to write using format.</param>
426       <param name="arg1">The second object to write using format.</param>
427       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
428       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
429       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
430     </member>
431     <member name="M:System.Console.WriteLine(System.String)">
432       <summary>Writes the specified string value, followed by the current line terminator, to the standard output stream.</summary>
433       <param name="value">The value to write.</param>
434       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
435     </member>
436     <member name="M:System.Console.WriteLine(System.Char[],System.Int32,System.Int32)">
437       <summary>Writes the specified subarray of Unicode characters, followed by the current line terminator, to the standard output stream.</summary>
438       <param name="buffer">An array of Unicode characters.</param>
439       <param name="index">The starting position in buffer.</param>
440       <param name="count">The number of characters to write.</param>
441       <exception cref="T:System.ArgumentNullException"><paramref name="buffer">buffer</paramref> is null.</exception>
442       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> or <paramref name="count">count</paramref> is less than zero.</exception>
443       <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> plus <paramref name="count">count</paramref> specify a position that is not within <paramref name="buffer">buffer</paramref>.</exception>
444       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
445     </member>
446     <member name="M:System.Console.WriteLine(System.String,System.Object[])">
447       <summary>Writes the text representation of the specified array of objects, followed by the current line terminator, to the standard output stream using the specified format information.</summary>
448       <param name="format">A composite format string.</param>
449       <param name="arg">An array of objects to write using format.</param>
450       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
451       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> or <paramref name="arg">arg</paramref> is null.</exception>
452       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
453     </member>
454     <member name="M:System.Console.WriteLine(System.String,System.Object)">
455       <summary>Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream using the specified format information.</summary>
456       <param name="format">A composite format string.</param>
457       <param name="arg0">An object to write using format.</param>
458       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
459       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
460       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
461     </member>
462     <member name="M:System.Console.WriteLine(System.UInt64)">
463       <summary>Writes the text representation of the specified 64-bit unsigned integer value, followed by the current line terminator, to the standard output stream.</summary>
464       <param name="value">The value to write.</param>
465       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
466     </member>
467     <member name="M:System.Console.WriteLine(System.UInt32)">
468       <summary>Writes the text representation of the specified 32-bit unsigned integer value, followed by the current line terminator, to the standard output stream.</summary>
469       <param name="value">The value to write.</param>
470       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
471     </member>
472     <member name="M:System.Console.WriteLine(System.Single)">
473       <summary>Writes the text representation of the specified single-precision floating-point value, followed by the current line terminator, to the standard output stream.</summary>
474       <param name="value">The value to write.</param>
475       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
476     </member>
477     <member name="M:System.Console.WriteLine(System.Decimal)">
478       <summary>Writes the text representation of the specified <see cref="T:System.Decimal"></see> value, followed by the current line terminator, to the standard output stream.</summary>
479       <param name="value">The value to write.</param>
480       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
481     </member>
482     <member name="M:System.Console.WriteLine(System.Int64)">
483       <summary>Writes the text representation of the specified 64-bit signed integer value, followed by the current line terminator, to the standard output stream.</summary>
484       <param name="value">The value to write.</param>
485       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
486     </member>
487     <member name="M:System.Console.WriteLine(System.Int32)">
488       <summary>Writes the text representation of the specified 32-bit signed integer value, followed by the current line terminator, to the standard output stream.</summary>
489       <param name="value">The value to write.</param>
490       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
491     </member>
492     <member name="M:System.Console.WriteLine(System.Double)">
493       <summary>Writes the text representation of the specified double-precision floating-point value, followed by the current line terminator, to the standard output stream.</summary>
494       <param name="value">The value to write.</param>
495       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
496     </member>
497     <member name="M:System.Console.WriteLine(System.Char[])">
498       <summary>Writes the specified array of Unicode characters, followed by the current line terminator, to the standard output stream.</summary>
499       <param name="buffer">A Unicode character array.</param>
500       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
501     </member>
502     <member name="M:System.Console.WriteLine(System.Char)">
503       <summary>Writes the specified Unicode character, followed by the current line terminator, value to the standard output stream.</summary>
504       <param name="value">The value to write.</param>
505       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
506     </member>
507     <member name="M:System.Console.WriteLine(System.Boolean)">
508       <summary>Writes the text representation of the specified Boolean value, followed by the current line terminator, to the standard output stream.</summary>
509       <param name="value">The value to write.</param>
510       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
511     </member>
512     <member name="M:System.Console.WriteLine">
513       <summary>Writes the current line terminator to the standard output stream.</summary>
514       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
515     </member>
516     <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object,System.Object)">
517       <summary>Writes the text representation of the specified objects, followed by the current line terminator, to the standard output stream using the specified format information.</summary>
518       <param name="format">A composite format string.</param>
519       <param name="arg0">The first object to write using format.</param>
520       <param name="arg1">The second object to write using format.</param>
521       <param name="arg2">The third object to write using format.</param>
522       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
523       <exception cref="T:System.ArgumentNullException"><paramref name="format">format</paramref> is null.</exception>
524       <exception cref="T:System.FormatException">The format specification in <paramref name="format">format</paramref> is invalid.</exception>
525     </member>
526     <member name="M:System.Console.WriteLine(System.Object)">
527       <summary>Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream.</summary>
528       <param name="value">The value to write.</param>
529       <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
530     </member>
531     <member name="T:System.ConsoleCancelEventArgs">
532       <summary>Provides data for the <see cref="E:System.Console.CancelKeyPress"></see> event. This class cannot be inherited.</summary>
533     </member>
534     <member name="P:System.ConsoleCancelEventArgs.Cancel">
535       <summary>Gets or sets a value that indicates whether simultaneously pressing the <see cref="F:System.ConsoleModifiers.Control"></see> modifier key and the <see cref="F:System.ConsoleKey.C"></see> console key (Ctrl+C) or the Ctrl+Break keys terminates the current process. The default is false, which terminates the current process.</summary>
536       <returns>true if the current process should resume when the event handler concludes; false if the current process should terminate. The default value is false; the current process terminates when the event handler returns. If true, the current process continues.</returns>
537     </member>
538     <member name="P:System.ConsoleCancelEventArgs.SpecialKey">
539       <summary>Gets the combination of modifier and console keys that interrupted the current process.</summary>
540       <returns>One of the enumeration values that specifies the key combination that interrupted the current process. There is no default value.</returns>
541     </member>
542     <member name="T:System.ConsoleCancelEventHandler">
543       <summary>Represents the method that will handle the <see cref="E:System.Console.CancelKeyPress"></see> event of a <see cref="T:System.Console"></see>.</summary>
544       <param name="sender">The source of the event.</param>
545       <param name="e">A <see cref="T:System.ConsoleCancelEventArgs"></see> object that contains the event data.</param>
546     </member>
547     <member name="T:System.ConsoleColor">
548       <summary>Specifies constants that define foreground and background colors for the console.</summary>
549     </member>
550     <member name="F:System.ConsoleColor.Black">
551       <summary>The color black.</summary>
552       <returns></returns>
553     </member>
554     <member name="F:System.ConsoleColor.Blue">
555       <summary>The color blue.</summary>
556       <returns></returns>
557     </member>
558     <member name="F:System.ConsoleColor.Cyan">
559       <summary>The color cyan (blue-green).</summary>
560       <returns></returns>
561     </member>
562     <member name="F:System.ConsoleColor.DarkBlue">
563       <summary>The color dark blue.</summary>
564       <returns></returns>
565     </member>
566     <member name="F:System.ConsoleColor.DarkCyan">
567       <summary>The color dark cyan (dark blue-green).</summary>
568       <returns></returns>
569     </member>
570     <member name="F:System.ConsoleColor.DarkGray">
571       <summary>The color dark gray.</summary>
572       <returns></returns>
573     </member>
574     <member name="F:System.ConsoleColor.DarkGreen">
575       <summary>The color dark green.</summary>
576       <returns></returns>
577     </member>
578     <member name="F:System.ConsoleColor.DarkMagenta">
579       <summary>The color dark magenta (dark purplish-red).</summary>
580       <returns></returns>
581     </member>
582     <member name="F:System.ConsoleColor.DarkRed">
583       <summary>The color dark red.</summary>
584       <returns></returns>
585     </member>
586     <member name="F:System.ConsoleColor.DarkYellow">
587       <summary>The color dark yellow (ochre).</summary>
588       <returns></returns>
589     </member>
590     <member name="F:System.ConsoleColor.Gray">
591       <summary>The color gray.</summary>
592       <returns></returns>
593     </member>
594     <member name="F:System.ConsoleColor.Green">
595       <summary>The color green.</summary>
596       <returns></returns>
597     </member>
598     <member name="F:System.ConsoleColor.Magenta">
599       <summary>The color magenta (purplish-red).</summary>
600       <returns></returns>
601     </member>
602     <member name="F:System.ConsoleColor.Red">
603       <summary>The color red.</summary>
604       <returns></returns>
605     </member>
606     <member name="F:System.ConsoleColor.White">
607       <summary>The color white.</summary>
608       <returns></returns>
609     </member>
610     <member name="F:System.ConsoleColor.Yellow">
611       <summary>The color yellow.</summary>
612       <returns></returns>
613     </member>
614     <member name="T:System.ConsoleKey">
615       <summary>Specifies the standard keys on a console.</summary>
616     </member>
617     <member name="F:System.ConsoleKey.A">
618       <summary>The A key.</summary>
619       <returns></returns>
620     </member>
621     <member name="F:System.ConsoleKey.Add">
622       <summary>The Add key (the addition key on the numeric keypad).</summary>
623       <returns></returns>
624     </member>
625     <member name="F:System.ConsoleKey.Applications">
626       <summary>The Application key (Microsoft Natural Keyboard).</summary>
627       <returns></returns>
628     </member>
629     <member name="F:System.ConsoleKey.Attention">
630       <summary>The ATTN key.</summary>
631       <returns></returns>
632     </member>
633     <member name="F:System.ConsoleKey.B">
634       <summary>The B key.</summary>
635       <returns></returns>
636     </member>
637     <member name="F:System.ConsoleKey.Backspace">
638       <summary>The BACKSPACE key.</summary>
639       <returns></returns>
640     </member>
641     <member name="F:System.ConsoleKey.BrowserBack">
642       <summary>The Browser Back key (Windows 2000 or later).</summary>
643       <returns></returns>
644     </member>
645     <member name="F:System.ConsoleKey.BrowserFavorites">
646       <summary>The Browser Favorites key (Windows 2000 or later).</summary>
647       <returns></returns>
648     </member>
649     <member name="F:System.ConsoleKey.BrowserForward">
650       <summary>The Browser Forward key (Windows 2000 or later).</summary>
651       <returns></returns>
652     </member>
653     <member name="F:System.ConsoleKey.BrowserHome">
654       <summary>The Browser Home key (Windows 2000 or later).</summary>
655       <returns></returns>
656     </member>
657     <member name="F:System.ConsoleKey.BrowserRefresh">
658       <summary>The Browser Refresh key (Windows 2000 or later).</summary>
659       <returns></returns>
660     </member>
661     <member name="F:System.ConsoleKey.BrowserSearch">
662       <summary>The Browser Search key (Windows 2000 or later).</summary>
663       <returns></returns>
664     </member>
665     <member name="F:System.ConsoleKey.BrowserStop">
666       <summary>The Browser Stop key (Windows 2000 or later).</summary>
667       <returns></returns>
668     </member>
669     <member name="F:System.ConsoleKey.C">
670       <summary>The C key.</summary>
671       <returns></returns>
672     </member>
673     <member name="F:System.ConsoleKey.Clear">
674       <summary>The CLEAR key.</summary>
675       <returns></returns>
676     </member>
677     <member name="F:System.ConsoleKey.CrSel">
678       <summary>The CRSEL (CURSOR SELECT) key.</summary>
679       <returns></returns>
680     </member>
681     <member name="F:System.ConsoleKey.D">
682       <summary>The D key.</summary>
683       <returns></returns>
684     </member>
685     <member name="F:System.ConsoleKey.D0">
686       <summary>The 0 key.</summary>
687       <returns></returns>
688     </member>
689     <member name="F:System.ConsoleKey.D1">
690       <summary>The 1 key.</summary>
691       <returns></returns>
692     </member>
693     <member name="F:System.ConsoleKey.D2">
694       <summary>The 2 key.</summary>
695       <returns></returns>
696     </member>
697     <member name="F:System.ConsoleKey.D3">
698       <summary>The 3 key.</summary>
699       <returns></returns>
700     </member>
701     <member name="F:System.ConsoleKey.D4">
702       <summary>The 4 key.</summary>
703       <returns></returns>
704     </member>
705     <member name="F:System.ConsoleKey.D5">
706       <summary>The 5 key.</summary>
707       <returns></returns>
708     </member>
709     <member name="F:System.ConsoleKey.D6">
710       <summary>The 6 key.</summary>
711       <returns></returns>
712     </member>
713     <member name="F:System.ConsoleKey.D7">
714       <summary>The 7 key.</summary>
715       <returns></returns>
716     </member>
717     <member name="F:System.ConsoleKey.D8">
718       <summary>The 8 key.</summary>
719       <returns></returns>
720     </member>
721     <member name="F:System.ConsoleKey.D9">
722       <summary>The 9 key.</summary>
723       <returns></returns>
724     </member>
725     <member name="F:System.ConsoleKey.Decimal">
726       <summary>The Decimal key (the decimal key on the numeric keypad).</summary>
727       <returns></returns>
728     </member>
729     <member name="F:System.ConsoleKey.Delete">
730       <summary>The DEL (DELETE) key.</summary>
731       <returns></returns>
732     </member>
733     <member name="F:System.ConsoleKey.Divide">
734       <summary>The Divide key (the division key on the numeric keypad).</summary>
735       <returns></returns>
736     </member>
737     <member name="F:System.ConsoleKey.DownArrow">
738       <summary>The DOWN ARROW key.</summary>
739       <returns></returns>
740     </member>
741     <member name="F:System.ConsoleKey.E">
742       <summary>The E key.</summary>
743       <returns></returns>
744     </member>
745     <member name="F:System.ConsoleKey.End">
746       <summary>The END key.</summary>
747       <returns></returns>
748     </member>
749     <member name="F:System.ConsoleKey.Enter">
750       <summary>The ENTER key.</summary>
751       <returns></returns>
752     </member>
753     <member name="F:System.ConsoleKey.EraseEndOfFile">
754       <summary>The ERASE EOF key.</summary>
755       <returns></returns>
756     </member>
757     <member name="F:System.ConsoleKey.Escape">
758       <summary>The ESC (ESCAPE) key.</summary>
759       <returns></returns>
760     </member>
761     <member name="F:System.ConsoleKey.Execute">
762       <summary>The EXECUTE key.</summary>
763       <returns></returns>
764     </member>
765     <member name="F:System.ConsoleKey.ExSel">
766       <summary>The EXSEL (EXTEND SELECTION) key.</summary>
767       <returns></returns>
768     </member>
769     <member name="F:System.ConsoleKey.F">
770       <summary>The F key.</summary>
771       <returns></returns>
772     </member>
773     <member name="F:System.ConsoleKey.F1">
774       <summary>The F1 key.</summary>
775       <returns></returns>
776     </member>
777     <member name="F:System.ConsoleKey.F10">
778       <summary>The F10 key.</summary>
779       <returns></returns>
780     </member>
781     <member name="F:System.ConsoleKey.F11">
782       <summary>The F11 key.</summary>
783       <returns></returns>
784     </member>
785     <member name="F:System.ConsoleKey.F12">
786       <summary>The F12 key.</summary>
787       <returns></returns>
788     </member>
789     <member name="F:System.ConsoleKey.F13">
790       <summary>The F13 key.</summary>
791       <returns></returns>
792     </member>
793     <member name="F:System.ConsoleKey.F14">
794       <summary>The F14 key.</summary>
795       <returns></returns>
796     </member>
797     <member name="F:System.ConsoleKey.F15">
798       <summary>The F15 key.</summary>
799       <returns></returns>
800     </member>
801     <member name="F:System.ConsoleKey.F16">
802       <summary>The F16 key.</summary>
803       <returns></returns>
804     </member>
805     <member name="F:System.ConsoleKey.F17">
806       <summary>The F17 key.</summary>
807       <returns></returns>
808     </member>
809     <member name="F:System.ConsoleKey.F18">
810       <summary>The F18 key.</summary>
811       <returns></returns>
812     </member>
813     <member name="F:System.ConsoleKey.F19">
814       <summary>The F19 key.</summary>
815       <returns></returns>
816     </member>
817     <member name="F:System.ConsoleKey.F2">
818       <summary>The F2 key.</summary>
819       <returns></returns>
820     </member>
821     <member name="F:System.ConsoleKey.F20">
822       <summary>The F20 key.</summary>
823       <returns></returns>
824     </member>
825     <member name="F:System.ConsoleKey.F21">
826       <summary>The F21 key.</summary>
827       <returns></returns>
828     </member>
829     <member name="F:System.ConsoleKey.F22">
830       <summary>The F22 key.</summary>
831       <returns></returns>
832     </member>
833     <member name="F:System.ConsoleKey.F23">
834       <summary>The F23 key.</summary>
835       <returns></returns>
836     </member>
837     <member name="F:System.ConsoleKey.F24">
838       <summary>The F24 key.</summary>
839       <returns></returns>
840     </member>
841     <member name="F:System.ConsoleKey.F3">
842       <summary>The F3 key.</summary>
843       <returns></returns>
844     </member>
845     <member name="F:System.ConsoleKey.F4">
846       <summary>The F4 key.</summary>
847       <returns></returns>
848     </member>
849     <member name="F:System.ConsoleKey.F5">
850       <summary>The F5 key.</summary>
851       <returns></returns>
852     </member>
853     <member name="F:System.ConsoleKey.F6">
854       <summary>The F6 key.</summary>
855       <returns></returns>
856     </member>
857     <member name="F:System.ConsoleKey.F7">
858       <summary>The F7 key.</summary>
859       <returns></returns>
860     </member>
861     <member name="F:System.ConsoleKey.F8">
862       <summary>The F8 key.</summary>
863       <returns></returns>
864     </member>
865     <member name="F:System.ConsoleKey.F9">
866       <summary>The F9 key.</summary>
867       <returns></returns>
868     </member>
869     <member name="F:System.ConsoleKey.G">
870       <summary>The G key.</summary>
871       <returns></returns>
872     </member>
873     <member name="F:System.ConsoleKey.H">
874       <summary>The H key.</summary>
875       <returns></returns>
876     </member>
877     <member name="F:System.ConsoleKey.Help">
878       <summary>The HELP key.</summary>
879       <returns></returns>
880     </member>
881     <member name="F:System.ConsoleKey.Home">
882       <summary>The HOME key.</summary>
883       <returns></returns>
884     </member>
885     <member name="F:System.ConsoleKey.I">
886       <summary>The I key.</summary>
887       <returns></returns>
888     </member>
889     <member name="F:System.ConsoleKey.Insert">
890       <summary>The INS (INSERT) key.</summary>
891       <returns></returns>
892     </member>
893     <member name="F:System.ConsoleKey.J">
894       <summary>The J key.</summary>
895       <returns></returns>
896     </member>
897     <member name="F:System.ConsoleKey.K">
898       <summary>The K key.</summary>
899       <returns></returns>
900     </member>
901     <member name="F:System.ConsoleKey.L">
902       <summary>The L key.</summary>
903       <returns></returns>
904     </member>
905     <member name="F:System.ConsoleKey.LaunchApp1">
906       <summary>The Start Application 1 key (Microsoft Natural Keyboard, Windows 2000 or later).</summary>
907       <returns></returns>
908     </member>
909     <member name="F:System.ConsoleKey.LaunchApp2">
910       <summary>The Start Application 2 key (Microsoft Natural Keyboard, Windows 2000 or later).</summary>
911       <returns></returns>
912     </member>
913     <member name="F:System.ConsoleKey.LaunchMail">
914       <summary>The Start Mail key (Microsoft Natural Keyboard, Windows 2000 or later).</summary>
915       <returns></returns>
916     </member>
917     <member name="F:System.ConsoleKey.LaunchMediaSelect">
918       <summary>The Select Media key (Microsoft Natural Keyboard, Windows 2000 or later).</summary>
919       <returns></returns>
920     </member>
921     <member name="F:System.ConsoleKey.LeftArrow">
922       <summary>The LEFT ARROW key.</summary>
923       <returns></returns>
924     </member>
925     <member name="F:System.ConsoleKey.LeftWindows">
926       <summary>The left Windows logo key (Microsoft Natural Keyboard).</summary>
927       <returns></returns>
928     </member>
929     <member name="F:System.ConsoleKey.M">
930       <summary>The M key.</summary>
931       <returns></returns>
932     </member>
933     <member name="F:System.ConsoleKey.MediaNext">
934       <summary>The Media Next Track key (Windows 2000 or later).</summary>
935       <returns></returns>
936     </member>
937     <member name="F:System.ConsoleKey.MediaPlay">
938       <summary>The Media Play/Pause key (Windows 2000 or later).</summary>
939       <returns></returns>
940     </member>
941     <member name="F:System.ConsoleKey.MediaPrevious">
942       <summary>The Media Previous Track key (Windows 2000 or later).</summary>
943       <returns></returns>
944     </member>
945     <member name="F:System.ConsoleKey.MediaStop">
946       <summary>The Media Stop key (Windows 2000 or later).</summary>
947       <returns></returns>
948     </member>
949     <member name="F:System.ConsoleKey.Multiply">
950       <summary>The Multiply key (the multiplication key on the numeric keypad).</summary>
951       <returns></returns>
952     </member>
953     <member name="F:System.ConsoleKey.N">
954       <summary>The N key.</summary>
955       <returns></returns>
956     </member>
957     <member name="F:System.ConsoleKey.NoName">
958       <summary>A constant reserved for future use.</summary>
959       <returns></returns>
960     </member>
961     <member name="F:System.ConsoleKey.NumPad0">
962       <summary>The 0 key on the numeric keypad.</summary>
963       <returns></returns>
964     </member>
965     <member name="F:System.ConsoleKey.NumPad1">
966       <summary>The 1 key on the numeric keypad.</summary>
967       <returns></returns>
968     </member>
969     <member name="F:System.ConsoleKey.NumPad2">
970       <summary>The 2 key on the numeric keypad.</summary>
971       <returns></returns>
972     </member>
973     <member name="F:System.ConsoleKey.NumPad3">
974       <summary>The 3 key on the numeric keypad.</summary>
975       <returns></returns>
976     </member>
977     <member name="F:System.ConsoleKey.NumPad4">
978       <summary>The 4 key on the numeric keypad.</summary>
979       <returns></returns>
980     </member>
981     <member name="F:System.ConsoleKey.NumPad5">
982       <summary>The 5 key on the numeric keypad.</summary>
983       <returns></returns>
984     </member>
985     <member name="F:System.ConsoleKey.NumPad6">
986       <summary>The 6 key on the numeric keypad.</summary>
987       <returns></returns>
988     </member>
989     <member name="F:System.ConsoleKey.NumPad7">
990       <summary>The 7 key on the numeric keypad.</summary>
991       <returns></returns>
992     </member>
993     <member name="F:System.ConsoleKey.NumPad8">
994       <summary>The 8 key on the numeric keypad.</summary>
995       <returns></returns>
996     </member>
997     <member name="F:System.ConsoleKey.NumPad9">
998       <summary>The 9 key on the numeric keypad.</summary>
999       <returns></returns>
1000     </member>
1001     <member name="F:System.ConsoleKey.O">
1002       <summary>The O key.</summary>
1003       <returns></returns>
1004     </member>
1005     <member name="F:System.ConsoleKey.Oem1">
1006       <summary>The OEM 1 key (OEM specific).</summary>
1007       <returns></returns>
1008     </member>
1009     <member name="F:System.ConsoleKey.Oem102">
1010       <summary>The OEM 102 key (OEM specific).</summary>
1011       <returns></returns>
1012     </member>
1013     <member name="F:System.ConsoleKey.Oem2">
1014       <summary>The OEM 2 key (OEM specific).</summary>
1015       <returns></returns>
1016     </member>
1017     <member name="F:System.ConsoleKey.Oem3">
1018       <summary>The OEM 3 key (OEM specific).</summary>
1019       <returns></returns>
1020     </member>
1021     <member name="F:System.ConsoleKey.Oem4">
1022       <summary>The OEM 4 key (OEM specific).</summary>
1023       <returns></returns>
1024     </member>
1025     <member name="F:System.ConsoleKey.Oem5">
1026       <summary>The OEM 5 (OEM specific).</summary>
1027       <returns></returns>
1028     </member>
1029     <member name="F:System.ConsoleKey.Oem6">
1030       <summary>The OEM 6 key (OEM specific).</summary>
1031       <returns></returns>
1032     </member>
1033     <member name="F:System.ConsoleKey.Oem7">
1034       <summary>The OEM 7 key (OEM specific).</summary>
1035       <returns></returns>
1036     </member>
1037     <member name="F:System.ConsoleKey.Oem8">
1038       <summary>The OEM 8 key (OEM specific).</summary>
1039       <returns></returns>
1040     </member>
1041     <member name="F:System.ConsoleKey.OemClear">
1042       <summary>The CLEAR key (OEM specific).</summary>
1043       <returns></returns>
1044     </member>
1045     <member name="F:System.ConsoleKey.OemComma">
1046       <summary>The OEM Comma key on any country/region keyboard (Windows 2000 or later).</summary>
1047       <returns></returns>
1048     </member>
1049     <member name="F:System.ConsoleKey.OemMinus">
1050       <summary>The OEM Minus key on any country/region keyboard (Windows 2000 or later).</summary>
1051       <returns></returns>
1052     </member>
1053     <member name="F:System.ConsoleKey.OemPeriod">
1054       <summary>The OEM Period key on any country/region keyboard (Windows 2000 or later).</summary>
1055       <returns></returns>
1056     </member>
1057     <member name="F:System.ConsoleKey.OemPlus">
1058       <summary>The OEM Plus key on any country/region keyboard (Windows 2000 or later).</summary>
1059       <returns></returns>
1060     </member>
1061     <member name="F:System.ConsoleKey.P">
1062       <summary>The P key.</summary>
1063       <returns></returns>
1064     </member>
1065     <member name="F:System.ConsoleKey.Pa1">
1066       <summary>The PA1 key.</summary>
1067       <returns></returns>
1068     </member>
1069     <member name="F:System.ConsoleKey.Packet">
1070       <summary>The PACKET key (used to pass Unicode characters with keystrokes).</summary>
1071       <returns></returns>
1072     </member>
1073     <member name="F:System.ConsoleKey.PageDown">
1074       <summary>The PAGE DOWN key.</summary>
1075       <returns></returns>
1076     </member>
1077     <member name="F:System.ConsoleKey.PageUp">
1078       <summary>The PAGE UP key.</summary>
1079       <returns></returns>
1080     </member>
1081     <member name="F:System.ConsoleKey.Pause">
1082       <summary>The PAUSE key.</summary>
1083       <returns></returns>
1084     </member>
1085     <member name="F:System.ConsoleKey.Play">
1086       <summary>The PLAY key.</summary>
1087       <returns></returns>
1088     </member>
1089     <member name="F:System.ConsoleKey.Print">
1090       <summary>The PRINT key.</summary>
1091       <returns></returns>
1092     </member>
1093     <member name="F:System.ConsoleKey.PrintScreen">
1094       <summary>The PRINT SCREEN key.</summary>
1095       <returns></returns>
1096     </member>
1097     <member name="F:System.ConsoleKey.Process">
1098       <summary>The IME PROCESS key.</summary>
1099       <returns></returns>
1100     </member>
1101     <member name="F:System.ConsoleKey.Q">
1102       <summary>The Q key.</summary>
1103       <returns></returns>
1104     </member>
1105     <member name="F:System.ConsoleKey.R">
1106       <summary>The R key.</summary>
1107       <returns></returns>
1108     </member>
1109     <member name="F:System.ConsoleKey.RightArrow">
1110       <summary>The RIGHT ARROW key.</summary>
1111       <returns></returns>
1112     </member>
1113     <member name="F:System.ConsoleKey.RightWindows">
1114       <summary>The right Windows logo key (Microsoft Natural Keyboard).</summary>
1115       <returns></returns>
1116     </member>
1117     <member name="F:System.ConsoleKey.S">
1118       <summary>The S key.</summary>
1119       <returns></returns>
1120     </member>
1121     <member name="F:System.ConsoleKey.Select">
1122       <summary>The SELECT key.</summary>
1123       <returns></returns>
1124     </member>
1125     <member name="F:System.ConsoleKey.Separator">
1126       <summary>The Separator key.</summary>
1127       <returns></returns>
1128     </member>
1129     <member name="F:System.ConsoleKey.Sleep">
1130       <summary>The Computer Sleep key.</summary>
1131       <returns></returns>
1132     </member>
1133     <member name="F:System.ConsoleKey.Spacebar">
1134       <summary>The SPACEBAR key.</summary>
1135       <returns></returns>
1136     </member>
1137     <member name="F:System.ConsoleKey.Subtract">
1138       <summary>The Subtract key (the subtraction key on the numeric keypad).</summary>
1139       <returns></returns>
1140     </member>
1141     <member name="F:System.ConsoleKey.T">
1142       <summary>The T key.</summary>
1143       <returns></returns>
1144     </member>
1145     <member name="F:System.ConsoleKey.Tab">
1146       <summary>The TAB key.</summary>
1147       <returns></returns>
1148     </member>
1149     <member name="F:System.ConsoleKey.U">
1150       <summary>The U key.</summary>
1151       <returns></returns>
1152     </member>
1153     <member name="F:System.ConsoleKey.UpArrow">
1154       <summary>The UP ARROW key.</summary>
1155       <returns></returns>
1156     </member>
1157     <member name="F:System.ConsoleKey.V">
1158       <summary>The V key.</summary>
1159       <returns></returns>
1160     </member>
1161     <member name="F:System.ConsoleKey.VolumeDown">
1162       <summary>The Volume Down key (Microsoft Natural Keyboard, Windows 2000 or later).</summary>
1163       <returns></returns>
1164     </member>
1165     <member name="F:System.ConsoleKey.VolumeMute">
1166       <summary>The Volume Mute key (Microsoft Natural Keyboard, Windows 2000 or later).</summary>
1167       <returns></returns>
1168     </member>
1169     <member name="F:System.ConsoleKey.VolumeUp">
1170       <summary>The Volume Up key (Microsoft Natural Keyboard, Windows 2000 or later).</summary>
1171       <returns></returns>
1172     </member>
1173     <member name="F:System.ConsoleKey.W">
1174       <summary>The W key.</summary>
1175       <returns></returns>
1176     </member>
1177     <member name="F:System.ConsoleKey.X">
1178       <summary>The X key.</summary>
1179       <returns></returns>
1180     </member>
1181     <member name="F:System.ConsoleKey.Y">
1182       <summary>The Y key.</summary>
1183       <returns></returns>
1184     </member>
1185     <member name="F:System.ConsoleKey.Z">
1186       <summary>The Z key.</summary>
1187       <returns></returns>
1188     </member>
1189     <member name="F:System.ConsoleKey.Zoom">
1190       <summary>The ZOOM key.</summary>
1191       <returns></returns>
1192     </member>
1193     <member name="T:System.ConsoleKeyInfo">
1194       <summary>Describes the console key that was pressed, including the character represented by the console key and the state of the SHIFT, ALT, and CTRL modifier keys.</summary>
1195     </member>
1196     <member name="M:System.ConsoleKeyInfo.#ctor(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean)">
1197       <summary>Initializes a new instance of the <see cref="T:System.ConsoleKeyInfo"></see> structure using the specified character, console key, and modifier keys.</summary>
1198       <param name="keyChar">The Unicode character that corresponds to the key parameter.</param>
1199       <param name="key">The console key that corresponds to the keyChar parameter.</param>
1200       <param name="shift">true to indicate that a SHIFT key was pressed; otherwise, false.</param>
1201       <param name="alt">true to indicate that an ALT key was pressed; otherwise, false.</param>
1202       <param name="control">true to indicate that a CTRL key was pressed; otherwise, false.</param>
1203       <exception cref="T:System.ArgumentOutOfRangeException">The numeric value of the <paramref name="key">key</paramref> parameter is less than 0 or greater than 255.</exception>
1204     </member>
1205     <member name="M:System.ConsoleKeyInfo.Equals(System.ConsoleKeyInfo)">
1206       <summary>Gets a value indicating whether the specified <see cref="T:System.ConsoleKeyInfo"></see> object is equal to the current <see cref="T:System.ConsoleKeyInfo"></see> object.</summary>
1207       <param name="obj">An object to compare to the current <see cref="T:System.ConsoleKeyInfo"></see> object.</param>
1208       <returns>true if <paramref name="obj">obj</paramref> is equal to the current <see cref="T:System.ConsoleKeyInfo"></see> object; otherwise, false.</returns>
1209     </member>
1210     <member name="M:System.ConsoleKeyInfo.Equals(System.Object)">
1211       <summary>Gets a value indicating whether the specified object is equal to the current <see cref="T:System.ConsoleKeyInfo"></see> object.</summary>
1212       <param name="value">An object to compare to the current <see cref="T:System.ConsoleKeyInfo"></see> object.</param>
1213       <returns>true if <paramref name="value">value</paramref> is a <see cref="T:System.ConsoleKeyInfo"></see> object and is equal to the current <see cref="T:System.ConsoleKeyInfo"></see> object; otherwise, false.</returns>
1214     </member>
1215     <member name="M:System.ConsoleKeyInfo.GetHashCode">
1216       <summary>Returns the hash code for the current <see cref="T:System.ConsoleKeyInfo"></see> object.</summary>
1217       <returns>A 32-bit signed integer hash code.</returns>
1218     </member>
1219     <member name="P:System.ConsoleKeyInfo.Key">
1220       <summary>Gets the console key represented by the current <see cref="T:System.ConsoleKeyInfo"></see> object.</summary>
1221       <returns>A value that identifies the console key that was pressed.</returns>
1222     </member>
1223     <member name="P:System.ConsoleKeyInfo.KeyChar">
1224       <summary>Gets the Unicode character represented by the current <see cref="T:System.ConsoleKeyInfo"></see> object.</summary>
1225       <returns>An object that corresponds to the console key represented by the current <see cref="T:System.ConsoleKeyInfo"></see> object.</returns>
1226     </member>
1227     <member name="P:System.ConsoleKeyInfo.Modifiers">
1228       <summary>Gets a bitwise combination of <see cref="T:System.ConsoleModifiers"></see> values that specifies one or more modifier keys pressed simultaneously with the console key.</summary>
1229       <returns>A bitwise combination of the enumeration values. There is no default value.</returns>
1230     </member>
1231     <member name="M:System.ConsoleKeyInfo.op_Equality(System.ConsoleKeyInfo,System.ConsoleKeyInfo)">
1232       <summary>Indicates whether the specified <see cref="T:System.ConsoleKeyInfo"></see> objects are equal.</summary>
1233       <param name="a">The first object to compare.</param>
1234       <param name="b">The second object to compare.</param>
1235       <returns>true if <paramref name="a">a</paramref> is equal to <paramref name="b">b</paramref>; otherwise, false.</returns>
1236     </member>
1237     <member name="M:System.ConsoleKeyInfo.op_Inequality(System.ConsoleKeyInfo,System.ConsoleKeyInfo)">
1238       <summary>Indicates whether the specified <see cref="T:System.ConsoleKeyInfo"></see> objects are not equal.</summary>
1239       <param name="a">The first object to compare.</param>
1240       <param name="b">The second object to compare.</param>
1241       <returns>true if <paramref name="a">a</paramref> is not equal to <paramref name="b">b</paramref>; otherwise, false.</returns>
1242     </member>
1243     <member name="T:System.ConsoleModifiers">
1244       <summary>Represents the SHIFT, ALT, and CTRL modifier keys on a keyboard.</summary>
1245     </member>
1246     <member name="F:System.ConsoleModifiers.Alt">
1247       <summary>The left or right ALT modifier key.</summary>
1248       <returns></returns>
1249     </member>
1250     <member name="F:System.ConsoleModifiers.Control">
1251       <summary>The left or right CTRL modifier key.</summary>
1252       <returns></returns>
1253     </member>
1254     <member name="F:System.ConsoleModifiers.Shift">
1255       <summary>The left or right SHIFT modifier key.</summary>
1256       <returns></returns>
1257     </member>
1258     <member name="T:System.ConsoleSpecialKey">
1259       <summary>Specifies combinations of modifier and console keys that can interrupt the current process.</summary>
1260     </member>
1261     <member name="F:System.ConsoleSpecialKey.ControlBreak">
1262       <summary>The <see cref="F:System.ConsoleModifiers.Control"></see> modifier key plus the BREAK console key.</summary>
1263       <returns></returns>
1264     </member>
1265     <member name="F:System.ConsoleSpecialKey.ControlC">
1266       <summary>The <see cref="F:System.ConsoleModifiers.Control"></see> modifier key plus the <see cref="F:System.ConsoleKey.C"></see> console key.</summary>
1267       <returns></returns>
1268     </member>
1269   </members>
1270 </doc></span>