You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

469 lines
31 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  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.To browse the .NET Framework source code for this type, see the Reference Source.</summary>
  9. <filterpriority>1</filterpriority>
  10. </member>
  11. <member name="P:System.Console.BackgroundColor">
  12. <summary>Gets or sets the background color of the console.</summary>
  13. <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>
  14. <exception cref="T:System.ArgumentException">The color specified in a set operation is not a valid member of <see cref="T:System.ConsoleColor" />. </exception>
  15. <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action. </exception>
  16. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  17. <filterpriority>1</filterpriority>
  18. <PermissionSet>
  19. <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" />
  20. </PermissionSet>
  21. </member>
  22. <member name="E:System.Console.CancelKeyPress">
  23. <summary>Occurs when the <see cref="F:System.ConsoleModifiers.Control" /> modifier key (Ctrl) and either the <see cref="F:System.ConsoleKey.C" /> console key (C) or the Break key are pressed simultaneously (Ctrl+C or Ctrl+Break).</summary>
  24. <filterpriority>1</filterpriority>
  25. </member>
  26. <member name="P:System.Console.Error">
  27. <summary>Gets the standard error output stream.</summary>
  28. <returns>A <see cref="T:System.IO.TextWriter" /> that represents the standard error output stream.</returns>
  29. <filterpriority>1</filterpriority>
  30. </member>
  31. <member name="P:System.Console.ForegroundColor">
  32. <summary>Gets or sets the foreground color of the console.</summary>
  33. <returns>A <see cref="T:System.ConsoleColor" /> that specifies the foreground color of the console; that is, the color of each character that is displayed. The default is gray.</returns>
  34. <exception cref="T:System.ArgumentException">The color specified in a set operation is not a valid member of <see cref="T:System.ConsoleColor" />. </exception>
  35. <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action. </exception>
  36. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  37. <filterpriority>1</filterpriority>
  38. <PermissionSet>
  39. <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" />
  40. </PermissionSet>
  41. </member>
  42. <member name="P:System.Console.In">
  43. <summary>Gets the standard input stream.</summary>
  44. <returns>A <see cref="T:System.IO.TextReader" /> that represents the standard input stream.</returns>
  45. <filterpriority>1</filterpriority>
  46. </member>
  47. <member name="M:System.Console.OpenStandardError">
  48. <summary>Acquires the standard error stream.</summary>
  49. <returns>The standard error stream.</returns>
  50. <filterpriority>1</filterpriority>
  51. </member>
  52. <member name="M:System.Console.OpenStandardInput">
  53. <summary>Acquires the standard input stream.</summary>
  54. <returns>The standard input stream.</returns>
  55. <filterpriority>1</filterpriority>
  56. </member>
  57. <member name="M:System.Console.OpenStandardOutput">
  58. <summary>Acquires the standard output stream.</summary>
  59. <returns>The standard output stream.</returns>
  60. <filterpriority>1</filterpriority>
  61. </member>
  62. <member name="P:System.Console.Out">
  63. <summary>Gets the standard output stream.</summary>
  64. <returns>A <see cref="T:System.IO.TextWriter" /> that represents the standard output stream.</returns>
  65. <filterpriority>1</filterpriority>
  66. </member>
  67. <member name="M:System.Console.Read">
  68. <summary>Reads the next character from the standard input stream.</summary>
  69. <returns>The next character from the input stream, or negative one (-1) if there are currently no more characters to be read.</returns>
  70. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  71. <filterpriority>1</filterpriority>
  72. </member>
  73. <member name="M:System.Console.ReadLine">
  74. <summary>Reads the next line of characters from the standard input stream.</summary>
  75. <returns>The next line of characters from the input stream, or null if no more lines are available.</returns>
  76. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  77. <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string. </exception>
  78. <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line of characters is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
  79. <filterpriority>1</filterpriority>
  80. </member>
  81. <member name="M:System.Console.ResetColor">
  82. <summary>Sets the foreground and background console colors to their defaults.</summary>
  83. <exception cref="T:System.Security.SecurityException">The user does not have permission to perform this action. </exception>
  84. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  85. <filterpriority>1</filterpriority>
  86. <PermissionSet>
  87. <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Window="SafeTopLevelWindows" />
  88. </PermissionSet>
  89. </member>
  90. <member name="M:System.Console.SetError(System.IO.TextWriter)">
  91. <summary>Sets the <see cref="P:System.Console.Error" /> property to the specified <see cref="T:System.IO.TextWriter" /> object.</summary>
  92. <param name="newError">A stream that is the new standard error output. </param>
  93. <exception cref="T:System.ArgumentNullException">
  94. <paramref name="newError" /> is null. </exception>
  95. <exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
  96. <filterpriority>1</filterpriority>
  97. <PermissionSet>
  98. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
  99. </PermissionSet>
  100. </member>
  101. <member name="M:System.Console.SetIn(System.IO.TextReader)">
  102. <summary>Sets the <see cref="P:System.Console.In" /> property to the specified <see cref="T:System.IO.TextReader" /> object.</summary>
  103. <param name="newIn">A stream that is the new standard input. </param>
  104. <exception cref="T:System.ArgumentNullException">
  105. <paramref name="newIn" /> is null. </exception>
  106. <exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
  107. <filterpriority>1</filterpriority>
  108. <PermissionSet>
  109. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
  110. </PermissionSet>
  111. </member>
  112. <member name="M:System.Console.SetOut(System.IO.TextWriter)">
  113. <summary>Sets the <see cref="P:System.Console.Out" /> property to the specified <see cref="T:System.IO.TextWriter" /> object.</summary>
  114. <param name="newOut">A stream that is the new standard output. </param>
  115. <exception cref="T:System.ArgumentNullException">
  116. <paramref name="newOut" /> is null. </exception>
  117. <exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
  118. <filterpriority>1</filterpriority>
  119. <PermissionSet>
  120. <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
  121. </PermissionSet>
  122. </member>
  123. <member name="M:System.Console.Write(System.Boolean)">
  124. <summary>Writes the text representation of the specified Boolean value to the standard output stream.</summary>
  125. <param name="value">The value to write. </param>
  126. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  127. <filterpriority>1</filterpriority>
  128. </member>
  129. <member name="M:System.Console.Write(System.Char)">
  130. <summary>Writes the specified Unicode character value to the standard output stream.</summary>
  131. <param name="value">The value to write. </param>
  132. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  133. <filterpriority>1</filterpriority>
  134. </member>
  135. <member name="M:System.Console.Write(System.Char[])">
  136. <summary>Writes the specified array of Unicode characters to the standard output stream.</summary>
  137. <param name="buffer">A Unicode character array. </param>
  138. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  139. <filterpriority>1</filterpriority>
  140. </member>
  141. <member name="M:System.Console.Write(System.Char[],System.Int32,System.Int32)">
  142. <summary>Writes the specified subarray of Unicode characters to the standard output stream.</summary>
  143. <param name="buffer">An array of Unicode characters. </param>
  144. <param name="index">The starting position in <paramref name="buffer" />. </param>
  145. <param name="count">The number of characters to write. </param>
  146. <exception cref="T:System.ArgumentNullException">
  147. <paramref name="buffer" /> is null. </exception>
  148. <exception cref="T:System.ArgumentOutOfRangeException">
  149. <paramref name="index" /> or <paramref name="count" /> is less than zero. </exception>
  150. <exception cref="T:System.ArgumentException">
  151. <paramref name="index" /> plus <paramref name="count" /> specify a position that is not within <paramref name="buffer" />. </exception>
  152. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  153. <filterpriority>1</filterpriority>
  154. </member>
  155. <member name="M:System.Console.Write(System.Decimal)">
  156. <summary>Writes the text representation of the specified <see cref="T:System.Decimal" /> value to the standard output stream.</summary>
  157. <param name="value">The value to write. </param>
  158. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  159. <filterpriority>1</filterpriority>
  160. </member>
  161. <member name="M:System.Console.Write(System.Double)">
  162. <summary>Writes the text representation of the specified double-precision floating-point value to the standard output stream.</summary>
  163. <param name="value">The value to write. </param>
  164. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  165. <filterpriority>1</filterpriority>
  166. </member>
  167. <member name="M:System.Console.Write(System.Int32)">
  168. <summary>Writes the text representation of the specified 32-bit signed integer value to the standard output stream.</summary>
  169. <param name="value">The value to write. </param>
  170. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  171. <filterpriority>1</filterpriority>
  172. </member>
  173. <member name="M:System.Console.Write(System.Int64)">
  174. <summary>Writes the text representation of the specified 64-bit signed integer value to the standard output stream.</summary>
  175. <param name="value">The value to write. </param>
  176. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  177. <filterpriority>1</filterpriority>
  178. </member>
  179. <member name="M:System.Console.Write(System.Object)">
  180. <summary>Writes the text representation of the specified object to the standard output stream.</summary>
  181. <param name="value">The value to write, or null. </param>
  182. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  183. <filterpriority>1</filterpriority>
  184. </member>
  185. <member name="M:System.Console.Write(System.Single)">
  186. <summary>Writes the text representation of the specified single-precision floating-point value to the standard output stream.</summary>
  187. <param name="value">The value to write. </param>
  188. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  189. <filterpriority>1</filterpriority>
  190. </member>
  191. <member name="M:System.Console.Write(System.String)">
  192. <summary>Writes the specified string value to the standard output stream.</summary>
  193. <param name="value">The value to write. </param>
  194. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  195. <filterpriority>1</filterpriority>
  196. </member>
  197. <member name="M:System.Console.Write(System.String,System.Object)">
  198. <summary>Writes the text representation of the specified object to the standard output stream using the specified format information.</summary>
  199. <param name="format">A composite format string (see Remarks). </param>
  200. <param name="arg0">An object to write using <paramref name="format" />. </param>
  201. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  202. <exception cref="T:System.ArgumentNullException">
  203. <paramref name="format" /> is null. </exception>
  204. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  205. <filterpriority>1</filterpriority>
  206. </member>
  207. <member name="M:System.Console.Write(System.String,System.Object,System.Object)">
  208. <summary>Writes the text representation of the specified objects to the standard output stream using the specified format information.</summary>
  209. <param name="format">A composite format string (see Remarks).</param>
  210. <param name="arg0">The first object to write using <paramref name="format" />. </param>
  211. <param name="arg1">The second object to write using <paramref name="format" />. </param>
  212. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  213. <exception cref="T:System.ArgumentNullException">
  214. <paramref name="format" /> is null. </exception>
  215. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  216. <filterpriority>1</filterpriority>
  217. </member>
  218. <member name="M:System.Console.Write(System.String,System.Object,System.Object,System.Object)">
  219. <summary>Writes the text representation of the specified objects to the standard output stream using the specified format information.</summary>
  220. <param name="format">A composite format string (see Remarks).</param>
  221. <param name="arg0">The first object to write using <paramref name="format" />. </param>
  222. <param name="arg1">The second object to write using <paramref name="format" />. </param>
  223. <param name="arg2">The third object to write using <paramref name="format" />. </param>
  224. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  225. <exception cref="T:System.ArgumentNullException">
  226. <paramref name="format" /> is null. </exception>
  227. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  228. <filterpriority>1</filterpriority>
  229. </member>
  230. <member name="M:System.Console.Write(System.String,System.Object[])">
  231. <summary>Writes the text representation of the specified array of objects to the standard output stream using the specified format information.</summary>
  232. <param name="format">A composite format string (see Remarks).</param>
  233. <param name="arg">An array of objects to write using <paramref name="format" />. </param>
  234. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  235. <exception cref="T:System.ArgumentNullException">
  236. <paramref name="format" /> or <paramref name="arg" /> is null. </exception>
  237. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  238. <filterpriority>1</filterpriority>
  239. </member>
  240. <member name="M:System.Console.Write(System.UInt32)">
  241. <summary>Writes the text representation of the specified 32-bit unsigned integer value to the standard output stream.</summary>
  242. <param name="value">The value to write. </param>
  243. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  244. <filterpriority>1</filterpriority>
  245. </member>
  246. <member name="M:System.Console.Write(System.UInt64)">
  247. <summary>Writes the text representation of the specified 64-bit unsigned integer value to the standard output stream.</summary>
  248. <param name="value">The value to write. </param>
  249. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  250. <filterpriority>1</filterpriority>
  251. </member>
  252. <member name="M:System.Console.WriteLine">
  253. <summary>Writes the current line terminator to the standard output stream.</summary>
  254. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  255. <filterpriority>1</filterpriority>
  256. </member>
  257. <member name="M:System.Console.WriteLine(System.Boolean)">
  258. <summary>Writes the text representation of the specified Boolean value, followed by the current line terminator, to the standard output stream.</summary>
  259. <param name="value">The value to write. </param>
  260. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  261. <filterpriority>1</filterpriority>
  262. </member>
  263. <member name="M:System.Console.WriteLine(System.Char)">
  264. <summary>Writes the specified Unicode character, followed by the current line terminator, value to the standard output stream.</summary>
  265. <param name="value">The value to write. </param>
  266. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  267. <filterpriority>1</filterpriority>
  268. </member>
  269. <member name="M:System.Console.WriteLine(System.Char[])">
  270. <summary>Writes the specified array of Unicode characters, followed by the current line terminator, to the standard output stream.</summary>
  271. <param name="buffer">A Unicode character array. </param>
  272. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  273. <filterpriority>1</filterpriority>
  274. </member>
  275. <member name="M:System.Console.WriteLine(System.Char[],System.Int32,System.Int32)">
  276. <summary>Writes the specified subarray of Unicode characters, followed by the current line terminator, to the standard output stream.</summary>
  277. <param name="buffer">An array of Unicode characters. </param>
  278. <param name="index">The starting position in <paramref name="buffer" />. </param>
  279. <param name="count">The number of characters to write. </param>
  280. <exception cref="T:System.ArgumentNullException">
  281. <paramref name="buffer" /> is null. </exception>
  282. <exception cref="T:System.ArgumentOutOfRangeException">
  283. <paramref name="index" /> or <paramref name="count" /> is less than zero. </exception>
  284. <exception cref="T:System.ArgumentException">
  285. <paramref name="index" /> plus <paramref name="count" /> specify a position that is not within <paramref name="buffer" />. </exception>
  286. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  287. <filterpriority>1</filterpriority>
  288. </member>
  289. <member name="M:System.Console.WriteLine(System.Decimal)">
  290. <summary>Writes the text representation of the specified <see cref="T:System.Decimal" /> value, followed by the current line terminator, to the standard output stream.</summary>
  291. <param name="value">The value to write. </param>
  292. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  293. <filterpriority>1</filterpriority>
  294. </member>
  295. <member name="M:System.Console.WriteLine(System.Double)">
  296. <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>
  297. <param name="value">The value to write. </param>
  298. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  299. <filterpriority>1</filterpriority>
  300. </member>
  301. <member name="M:System.Console.WriteLine(System.Int32)">
  302. <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>
  303. <param name="value">The value to write. </param>
  304. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  305. <filterpriority>1</filterpriority>
  306. </member>
  307. <member name="M:System.Console.WriteLine(System.Int64)">
  308. <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>
  309. <param name="value">The value to write. </param>
  310. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  311. <filterpriority>1</filterpriority>
  312. </member>
  313. <member name="M:System.Console.WriteLine(System.Object)">
  314. <summary>Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream.</summary>
  315. <param name="value">The value to write. </param>
  316. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  317. <filterpriority>1</filterpriority>
  318. </member>
  319. <member name="M:System.Console.WriteLine(System.Single)">
  320. <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>
  321. <param name="value">The value to write. </param>
  322. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  323. <filterpriority>1</filterpriority>
  324. </member>
  325. <member name="M:System.Console.WriteLine(System.String)">
  326. <summary>Writes the specified string value, followed by the current line terminator, to the standard output stream.</summary>
  327. <param name="value">The value to write. </param>
  328. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  329. <filterpriority>1</filterpriority>
  330. </member>
  331. <member name="M:System.Console.WriteLine(System.String,System.Object)">
  332. <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>
  333. <param name="format">A composite format string (see Remarks).</param>
  334. <param name="arg0">An object to write using <paramref name="format" />. </param>
  335. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  336. <exception cref="T:System.ArgumentNullException">
  337. <paramref name="format" /> is null. </exception>
  338. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  339. <filterpriority>1</filterpriority>
  340. </member>
  341. <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object)">
  342. <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>
  343. <param name="format">A composite format string (see Remarks).</param>
  344. <param name="arg0">The first object to write using <paramref name="format" />. </param>
  345. <param name="arg1">The second object to write using <paramref name="format" />. </param>
  346. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  347. <exception cref="T:System.ArgumentNullException">
  348. <paramref name="format" /> is null. </exception>
  349. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  350. <filterpriority>1</filterpriority>
  351. </member>
  352. <member name="M:System.Console.WriteLine(System.String,System.Object,System.Object,System.Object)">
  353. <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>
  354. <param name="format">A composite format string (see Remarks).</param>
  355. <param name="arg0">The first object to write using <paramref name="format" />. </param>
  356. <param name="arg1">The second object to write using <paramref name="format" />. </param>
  357. <param name="arg2">The third object to write using <paramref name="format" />. </param>
  358. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  359. <exception cref="T:System.ArgumentNullException">
  360. <paramref name="format" /> is null. </exception>
  361. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  362. <filterpriority>1</filterpriority>
  363. </member>
  364. <member name="M:System.Console.WriteLine(System.String,System.Object[])">
  365. <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>
  366. <param name="format">A composite format string (see Remarks).</param>
  367. <param name="arg">An array of objects to write using <paramref name="format" />. </param>
  368. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  369. <exception cref="T:System.ArgumentNullException">
  370. <paramref name="format" /> or <paramref name="arg" /> is null. </exception>
  371. <exception cref="T:System.FormatException">The format specification in <paramref name="format" /> is invalid. </exception>
  372. <filterpriority>1</filterpriority>
  373. </member>
  374. <member name="M:System.Console.WriteLine(System.UInt32)">
  375. <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>
  376. <param name="value">The value to write. </param>
  377. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  378. <filterpriority>1</filterpriority>
  379. </member>
  380. <member name="M:System.Console.WriteLine(System.UInt64)">
  381. <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>
  382. <param name="value">The value to write. </param>
  383. <exception cref="T:System.IO.IOException">An I/O error occurred. </exception>
  384. <filterpriority>1</filterpriority>
  385. </member>
  386. <member name="T:System.ConsoleCancelEventArgs">
  387. <summary>Provides data for the <see cref="E:System.Console.CancelKeyPress" /> event. This class cannot be inherited.</summary>
  388. <filterpriority>2</filterpriority>
  389. </member>
  390. <member name="P:System.ConsoleCancelEventArgs.Cancel">
  391. <summary>Gets or sets a value that indicates whether simultaneously pressing the <see cref="F:System.ConsoleModifiers.Control" /> modifier key and the <see cref="F:System.ConsoleKey.C" /> console key (Ctrl+C) or the Ctrl+Break keys terminates the current process. The default is false, which terminates the current process. </summary>
  392. <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>
  393. <filterpriority>2</filterpriority>
  394. </member>
  395. <member name="P:System.ConsoleCancelEventArgs.SpecialKey">
  396. <summary>Gets the combination of modifier and console keys that interrupted the current process.</summary>
  397. <returns>One of the enumeration values that specifies the key combination that interrupted the current process. There is no default value.</returns>
  398. <filterpriority>1</filterpriority>
  399. </member>
  400. <member name="T:System.ConsoleCancelEventHandler">
  401. <summary>Represents the method that will handle the <see cref="E:System.Console.CancelKeyPress" /> event of a <see cref="T:System.Console" />.</summary>
  402. <param name="sender">The source of the event. </param>
  403. <param name="e">A <see cref="T:System.ConsoleCancelEventArgs" /> object that contains the event data. </param>
  404. <filterpriority>2</filterpriority>
  405. </member>
  406. <member name="T:System.ConsoleColor">
  407. <summary>Specifies constants that define foreground and background colors for the console.</summary>
  408. <filterpriority>2</filterpriority>
  409. </member>
  410. <member name="F:System.ConsoleColor.Black">
  411. <summary>The color black.</summary>
  412. </member>
  413. <member name="F:System.ConsoleColor.Blue">
  414. <summary>The color blue.</summary>
  415. </member>
  416. <member name="F:System.ConsoleColor.Cyan">
  417. <summary>The color cyan (blue-green).</summary>
  418. </member>
  419. <member name="F:System.ConsoleColor.DarkBlue">
  420. <summary>The color dark blue.</summary>
  421. </member>
  422. <member name="F:System.ConsoleColor.DarkCyan">
  423. <summary>The color dark cyan (dark blue-green).</summary>
  424. </member>
  425. <member name="F:System.ConsoleColor.DarkGray">
  426. <summary>The color dark gray.</summary>
  427. </member>
  428. <member name="F:System.ConsoleColor.DarkGreen">
  429. <summary>The color dark green.</summary>
  430. </member>
  431. <member name="F:System.ConsoleColor.DarkMagenta">
  432. <summary>The color dark magenta (dark purplish-red).</summary>
  433. </member>
  434. <member name="F:System.ConsoleColor.DarkRed">
  435. <summary>The color dark red.</summary>
  436. </member>
  437. <member name="F:System.ConsoleColor.DarkYellow">
  438. <summary>The color dark yellow (ochre).</summary>
  439. </member>
  440. <member name="F:System.ConsoleColor.Gray">
  441. <summary>The color gray.</summary>
  442. </member>
  443. <member name="F:System.ConsoleColor.Green">
  444. <summary>The color green.</summary>
  445. </member>
  446. <member name="F:System.ConsoleColor.Magenta">
  447. <summary>The color magenta (purplish-red).</summary>
  448. </member>
  449. <member name="F:System.ConsoleColor.Red">
  450. <summary>The color red.</summary>
  451. </member>
  452. <member name="F:System.ConsoleColor.White">
  453. <summary>The color white.</summary>
  454. </member>
  455. <member name="F:System.ConsoleColor.Yellow">
  456. <summary>The color yellow.</summary>
  457. </member>
  458. <member name="T:System.ConsoleSpecialKey">
  459. <summary>Specifies combinations of modifier and console keys that can interrupt the current process.</summary>
  460. <filterpriority>1</filterpriority>
  461. </member>
  462. <member name="F:System.ConsoleSpecialKey.ControlBreak">
  463. <summary>The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the BREAK console key.</summary>
  464. </member>
  465. <member name="F:System.ConsoleSpecialKey.ControlC">
  466. <summary>The <see cref="F:System.ConsoleModifiers.Control" /> modifier key plus the <see cref="F:System.ConsoleKey.C" /> console key.</summary>
  467. </member>
  468. </members>
  469. </doc>