System.Runtime.xml 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Runtime</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Strings">
  8. <summary>
  9. A strongly-typed resource class, for looking up localized strings, etc.
  10. </summary>
  11. </member>
  12. <member name="P:System.Strings.ResourceManager">
  13. <summary>
  14. Returns the cached ResourceManager instance used by this class.
  15. </summary>
  16. </member>
  17. <member name="P:System.Strings.Culture">
  18. <summary>
  19. Overrides the current thread's CurrentUICulture property for all
  20. resource lookups using this strongly typed resource class.
  21. </summary>
  22. </member>
  23. <member name="P:System.Strings.ArgumentException_TupleIncorrectType">
  24. <summary>
  25. Looks up a localized string similar to Argument must be of type {0}..
  26. </summary>
  27. </member>
  28. <member name="P:System.Strings.ArgumentException_TupleLastArgumentNotATuple">
  29. <summary>
  30. Looks up a localized string similar to The last element of an eight element tuple must be a Tuple..
  31. </summary>
  32. </member>
  33. <member name="T:System.Collections.IStructuralEquatable">
  34. <summary>
  35. Defines methods to support the comparison of objects for structural equality.
  36. </summary>
  37. </member>
  38. <member name="M:System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer)">
  39. <summary>
  40. Determines whether an object is structurally equal to the current instance.
  41. </summary>
  42. <param name="other">The object to compare with the current instance.</param>
  43. <param name="comparer">An object that determines whether the current instance and other are equal. </param>
  44. <returns>true if the two objects are equal; otherwise, false.</returns>
  45. </member>
  46. <member name="M:System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer)">
  47. <summary>
  48. Returns a hash code for the current instance.
  49. </summary>
  50. <param name="comparer">An object that computes the hash code of the current object.</param>
  51. <returns>The hash code for the current instance.</returns>
  52. </member>
  53. <member name="T:System.Collections.IStructuralComparable">
  54. <summary>
  55. Supports the structural comparison of collection objects.
  56. </summary>
  57. </member>
  58. <member name="M:System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer)">
  59. <summary>
  60. Determines whether the current collection object precedes, occurs in the same position as, or follows another object in the sort order.
  61. </summary>
  62. <param name="other">The object to compare with the current instance.</param>
  63. <param name="comparer">An object that compares members of the current collection object with the corresponding members of other.</param>
  64. <returns>An integer that indicates the relationship of the current collection object to other.</returns>
  65. <exception cref="T:System.ArgumentException">
  66. This instance and other are not the same type.
  67. </exception>
  68. </member>
  69. <member name="T:System.Func`6">
  70. <summary>
  71. Encapsulates a method that has five parameters and returns a value of the type specified by the TResult parameter.
  72. </summary>
  73. <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
  74. <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
  75. <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
  76. <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
  77. <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
  78. <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
  79. <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
  80. <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
  81. <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
  82. <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
  83. <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
  84. <returns>The return value of the method that this delegate encapsulates.</returns>
  85. </member>
  86. <member name="T:System.IProgress`1">
  87. <summary>Defines a provider for progress updates.</summary>
  88. <typeparam name="T">The type of progress update value.</typeparam>
  89. </member>
  90. <member name="M:System.IProgress`1.Report(`0)">
  91. <summary>Reports a progress update.</summary>
  92. <param name="value">The value of the updated progress.</param>
  93. </member>
  94. <member name="T:System.Runtime.CompilerServices.AsyncStateMachineAttribute">
  95. <summary>Identities the async state machine type for this method.</summary>
  96. </member>
  97. <member name="T:System.Runtime.CompilerServices.StateMachineAttribute">
  98. <summary>Identities the state machine type for this method.</summary>
  99. </member>
  100. <member name="M:System.Runtime.CompilerServices.StateMachineAttribute.#ctor(System.Type)">
  101. <summary>Initializes the attribute.</summary>
  102. <param name="stateMachineType">The type that implements the state machine.</param>
  103. </member>
  104. <member name="P:System.Runtime.CompilerServices.StateMachineAttribute.StateMachineType">
  105. <summary>Gets the type that implements the state machine.</summary>
  106. </member>
  107. <member name="M:System.Runtime.CompilerServices.AsyncStateMachineAttribute.#ctor(System.Type)">
  108. <summary>Initializes the attribute.</summary>
  109. <param name="stateMachineType">The type that implements the state machine.</param>
  110. </member>
  111. <member name="T:System.Runtime.CompilerServices.CallerMemberNameAttribute">
  112. <summary>
  113. Allows you to obtain the method or property name of the caller to the method.
  114. </summary>
  115. </member>
  116. <member name="T:System.Runtime.CompilerServices.CallerLineNumberAttribute">
  117. <summary>
  118. Allows you to obtain the line number in the source file at which the method is called.
  119. </summary>
  120. </member>
  121. <member name="T:System.Runtime.CompilerServices.CallerFilePathAttribute">
  122. <summary>
  123. Allows you to obtain the full path of the source file that contains the caller.
  124. This is the file path at the time of compile.
  125. </summary>
  126. </member>
  127. <member name="T:System.Runtime.CompilerServices.IteratorStateMachineAttribute">
  128. <summary>Identities the iterator state machine type for this method.</summary>
  129. </member>
  130. <member name="M:System.Runtime.CompilerServices.IteratorStateMachineAttribute.#ctor(System.Type)">
  131. <summary>Initializes the attribute.</summary>
  132. <param name="stateMachineType">The type that implements the state machine.</param>
  133. </member>
  134. <member name="T:System.ITuple">
  135. <summary>
  136. Helper so we can call some tuple methods recursively without knowing the underlying types.
  137. </summary>
  138. </member>
  139. <member name="T:System.Tuple">
  140. <summary>
  141. Provides static methods for creating tuple objects.
  142. </summary>
  143. </member>
  144. <member name="M:System.Tuple.Create``1(``0)">
  145. <summary>
  146. Creates a new 1-tuple, or singleton.
  147. </summary>
  148. <typeparam name="T1">The type of the only component of the tuple.</typeparam>
  149. <param name="item1">The value of the only component of the tuple.</param>
  150. <returns>A tuple whose value is (item1).</returns>
  151. </member>
  152. <member name="M:System.Tuple.Create``2(``0,``1)">
  153. <summary>
  154. Creates a new 3-tuple, or pair.
  155. </summary>
  156. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  157. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  158. <param name="item1">The value of the first component of the tuple.</param>
  159. <param name="item2">The value of the second component of the tuple.</param>
  160. <returns>An 2-tuple (pair) whose value is (item1, item2).</returns>
  161. </member>
  162. <member name="M:System.Tuple.Create``3(``0,``1,``2)">
  163. <summary>
  164. Creates a new 3-tuple, or triple.
  165. </summary>
  166. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  167. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  168. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  169. <param name="item1">The value of the first component of the tuple.</param>
  170. <param name="item2">The value of the second component of the tuple.</param>
  171. <param name="item3">The value of the third component of the tuple.</param>
  172. <returns>An 3-tuple (triple) whose value is (item1, item2, item3).</returns>
  173. </member>
  174. <member name="M:System.Tuple.Create``4(``0,``1,``2,``3)">
  175. <summary>
  176. Creates a new 4-tuple, or quadruple.
  177. </summary>
  178. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  179. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  180. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  181. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  182. <param name="item1">The value of the first component of the tuple.</param>
  183. <param name="item2">The value of the second component of the tuple.</param>
  184. <param name="item3">The value of the third component of the tuple.</param>
  185. <param name="item4">The value of the fourth component of the tuple.</param>
  186. <returns>An 4-tuple (quadruple) whose value is (item1, item2, item3, item4).</returns>
  187. </member>
  188. <member name="M:System.Tuple.Create``5(``0,``1,``2,``3,``4)">
  189. <summary>
  190. Creates a new 5-tuple, or quintuple.
  191. </summary>
  192. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  193. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  194. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  195. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  196. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  197. <param name="item1">The value of the first component of the tuple.</param>
  198. <param name="item2">The value of the second component of the tuple.</param>
  199. <param name="item3">The value of the third component of the tuple.</param>
  200. <param name="item4">The value of the fourth component of the tuple.</param>
  201. <param name="item5">The value of the fifth component of the tuple.</param>
  202. <returns>An 5-tuple (quintuple) whose value is (item1, item2, item3, item4, item5).</returns>
  203. </member>
  204. <member name="M:System.Tuple.Create``6(``0,``1,``2,``3,``4,``5)">
  205. <summary>
  206. Creates a new 6-tuple, or sextuple.
  207. </summary>
  208. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  209. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  210. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  211. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  212. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  213. <typeparam name="T6">The type of the sixth component of the tuple.</typeparam>
  214. <param name="item1">The value of the first component of the tuple.</param>
  215. <param name="item2">The value of the second component of the tuple.</param>
  216. <param name="item3">The value of the third component of the tuple.</param>
  217. <param name="item4">The value of the fourth component of the tuple.</param>
  218. <param name="item5">The value of the fifth component of the tuple.</param>
  219. <param name="item6">The value of the sixth component of the tuple.</param>
  220. <returns>An 6-tuple (sextuple) whose value is (item1, item2, item3, item4, item5, item6).</returns>
  221. </member>
  222. <member name="M:System.Tuple.Create``7(``0,``1,``2,``3,``4,``5,``6)">
  223. <summary>
  224. Creates a new 7-tuple, or septuple.
  225. </summary>
  226. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  227. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  228. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  229. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  230. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  231. <typeparam name="T6">The type of the sixth component of the tuple.</typeparam>
  232. <typeparam name="T7">The type of the seventh component of the tuple.</typeparam>
  233. <param name="item1">The value of the first component of the tuple.</param>
  234. <param name="item2">The value of the second component of the tuple.</param>
  235. <param name="item3">The value of the third component of the tuple.</param>
  236. <param name="item4">The value of the fourth component of the tuple.</param>
  237. <param name="item5">The value of the fifth component of the tuple.</param>
  238. <param name="item6">The value of the sixth component of the tuple.</param>
  239. <param name="item7">The value of the seventh component of the tuple.</param>
  240. <returns>An 7-tuple (septuple) whose value is (item1, item2, item3, item4, item5, item6, item7).</returns>
  241. </member>
  242. <member name="M:System.Tuple.Create``8(``0,``1,``2,``3,``4,``5,``6,``7)">
  243. <summary>
  244. Creates a new 8-tuple, or octuple.
  245. </summary>
  246. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  247. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  248. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  249. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  250. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  251. <typeparam name="T6">The type of the sixth component of the tuple.</typeparam>
  252. <typeparam name="T7">The type of the seventh component of the tuple.</typeparam>
  253. <typeparam name="T8">The type of the eighth component of the tuple.</typeparam>
  254. <param name="item1">The value of the first component of the tuple.</param>
  255. <param name="item2">The value of the second component of the tuple.</param>
  256. <param name="item3">The value of the third component of the tuple.</param>
  257. <param name="item4">The value of the fourth component of the tuple.</param>
  258. <param name="item5">The value of the fifth component of the tuple.</param>
  259. <param name="item6">The value of the sixth component of the tuple.</param>
  260. <param name="item7">The value of the seventh component of the tuple.</param>
  261. <param name="item8">The value of the eighth component of the tuple.</param>
  262. <returns>An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8).</returns>
  263. </member>
  264. <member name="T:System.Tuple`1">
  265. <summary>
  266. Represents a 1-tuple, or singleton.
  267. </summary>
  268. <typeparam name="T1">The type of the tuple's only component.</typeparam>
  269. </member>
  270. <member name="M:System.Tuple`1.#ctor(`0)">
  271. <summary>
  272. Initializes a new instance of the <see cref="T:System.Tuple`1"/> class.
  273. </summary>
  274. <param name="item1">The value of the current tuple object's single component.</param>
  275. </member>
  276. <member name="M:System.Tuple`1.Equals(System.Object)">
  277. <summary>
  278. Returns a value that indicates whether the current tuple object is equal to a specified object.
  279. </summary>
  280. <param name="obj">The object to compare with this instance.</param>
  281. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  282. </member>
  283. <member name="M:System.Tuple`1.GetHashCode">
  284. <summary>
  285. Calculates the hash code for the current tuple object.
  286. </summary>
  287. <returns>A 32-bit signed integer hash code.</returns>
  288. </member>
  289. <member name="M:System.Tuple`1.ToString">
  290. <summary>
  291. Returns a string that represents the value of this tuple instance.
  292. </summary>
  293. <returns>The string representation of this tuple object.</returns>
  294. </member>
  295. <member name="P:System.Tuple`1.Item1">
  296. <summary>
  297. Gets the value of the tuple object's single component.
  298. </summary>
  299. <value>
  300. The value of the current tuple object's single component.
  301. </value>
  302. </member>
  303. <member name="T:System.Tuple`2">
  304. <summary>
  305. Represents an 2-tuple, or pair.
  306. </summary>
  307. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  308. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  309. </member>
  310. <member name="M:System.Tuple`2.#ctor(`0,`1)">
  311. <summary>
  312. Initializes a new instance of the <see cref="T:System.Tuple`2"/> class.
  313. </summary>
  314. <param name="item1">The value of the first component of the tuple.</param>
  315. <param name="item2">The value of the second component of the tuple.</param>
  316. </member>
  317. <member name="M:System.Tuple`2.Equals(System.Object)">
  318. <summary>
  319. Returns a value that indicates whether the current tuple object is equal to a specified object.
  320. </summary>
  321. <param name="obj">The object to compare with this instance.</param>
  322. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  323. </member>
  324. <member name="M:System.Tuple`2.GetHashCode">
  325. <summary>
  326. Calculates the hash code for the current tuple object.
  327. </summary>
  328. <returns>A 32-bit signed integer hash code.</returns>
  329. </member>
  330. <member name="M:System.Tuple`2.ToString">
  331. <summary>
  332. Returns a string that represents the value of this tuple instance.
  333. </summary>
  334. <returns>The string representation of this tuple object.</returns>
  335. </member>
  336. <member name="P:System.Tuple`2.Item1">
  337. <summary>
  338. Gets the value of the current tuple object's first component.
  339. </summary>
  340. <value>
  341. The value of the current tuple object's first component.
  342. </value>
  343. </member>
  344. <member name="P:System.Tuple`2.Item2">
  345. <summary>
  346. Gets the value of the current tuple object's second component.
  347. </summary>
  348. <value>
  349. The value of the current tuple object's second component.
  350. </value>
  351. </member>
  352. <member name="T:System.Tuple`3">
  353. <summary>
  354. Represents an 3-tuple, or triple.
  355. </summary>
  356. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  357. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  358. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  359. </member>
  360. <member name="M:System.Tuple`3.#ctor(`0,`1,`2)">
  361. <summary>
  362. Initializes a new instance of the <see cref="T:System.Tuple`3"/> class.
  363. </summary>
  364. <param name="item1">The value of the first component of the tuple.</param>
  365. <param name="item2">The value of the second component of the tuple.</param>
  366. <param name="item3">The value of the third component of the tuple.</param>
  367. </member>
  368. <member name="M:System.Tuple`3.Equals(System.Object)">
  369. <summary>
  370. Returns a value that indicates whether the current tuple object is equal to a specified object.
  371. </summary>
  372. <param name="obj">The object to compare with this instance.</param>
  373. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  374. </member>
  375. <member name="M:System.Tuple`3.GetHashCode">
  376. <summary>
  377. Calculates the hash code for the current tuple object.
  378. </summary>
  379. <returns>A 32-bit signed integer hash code.</returns>
  380. </member>
  381. <member name="M:System.Tuple`3.ToString">
  382. <summary>
  383. Returns a string that represents the value of this tuple instance.
  384. </summary>
  385. <returns>The string representation of this tuple object.</returns>
  386. </member>
  387. <member name="P:System.Tuple`3.Item1">
  388. <summary>
  389. Gets the value of the current tuple object's first component.
  390. </summary>
  391. <value>
  392. The value of the current tuple object's first component.
  393. </value>
  394. </member>
  395. <member name="P:System.Tuple`3.Item2">
  396. <summary>
  397. Gets the value of the current tuple object's second component.
  398. </summary>
  399. <value>
  400. The value of the current tuple object's second component.
  401. </value>
  402. </member>
  403. <member name="P:System.Tuple`3.Item3">
  404. <summary>
  405. Gets the value of the current tuple object's third component.
  406. </summary>
  407. <value>
  408. The value of the current tuple object's third component.
  409. </value>
  410. </member>
  411. <member name="T:System.Tuple`4">
  412. <summary>
  413. Represents an 4-tuple, or quadruple.
  414. </summary>
  415. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  416. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  417. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  418. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  419. </member>
  420. <member name="M:System.Tuple`4.#ctor(`0,`1,`2,`3)">
  421. <summary>
  422. Initializes a new instance of the <see cref="T:System.Tuple`4"/> class.
  423. </summary>
  424. <param name="item1">The value of the first component of the tuple.</param>
  425. <param name="item2">The value of the second component of the tuple.</param>
  426. <param name="item3">The value of the third component of the tuple.</param>
  427. <param name="item4">The value of the fourth component of the tuple.</param>
  428. </member>
  429. <member name="M:System.Tuple`4.Equals(System.Object)">
  430. <summary>
  431. Returns a value that indicates whether the current tuple object is equal to a specified object.
  432. </summary>
  433. <param name="obj">The object to compare with this instance.</param>
  434. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  435. </member>
  436. <member name="M:System.Tuple`4.GetHashCode">
  437. <summary>
  438. Calculates the hash code for the current tuple object.
  439. </summary>
  440. <returns>A 32-bit signed integer hash code.</returns>
  441. </member>
  442. <member name="M:System.Tuple`4.ToString">
  443. <summary>
  444. Returns a string that represents the value of this tuple instance.
  445. </summary>
  446. <returns>The string representation of this tuple object.</returns>
  447. </member>
  448. <member name="P:System.Tuple`4.Item1">
  449. <summary>
  450. Gets the value of the current tuple object's first component.
  451. </summary>
  452. <value>
  453. The value of the current tuple object's first component.
  454. </value>
  455. </member>
  456. <member name="P:System.Tuple`4.Item2">
  457. <summary>
  458. Gets the value of the current tuple object's second component.
  459. </summary>
  460. <value>
  461. The value of the current tuple object's second component.
  462. </value>
  463. </member>
  464. <member name="P:System.Tuple`4.Item3">
  465. <summary>
  466. Gets the value of the current tuple object's third component.
  467. </summary>
  468. <value>
  469. The value of the current tuple object's third component.
  470. </value>
  471. </member>
  472. <member name="P:System.Tuple`4.Item4">
  473. <summary>
  474. Gets the value of the current tuple object's fourth component.
  475. </summary>
  476. <value>
  477. The value of the current tuple object's fourth component.
  478. </value>
  479. </member>
  480. <member name="T:System.Tuple`5">
  481. <summary>
  482. Represents an 5-tuple, or quintuple.
  483. </summary>
  484. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  485. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  486. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  487. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  488. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  489. </member>
  490. <member name="M:System.Tuple`5.#ctor(`0,`1,`2,`3,`4)">
  491. <summary>
  492. Initializes a new instance of the <see cref="T:System.Tuple`5"/> class.
  493. </summary>
  494. <param name="item1">The value of the first component of the tuple.</param>
  495. <param name="item2">The value of the second component of the tuple.</param>
  496. <param name="item3">The value of the third component of the tuple.</param>
  497. <param name="item4">The value of the fourth component of the tuple.</param>
  498. <param name="item5">The value of the fifth component of the tuple.</param>
  499. </member>
  500. <member name="M:System.Tuple`5.Equals(System.Object)">
  501. <summary>
  502. Returns a value that indicates whether the current tuple object is equal to a specified object.
  503. </summary>
  504. <param name="obj">The object to compare with this instance.</param>
  505. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  506. </member>
  507. <member name="M:System.Tuple`5.GetHashCode">
  508. <summary>
  509. Calculates the hash code for the current tuple object.
  510. </summary>
  511. <returns>A 32-bit signed integer hash code.</returns>
  512. </member>
  513. <member name="M:System.Tuple`5.ToString">
  514. <summary>
  515. Returns a string that represents the value of this tuple instance.
  516. </summary>
  517. <returns>The string representation of this tuple object.</returns>
  518. </member>
  519. <member name="P:System.Tuple`5.Item1">
  520. <summary>
  521. Gets the value of the current tuple object's first component.
  522. </summary>
  523. <value>
  524. The value of the current tuple object's first component.
  525. </value>
  526. </member>
  527. <member name="P:System.Tuple`5.Item2">
  528. <summary>
  529. Gets the value of the current tuple object's second component.
  530. </summary>
  531. <value>
  532. The value of the current tuple object's second component.
  533. </value>
  534. </member>
  535. <member name="P:System.Tuple`5.Item3">
  536. <summary>
  537. Gets the value of the current tuple object's third component.
  538. </summary>
  539. <value>
  540. The value of the current tuple object's third component.
  541. </value>
  542. </member>
  543. <member name="P:System.Tuple`5.Item4">
  544. <summary>
  545. Gets the value of the current tuple object's fourth component.
  546. </summary>
  547. <value>
  548. The value of the current tuple object's fourth component.
  549. </value>
  550. </member>
  551. <member name="P:System.Tuple`5.Item5">
  552. <summary>
  553. Gets the value of the current tuple object's fifth component.
  554. </summary>
  555. <value>
  556. The value of the current tuple object's fifth component.
  557. </value>
  558. </member>
  559. <member name="T:System.Tuple`6">
  560. <summary>
  561. Represents an 6-tuple, or sextuple.
  562. </summary>
  563. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  564. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  565. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  566. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  567. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  568. <typeparam name="T6">The type of the sixth component of the tuple.</typeparam>
  569. </member>
  570. <member name="M:System.Tuple`6.#ctor(`0,`1,`2,`3,`4,`5)">
  571. <summary>
  572. Initializes a new instance of the <see cref="T:System.Tuple`6"/> class.
  573. </summary>
  574. <param name="item1">The value of the first component of the tuple.</param>
  575. <param name="item2">The value of the second component of the tuple.</param>
  576. <param name="item3">The value of the third component of the tuple.</param>
  577. <param name="item4">The value of the fourth component of the tuple.</param>
  578. <param name="item5">The value of the fifth component of the tuple.</param>
  579. <param name="item6">The value of the sixth component of the tuple.</param>
  580. </member>
  581. <member name="M:System.Tuple`6.Equals(System.Object)">
  582. <summary>
  583. Returns a value that indicates whether the current tuple object is equal to a specified object.
  584. </summary>
  585. <param name="obj">The object to compare with this instance.</param>
  586. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  587. </member>
  588. <member name="M:System.Tuple`6.GetHashCode">
  589. <summary>
  590. Calculates the hash code for the current tuple object.
  591. </summary>
  592. <returns>A 32-bit signed integer hash code.</returns>
  593. </member>
  594. <member name="M:System.Tuple`6.ToString">
  595. <summary>
  596. Returns a string that represents the value of this tuple instance.
  597. </summary>
  598. <returns>The string representation of this tuple object.</returns>
  599. </member>
  600. <member name="P:System.Tuple`6.Item1">
  601. <summary>
  602. Gets the value of the current tuple object's first component.
  603. </summary>
  604. <value>
  605. The value of the current tuple object's first component.
  606. </value>
  607. </member>
  608. <member name="P:System.Tuple`6.Item2">
  609. <summary>
  610. Gets the value of the current tuple object's second component.
  611. </summary>
  612. <value>
  613. The value of the current tuple object's second component.
  614. </value>
  615. </member>
  616. <member name="P:System.Tuple`6.Item3">
  617. <summary>
  618. Gets the value of the current tuple object's third component.
  619. </summary>
  620. <value>
  621. The value of the current tuple object's third component.
  622. </value>
  623. </member>
  624. <member name="P:System.Tuple`6.Item4">
  625. <summary>
  626. Gets the value of the current tuple object's fourth component.
  627. </summary>
  628. <value>
  629. The value of the current tuple object's fourth component.
  630. </value>
  631. </member>
  632. <member name="P:System.Tuple`6.Item5">
  633. <summary>
  634. Gets the value of the current tuple object's fifth component.
  635. </summary>
  636. <value>
  637. The value of the current tuple object's fifth component.
  638. </value>
  639. </member>
  640. <member name="P:System.Tuple`6.Item6">
  641. <summary>
  642. Gets the value of the current tuple object's sixth component.
  643. </summary>
  644. <value>
  645. The value of the current tuple object's sixth component.
  646. </value>
  647. </member>
  648. <member name="T:System.Tuple`7">
  649. <summary>
  650. Represents an 7-tuple, or septuple.
  651. </summary>
  652. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  653. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  654. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  655. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  656. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  657. <typeparam name="T6">The type of the sixth component of the tuple.</typeparam>
  658. <typeparam name="T7">The type of the seventh component of the tuple.</typeparam>
  659. </member>
  660. <member name="M:System.Tuple`7.#ctor(`0,`1,`2,`3,`4,`5,`6)">
  661. <summary>
  662. Initializes a new instance of the <see cref="T:System.Tuple`7"/> class.
  663. </summary>
  664. <param name="item1">The value of the first component of the tuple.</param>
  665. <param name="item2">The value of the second component of the tuple.</param>
  666. <param name="item3">The value of the third component of the tuple.</param>
  667. <param name="item4">The value of the fourth component of the tuple.</param>
  668. <param name="item5">The value of the fifth component of the tuple.</param>
  669. <param name="item6">The value of the sixth component of the tuple.</param>
  670. <param name="item7">The value of the seventh component of the tuple.</param>
  671. </member>
  672. <member name="M:System.Tuple`7.Equals(System.Object)">
  673. <summary>
  674. Returns a value that indicates whether the current tuple object is equal to a specified object.
  675. </summary>
  676. <param name="obj">The object to compare with this instance.</param>
  677. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  678. </member>
  679. <member name="M:System.Tuple`7.GetHashCode">
  680. <summary>
  681. Calculates the hash code for the current tuple object.
  682. </summary>
  683. <returns>A 32-bit signed integer hash code.</returns>
  684. </member>
  685. <member name="M:System.Tuple`7.ToString">
  686. <summary>
  687. Returns a string that represents the value of this tuple instance.
  688. </summary>
  689. <returns>The string representation of this tuple object.</returns>
  690. </member>
  691. <member name="P:System.Tuple`7.Item1">
  692. <summary>
  693. Gets the value of the current tuple object's first component.
  694. </summary>
  695. <value>
  696. The value of the current tuple object's first component.
  697. </value>
  698. </member>
  699. <member name="P:System.Tuple`7.Item2">
  700. <summary>
  701. Gets the value of the current tuple object's second component.
  702. </summary>
  703. <value>
  704. The value of the current tuple object's second component.
  705. </value>
  706. </member>
  707. <member name="P:System.Tuple`7.Item3">
  708. <summary>
  709. Gets the value of the current tuple object's third component.
  710. </summary>
  711. <value>
  712. The value of the current tuple object's third component.
  713. </value>
  714. </member>
  715. <member name="P:System.Tuple`7.Item4">
  716. <summary>
  717. Gets the value of the current tuple object's fourth component.
  718. </summary>
  719. <value>
  720. The value of the current tuple object's fourth component.
  721. </value>
  722. </member>
  723. <member name="P:System.Tuple`7.Item5">
  724. <summary>
  725. Gets the value of the current tuple object's fifth component.
  726. </summary>
  727. <value>
  728. The value of the current tuple object's fifth component.
  729. </value>
  730. </member>
  731. <member name="P:System.Tuple`7.Item6">
  732. <summary>
  733. Gets the value of the current tuple object's sixth component.
  734. </summary>
  735. <value>
  736. The value of the current tuple object's sixth component.
  737. </value>
  738. </member>
  739. <member name="P:System.Tuple`7.Item7">
  740. <summary>
  741. Gets the value of the current tuple object's seventh component.
  742. </summary>
  743. <value>
  744. The value of the current tuple object's seventh component.
  745. </value>
  746. </member>
  747. <member name="T:System.Tuple`8">
  748. <summary>
  749. Represents an n-tuple, where n is 8 or greater.
  750. </summary>
  751. <typeparam name="T1">The type of the first component of the tuple.</typeparam>
  752. <typeparam name="T2">The type of the second component of the tuple.</typeparam>
  753. <typeparam name="T3">The type of the third component of the tuple.</typeparam>
  754. <typeparam name="T4">The type of the fourth component of the tuple.</typeparam>
  755. <typeparam name="T5">The type of the fifth component of the tuple.</typeparam>
  756. <typeparam name="T6">The type of the sixth component of the tuple.</typeparam>
  757. <typeparam name="T7">The type of the seventh component of the tuple.</typeparam>
  758. <typeparam name="TRest">Any generic Tuple object that defines the types of the tuple's remaining components.</typeparam>
  759. </member>
  760. <member name="M:System.Tuple`8.#ctor(`0,`1,`2,`3,`4,`5,`6,`7)">
  761. <summary>
  762. Initializes a new instance of the <see cref="T:System.Tuple`8"/> class.
  763. </summary>
  764. <param name="item1">The value of the first component of the tuple.</param>
  765. <param name="item2">The value of the second component of the tuple.</param>
  766. <param name="item3">The value of the third component of the tuple.</param>
  767. <param name="item4">The value of the fourth component of the tuple.</param>
  768. <param name="item5">The value of the fifth component of the tuple.</param>
  769. <param name="item6">The value of the sixth component of the tuple.</param>
  770. <param name="item7">The value of the seventh component of the tuple.</param>
  771. <param name="rest">Any generic Tuple object that contains the values of the tuple's remaining components.</param>
  772. <exception cref="T:System.ArgumentException">
  773. rest is not a generic Tuple object.
  774. </exception>
  775. </member>
  776. <member name="M:System.Tuple`8.Equals(System.Object)">
  777. <summary>
  778. Returns a value that indicates whether the current tuple object is equal to a specified object.
  779. </summary>
  780. <param name="obj">The object to compare with this instance.</param>
  781. <returns>true if the current instance is equal to the specified object; otherwise, false.</returns>
  782. </member>
  783. <member name="M:System.Tuple`8.GetHashCode">
  784. <summary>
  785. Calculates the hash code for the current tuple object.
  786. </summary>
  787. <returns>A 32-bit signed integer hash code.</returns>
  788. </member>
  789. <member name="M:System.Tuple`8.ToString">
  790. <summary>
  791. Returns a string that represents the value of this tuple instance.
  792. </summary>
  793. <returns>The string representation of this tuple object.</returns>
  794. </member>
  795. <member name="P:System.Tuple`8.Item1">
  796. <summary>
  797. Gets the value of the current tuple object's first component.
  798. </summary>
  799. <value>
  800. The value of the current tuple object's first component.
  801. </value>
  802. </member>
  803. <member name="P:System.Tuple`8.Item2">
  804. <summary>
  805. Gets the value of the current tuple object's second component.
  806. </summary>
  807. <value>
  808. The value of the current tuple object's second component.
  809. </value>
  810. </member>
  811. <member name="P:System.Tuple`8.Item3">
  812. <summary>
  813. Gets the value of the current tuple object's third component.
  814. </summary>
  815. <value>
  816. The value of the current tuple object's third component.
  817. </value>
  818. </member>
  819. <member name="P:System.Tuple`8.Item4">
  820. <summary>
  821. Gets the value of the current tuple object's fourth component.
  822. </summary>
  823. <value>
  824. The value of the current tuple object's fourth component.
  825. </value>
  826. </member>
  827. <member name="P:System.Tuple`8.Item5">
  828. <summary>
  829. Gets the value of the current tuple object's fifth component.
  830. </summary>
  831. <value>
  832. The value of the current tuple object's fifth component.
  833. </value>
  834. </member>
  835. <member name="P:System.Tuple`8.Item6">
  836. <summary>
  837. Gets the value of the current tuple object's sixth component.
  838. </summary>
  839. <value>
  840. The value of the current tuple object's sixth component.
  841. </value>
  842. </member>
  843. <member name="P:System.Tuple`8.Item7">
  844. <summary>
  845. Gets the value of the current tuple object's seventh component.
  846. </summary>
  847. <value>
  848. The value of the current tuple object's seventh component.
  849. </value>
  850. </member>
  851. <member name="P:System.Tuple`8.Rest">
  852. <summary>
  853. Gets the current tuple object's remaining components.
  854. </summary>
  855. <value>
  856. The value of the current tuple object's remaining components.
  857. </value>
  858. </member>
  859. </members>
  860. </doc>