System.xml 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!--
  3. Copyright 2017 YANG Huan (sy.yanghuan@gmail.com).
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. */
  14. !-->
  15. <meta>
  16. <assembly>
  17. <namespace name="System">
  18. <class name="Single">
  19. <field name="NaN" Template="System.Single.NaN" />
  20. <field name="PositiveInfinity" Template="System.Single.PositiveInfinity" />
  21. <field name="NegativeInfinity" Template="System.Single.NegativeInfinity" />
  22. </class>
  23. <class name="Double">
  24. <field name="NaN" Template="System.Double.NaN" />
  25. <field name="PositiveInfinity" Template="System.Double.PositiveInfinity" />
  26. <field name="NegativeInfinity" Template="System.Double.NegativeInfinity" />
  27. </class>
  28. <class name="Decimal" Name="System.Double" />
  29. <class name="Char">
  30. <method name="ToString" Template="System.Char.ToString({0})">
  31. <arg type="System.Char" />
  32. </method>
  33. <method name="ToString" Template="System.Char.ToString({this})" />
  34. </class>
  35. <class name="String">
  36. <field name="Empty" Template="(&quot;&quot;)" />
  37. <property name="Length">
  38. <get Template="#{this}" />
  39. </property>
  40. <method name="Concat" GenericArgCount="1" IgnoreGeneric="true" />
  41. <method name="Join" GenericArgCount="1" Name="JoinEnumerable" IgnoreGeneric="true" />
  42. <method name="Join" Name="JoinEnumerable">
  43. <arg type="System.String" />
  44. <arg type="System.Collections.Generic.IEnumerable`1" />
  45. </method>
  46. <method name="Join" ArgCount="2" Name="JoinParams" />
  47. <method name="LastIndexOf" Template="{this}:LastIndexOf({0}, nil, nil, {1})">
  48. <arg type="System.String" />
  49. <arg type="System.StringComparison" />
  50. </method>
  51. <method name="LastIndexOf" Template="{this}:LastIndexOf({0}, {1}, nil, {2})">
  52. <arg type="System.String" />
  53. <arg type="System.Int32" />
  54. <arg type="System.StringComparison" />
  55. </method>
  56. <method name="Split" Template="{this}:Split({0}, nil, {1})">
  57. <arg type="System.Char" />
  58. <arg type="System.StringSplitOptions" />
  59. </method>
  60. <method name="Split" Template="{this}:Split({0}, nil, {1})">
  61. <arg type="System.Char[]" />
  62. <arg type="System.StringSplitOptions" />
  63. </method>
  64. <method name="Split" Template="{this}:Split({0}, nil, {1})">
  65. <arg type="System.String[]" />
  66. <arg type="System.StringSplitOptions" />
  67. </method>
  68. </class>
  69. <class name="Enum">
  70. <method name="Parse" GenericArgCount="1" ArgCount="1" Template="System.Enum.Parse({`0}, {0})" />
  71. <method name="Parse" GenericArgCount="1" ArgCount="2" Template="System.Enum.Parse({`0}, {0}, {1})" />
  72. <method name="TryParse" GenericArgCount="1" ArgCount="2" Template="System.Enum.TryParse({`0}, {0})" />
  73. <method name="TryParse" GenericArgCount="1" ArgCount="3" Template="System.Enum.TryParse({`0}, {0}, {1})" />
  74. </class>
  75. <class name="DateTime">
  76. <method name=".ctor" ArgCount="4" Baned="true" />
  77. <method name=".ctor" Baned="true">
  78. <arg type="System.Int32" />
  79. <arg type="System.Int32" />
  80. <arg type="System.Int32" />
  81. <arg type="System.Int32" />
  82. <arg type="System.Int32" />
  83. <arg type="System.Int32" />
  84. <arg type="System.Globalization.Calendar" />
  85. </method>
  86. <method name=".ctor" Baned="true">
  87. <arg type="System.Int32" />
  88. <arg type="System.Int32" />
  89. <arg type="System.Int32" />
  90. <arg type="System.Int32" />
  91. <arg type="System.Int32" />
  92. <arg type="System.Int32" />
  93. <arg type="System.Int32" />
  94. <arg type="System.Globalization.Calendar" />
  95. </method>
  96. <method name=".ctor" ArgCount="9" Baned="true" />
  97. <method name=".ctor" Template="System.DateTime({0}, {1}, {2}, {3}, {4}, {5}, 0, {6})">
  98. <arg type="System.Int32" />
  99. <arg type="System.Int32" />
  100. <arg type="System.Int32" />
  101. <arg type="System.Int32" />
  102. <arg type="System.Int32" />
  103. <arg type="System.Int32" />
  104. <arg type="System.DateTimeKind" />
  105. </method>
  106. <method name="op_Addition" Template="{0} + {1}" />
  107. <method name="op_Subtraction" Template="{0} - {1}" />
  108. <method name="op_Equality" Template="{0} == {1}" />
  109. <method name="op_Inequality" Template="{0} ~= {1}" />
  110. <method name="op_LessThan" Template="{0} &lt; {1}" />
  111. <method name="op_LessThanOrEqual" Template="{0} &lt;= {1}" />
  112. <method name="op_GreaterThan" Template="{0} &gt; {1}" />
  113. <method name="op_GreaterThanOrEqual" Template="{0} &gt;= {1}" />
  114. </class>
  115. <class name="TimeSpan">
  116. <method name="op_UnaryPlus" Template="{0}" />
  117. <method name="op_Addition" Template="{0} + {1}" />
  118. <method name="op_UnaryNegation" Template="-{0}" />
  119. <method name="op_Subtraction" Template="{0} - {1}" />
  120. <method name="op_Equality" Template="{0} == {1}" />
  121. <method name="op_Inequality" Template="{0} ~= {1}" />
  122. <method name="op_LessThan" Template="{0} &lt; {1}" />
  123. <method name="op_LessThanOrEqual" Template="{0} &lt;= {1}" />
  124. <method name="op_GreaterThan" Template="{0} &gt; {1}" />
  125. <method name="op_GreaterThanOrEqual" Template="{0} &gt;= {1}" />
  126. </class>
  127. <class name="TimeZoneInfo">
  128. <property name="BaseUtcOffset" >
  129. <get Template="System.DateTime.BaseUtcOffset" />
  130. </property>
  131. </class>
  132. <class name="Object">
  133. <method name="Equals" Name="EqualsObj" >
  134. <arg type="System.Object" />
  135. </method>
  136. <method name="Equals" Name="EqualsStatic" >
  137. <arg type="System.Object" />
  138. <arg type="System.Object" />
  139. </method>
  140. </class>
  141. <class name="Type">
  142. <method name="GetType" ArgCount ="1" Name="GetTypeFrom" />
  143. <method name="GetType" ArgCount ="2" Name="GetTypeFrom" />
  144. <method name="GetType" ArgCount ="3" Name="GetTypeFrom" />
  145. <method name="op_Equality" Template="{0} == {1}" />
  146. <method name="op_Inequality" Template="{0} ~= {1}" />
  147. </class>
  148. <class name="Array">
  149. <property name="Length">
  150. <get Template="#{this}" />
  151. </property>
  152. <method name="BinarySearch" IgnoreGeneric="true" />
  153. <method name="Clear" Name="ClearArray" />
  154. <method name="Exists" IgnoreGeneric="true" />
  155. <method name="Fill" IgnoreGeneric="true" />
  156. <method name="Find" IgnoreGeneric="true" />
  157. <method name="FindAll" IgnoreGeneric="true" />
  158. <method name="FindIndex" IgnoreGeneric="true" />
  159. <method name="FindLast" IgnoreGeneric="true" />
  160. <method name="FindLastIndex" IgnoreGeneric="true" />
  161. <method name="ForEach" IgnoreGeneric="true" />
  162. <method name="IndexOf" IgnoreGeneric="true" />
  163. <method name="LastIndexOf" IgnoreGeneric="true" />
  164. <method name="Reverse" IgnoreGeneric="true" />
  165. <method name="Sort" IgnoreGeneric="true" />
  166. <method name="TrueForAll" IgnoreGeneric="true" />
  167. </class>
  168. <class name="IComparable">
  169. <method name="CompareTo" Name="CompareToObj" />
  170. </class>
  171. <class name="Console">
  172. <method name="Write" Name="WriteChar" >
  173. <arg type="System.Char" />
  174. </method>
  175. <method name="WriteLine" Name="WriteLineChar" >
  176. <arg type="System.Char" />
  177. </method>
  178. </class>
  179. <class name="Math" Name="math" >
  180. <method name="Round" Template="math.Round({0}, nil, {1})">
  181. <arg type="System.Double" />
  182. <arg type="System.MidpointRounding" />
  183. </method>
  184. <method name="Round" Template="math.Round({0}, nil, {1})">
  185. <arg type="System.Decimal" />
  186. <arg type="System.MidpointRounding" />
  187. </method>
  188. </class>
  189. <class name="Activator" >
  190. <method name="CreateInstance" Template="System.Activator.CreateInstance({0}, {*1})">
  191. <arg type="System.Type" />
  192. <arg type="System.Object[]" />
  193. </method>
  194. <method name="CreateInstance" Name="CreateInstance1">
  195. <arg type="System.Type" />
  196. <arg type="System.Boolean" />
  197. </method>
  198. <method name="CreateInstance" ArgCount="3" Baned="true" />
  199. <method name="CreateInstance" ArgCount="5" Baned="true" />
  200. <method name="CreateInstance" ArgCount="6" Baned="true" />
  201. </class>
  202. <class name="Tuple">
  203. <method name="Create" ArgCount="1" Template="System.Tuple({0})" />
  204. <method name="Create" ArgCount="2" Template="System.Tuple({0}, {1})" />
  205. <method name="Create" ArgCount="3" Template="System.Tuple({0}, {1}, {2})" />
  206. <method name="Create" ArgCount="4" Template="System.Tuple({0}, {1}, {2}, {3})" />
  207. <method name="Create" ArgCount="5" Template="System.Tuple({0}, {1}, {2}, {3}, {4})" />
  208. <method name="Create" ArgCount="6" Template="System.Tuple({0}, {1}, {2}, {3}, {4}, {5})" />
  209. <method name="Create" ArgCount="7" Template="System.Tuple({0}, {1}, {2}, {3}, {4}, {5}, {6})" />
  210. <method name="Create" ArgCount="8" Template="System.Tuple({0}, {1}, {2}, {3}, {4}, {5}, {6}, {7})" />
  211. </class>
  212. <class name="Tuple`1" IgnoreGeneric="true">
  213. <property name="Item1">
  214. <get Template="{this}[1]" />
  215. </property>
  216. </class>
  217. <class name="Tuple`2" IgnoreGeneric="true">
  218. <property name="Item1">
  219. <get Template="{this}[1]" />
  220. </property>
  221. <property name="Item2">
  222. <get Template="{this}[2]" />
  223. </property>
  224. </class>
  225. <class name="Tuple`3" IgnoreGeneric="true">
  226. <property name="Item1">
  227. <get Template="{this}[1]" />
  228. </property>
  229. <property name="Item2">
  230. <get Template="{this}[2]" />
  231. </property>
  232. <property name="Item3">
  233. <get Template="{this}[3]" />
  234. </property>
  235. </class>
  236. <class name="Tuple`4" IgnoreGeneric="true">
  237. <property name="Item1">
  238. <get Template="{this}[1]" />
  239. </property>
  240. <property name="Item2">
  241. <get Template="{this}[2]" />
  242. </property>
  243. <property name="Item3">
  244. <get Template="{this}[3]" />
  245. </property>
  246. <property name="Item4">
  247. <get Template="{this}[4]" />
  248. </property>
  249. </class>
  250. <class name="Tuple`5" IgnoreGeneric="true">
  251. <property name="Item1">
  252. <get Template="{this}[1]" />
  253. </property>
  254. <property name="Item2">
  255. <get Template="{this}[2]" />
  256. </property>
  257. <property name="Item3">
  258. <get Template="{this}[3]" />
  259. </property>
  260. <property name="Item4">
  261. <get Template="{this}[4]" />
  262. </property>
  263. <property name="Item5">
  264. <get Template="{this}[5]" />
  265. </property>
  266. </class>
  267. <class name="Tuple`6" IgnoreGeneric="true">
  268. <property name="Item1">
  269. <get Template="{this}[1]" />
  270. </property>
  271. <property name="Item2">
  272. <get Template="{this}[2]" />
  273. </property>
  274. <property name="Item3">
  275. <get Template="{this}[3]" />
  276. </property>
  277. <property name="Item4">
  278. <get Template="{this}[4]" />
  279. </property>
  280. <property name="Item5">
  281. <get Template="{this}[5]" />
  282. </property>
  283. <property name="Item6">
  284. <get Template="{this}[6]" />
  285. </property>
  286. </class>
  287. <class name="Tuple`7" IgnoreGeneric="true">
  288. <property name="Item1">
  289. <get Template="{this}[1]" />
  290. </property>
  291. <property name="Item2">
  292. <get Template="{this}[2]" />
  293. </property>
  294. <property name="Item3">
  295. <get Template="{this}[3]" />
  296. </property>
  297. <property name="Item4">
  298. <get Template="{this}[4]" />
  299. </property>
  300. <property name="Item5">
  301. <get Template="{this}[5]" />
  302. </property>
  303. <property name="Item6">
  304. <get Template="{this}[6]" />
  305. </property>
  306. <property name="Item7">
  307. <get Template="{this}[7]" />
  308. </property>
  309. </class>
  310. <class name="Tuple`8" IgnoreGeneric="true">
  311. <property name="Item1">
  312. <get Template="{this}[1]" />
  313. </property>
  314. <property name="Item2">
  315. <get Template="{this}[2]" />
  316. </property>
  317. <property name="Item3">
  318. <get Template="{this}[3]" />
  319. </property>
  320. <property name="Item4">
  321. <get Template="{this}[4]" />
  322. </property>
  323. <property name="Item5">
  324. <get Template="{this}[5]" />
  325. </property>
  326. <property name="Item6">
  327. <get Template="{this}[6]" />
  328. </property>
  329. <property name="Item7">
  330. <get Template="{this}[7]" />
  331. </property>
  332. <property name="Item8">
  333. <get Template="{this}[8]" />
  334. </property>
  335. </class>
  336. <class name="ValueTuple">
  337. <method name="Create" ArgCount="2" Template="System.ValueTuple({0}, {1})" />
  338. <method name="Create" ArgCount="3" Template="System.ValueTuple({0}, {1}, {2})" />
  339. <method name="Create" ArgCount="4" Template="System.ValueTuple({0}, {1}, {2}, {3})" />
  340. <method name="Create" ArgCount="5" Template="System.ValueTuple({0}, {1}, {2}, {3}, {4})" />
  341. <method name="Create" ArgCount="6" Template="System.ValueTuple({0}, {1}, {2}, {3}, {4}, {5})" />
  342. <method name="Create" ArgCount="7" Template="System.ValueTuple({0}, {1}, {2}, {3}, {4}, {5}, {6})" />
  343. <method name="Create" ArgCount="8" Template="System.ValueTuple({0}, {1}, {2}, {3}, {4}, {5}, {6}, {7})" />
  344. </class>
  345. <class name="Nullable`1" Name="System.Nullable">
  346. <method name=".ctor" Template="{0}" />
  347. <property name="HasValue">
  348. <get Template="({this} ~= nil)" />
  349. </property>
  350. <property name="Value">
  351. <get Template="System.Nullable.Value({this})" />
  352. </property>
  353. <method name="Equals" Template="System.Nullable.EqualsObj({this}, {0})" />
  354. <method name="GetHashCode" Template="System.Nullable.GetHashCode({this})" />
  355. <method name="GetValueOrDefault" ArgCount="0" Template="({this} or {`0}:default())" />
  356. <method name="GetValueOrDefault" ArgCount="1" Template="({this} or {0})" />
  357. <method name="ToString" Template="System.toString({this})" />
  358. <method name="op_Explicit" Template="System.Nullable.Value({0})" />
  359. </class>
  360. <class name="MulticastDelegate" Name="System.Delegate" />
  361. <class name="Index">
  362. <property name="End" IsField="true" />
  363. <property name="Start" IsField="true" />
  364. <property name="Value">
  365. <get Template="{this}" />
  366. </property>
  367. <property name="IsFromEnd">
  368. <get Template="System.Index.IsFromEnd({this})" />
  369. </property>
  370. <method name="FromStart" Template="System.Index({0})" />
  371. <method name="FromEnd" Template="System.Index({0}, true)" />
  372. <method name="GetOffset" Template="System.Index.GetOffset({this}, {0})" />
  373. <method name="ToString" Template="System.Index.ToString({this})" />
  374. <method name="op_Implicit" Template="System.Index({0})" />
  375. </class>
  376. <class name="WeakReference`1" IgnoreGeneric="true" />
  377. <class name="Lazy`1" Name="System.Lazy" />
  378. <class name="Convert">
  379. <method name="ToString" Name="ToStringFromChar">
  380. <arg type="System.Char" />
  381. </method>
  382. <method name="ToString" Name="ToStringFromChar">
  383. <arg type="System.Char" />
  384. <arg type="System.IFormatProvider" />
  385. </method>
  386. <method name="ToString" Template="({0})">
  387. <arg type="System.String" />
  388. </method>
  389. <method name="ToString" Template="({0})">
  390. <arg type="System.String" />
  391. <arg type="System.IFormatProvider" />
  392. </method>
  393. <method name="ToString" Template="System.Convert.ToString({0}, {1}, System.toUInt16)">
  394. <arg type="System.Int16" />
  395. <arg type="System.Int32" />
  396. </method>
  397. <method name="ToString" Template="System.Convert.ToString({0}, {1}, System.toUInt32)">
  398. <arg type="System.Int32" />
  399. <arg type="System.Int32" />
  400. </method>
  401. </class>
  402. <class name="BitConverter">
  403. <method name="GetBytes" Name="GetBytesFromBoolean">
  404. <arg type="System.Boolean" />
  405. </method>
  406. <method name="GetBytes" Name="GetBytesFromInt16">
  407. <arg type="System.Char" />
  408. </method>
  409. <method name="GetBytes" Name="GetBytesFromInt16">
  410. <arg type="System.Int16" />
  411. </method>
  412. <method name="GetBytes" Name="GetBytesFromInt16">
  413. <arg type="System.UInt16" />
  414. </method>
  415. <method name="GetBytes" Name="GetBytesFromInt32">
  416. <arg type="System.Int32" />
  417. </method>
  418. <method name="GetBytes" Name="GetBytesFromInt32">
  419. <arg type="System.UInt32" />
  420. </method>
  421. <method name="GetBytes" Name="GetBytesFromInt64">
  422. <arg type="System.Int64" />
  423. </method>
  424. <method name="GetBytes" Name="GetBytesFromInt64">
  425. <arg type="System.UInt64" />
  426. </method>
  427. <method name="GetBytes" Name="GetBytesFromFloat">
  428. <arg type="System.Single" />
  429. </method>
  430. <method name="GetBytes" Name="GetBytesFromDouble">
  431. <arg type="System.Double" />
  432. </method>
  433. </class>
  434. <class name="ArraySegment`1" Name="System.ArraySegment" />
  435. <class name="Guid" Readonly="true" />
  436. <class name="ArgumentNullException">
  437. <method name=".ctor" Template="System.ArgumentNullException(nil, {0}, {1})">
  438. <arg type="System.String" />
  439. <arg type="System.Exception" />
  440. </method>
  441. </class>
  442. <class name="ArgumentOutOfRangeException">
  443. <method name=".ctor" Template="System.ArgumentOutOfRangeException(nil, {0}, {1})">
  444. <arg type="System.String" />
  445. <arg type="System.Exception" />
  446. </method>
  447. <method name=".ctor" Template="System.ArgumentOutOfRangeException({0}, nil, nil, {1}, {2})">
  448. <arg type="System.String" />
  449. <arg type="System.Object" />
  450. <arg type="System.String" />
  451. </method>
  452. </class>
  453. <class name="ObjectDisposedException">
  454. <method name=".ctor" Template="System.ObjectDisposedException(nil, {0}, {1})">
  455. <arg type="System.String" />
  456. <arg type="System.Exception" />
  457. </method>
  458. </class>
  459. </namespace>
  460. <namespace name="System.Collections" Name="System" >
  461. <class name="IEqualityComparer">
  462. <method name="Equals" Name="EqualsObjOf" />
  463. <method name="GetHashCode" Name="GetHashCodeObjOf" />
  464. </class>
  465. <class name="IList">
  466. <method name="Add" Name="AddObj" />
  467. </class>
  468. <class name="Queue" Name="queue" />
  469. <class name="Stack" Name="stack" />
  470. </namespace>
  471. <namespace name="System.Collections.Generic" Name="System">
  472. <class name="List`1" Name="System.List">
  473. <property name="Count">
  474. <get Template="#{this}" />
  475. </property>
  476. </class>
  477. <class name="Dictionary`2" Name="System.Dictionary"/>
  478. <class name="Queue`1" Name="System.Queue">
  479. <property name="Count">
  480. <get Template="#{this}" />
  481. </property>
  482. </class>
  483. <class name="Stack`1" Name="System.Stack">
  484. <property name="Count">
  485. <get Template="#{this}" />
  486. </property>
  487. </class>
  488. <class name="LinkedList`1" Name="System.LinkedList">
  489. <property name="Count" IsField="true" />
  490. <method name="AddAfter" Name="AddAfterNode">
  491. <arg type="System.Collections.Generic.LinkedListNode`1" />
  492. <arg type="System.Collections.Generic.LinkedListNode`1" />
  493. </method>
  494. <method name="AddBefore" Name="AddBeforeNode">
  495. <arg type="System.Collections.Generic.LinkedListNode`1" />
  496. <arg type="System.Collections.Generic.LinkedListNode`1" />
  497. </method>
  498. <method name="AddFirst" Name="AddFirstNode">
  499. <arg type="System.Collections.Generic.LinkedListNode`1" />
  500. </method>
  501. <method name="AddLast" Name="AddLastNode">
  502. <arg type="System.Collections.Generic.LinkedListNode`1" />
  503. </method>
  504. <method name="Remove" Name="RemoveNode">
  505. <arg type="System.Collections.Generic.LinkedListNode`1" />
  506. </method>
  507. </class>
  508. <class name="LinkedListNode`1" Name="System.LinkedListNode" IgnoreGeneric="true">
  509. <property name="Value" IsField="true" />
  510. <property name="List" IsField="true" />
  511. </class>
  512. <class name="HashSet`1" Name="System.HashSet" />
  513. <class name="KeyValuePair`2" Name="System.KeyValuePair">
  514. <property name="Key" IsField="true" />
  515. <property name="Value" IsField="true" />
  516. </class>
  517. <class name="IDictionary`2">
  518. <method name="Add" Name="AddKeyValue" />
  519. <method name="Remove" Name="RemoveKey" />
  520. </class>
  521. <class name="IEqualityComparer`1">
  522. <method name="Equals" Name="EqualsOf" />
  523. <method name="GetHashCode" Name="GetHashCodeOf" />
  524. </class>
  525. <class name="EqualityComparer`1" Name="System.EqualityComparer" />
  526. </namespace>
  527. <namespace name="System.Collections.ObjectModel" Name="System" >
  528. <class name="ReadOnlyCollection`1" Name="System.ReadOnlyCollection" />
  529. </namespace>
  530. <namespace name="System.Linq">
  531. <class name="Enumerable">
  532. <method name="Where" Template="Linq.Where({0}, {1})" />
  533. <method name="Select" Template="Linq.Select({0}, {1}, {`1})" />
  534. <method name="SelectMany" Template="Linq.SelectMany({0}, {1}, {`1})" />
  535. <method name="Take" Template="Linq.Take({0}, {1})" />
  536. <method name="TakeWhile" Template="Linq.TakeWhile({0}, {1})" />
  537. <method name="Skip" Template="Linq.Skip({0}, {1})" />
  538. <method name="SkipWhile" Template="Linq.SkipWhile({0}, {1})" />
  539. <method name="Join" ArgCount="5" Template="Linq.Join({0}, {1}, {2}, {3}, {4}, {5}, nil, {`2}, {`3})" />
  540. <method name="Join" ArgCount="6" Template="Linq.Join({0}, {1}, {2}, {3}, {4}, {5}, {6}, {`2}, {`3})" />
  541. <method name="GroupJoin" ArgCount="5" Template="Linq.GroupJoin({0}, {1}, {2}, {3}, {4}, {5}, nil, {`2}, {`3})" />
  542. <method name="GroupJoin" ArgCount="6" Template="Linq.GroupJoin({0}, {1}, {2}, {3}, {4}, {5}, {6}, {`2}, {`3})" />
  543. <method name="GroupBy" ArgCount="2" Template="Linq.GroupBy({0}, {1}, {`1})" />
  544. <method name="GroupBy" Template="Linq.GroupBy({0}, {1}, {2}, {`1})" >
  545. <arg type="System.Collections.Generic.IEnumerable`1" />
  546. <arg type="System.Func`2" />
  547. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  548. </method>
  549. <method name="GroupBy" Template="Linq.GroupBy({0}, {1}, {2}, {`1}, {`2})" >
  550. <arg type="System.Collections.Generic.IEnumerable`1" />
  551. <arg type="System.Func`2" />
  552. <arg type="System.Func`2" />
  553. </method>
  554. <method name="GroupBy" Template="Linq.GroupBySelect({0}, {1}, {2}, {`1}, {`2})" >
  555. <arg type="System.Collections.Generic.IEnumerable`1" />
  556. <arg type="System.Func`2" />
  557. <arg type="System.Func`3" />
  558. </method>
  559. <method name="GroupBy" Template="Linq.GroupBy({0}, {1}, {2}, {3}, {`1}, {`2})" >
  560. <arg type="System.Collections.Generic.IEnumerable`1" />
  561. <arg type="System.Func`2" />
  562. <arg type="System.Func`2" />
  563. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  564. </method>
  565. <method name="GroupBy" Template="Linq.GroupBySelect({0}, {1}, {2}, {3}, {`1}, {`2}, {`3})" >
  566. <arg type="System.Collections.Generic.IEnumerable`1" />
  567. <arg type="System.Func`2" />
  568. <arg type="System.Func`2" />
  569. <arg type="System.Func`3" />
  570. </method>
  571. <method name="GroupBy" Template="Linq.GroupBySelect({0}, {1}, {2}, {3}, {`1}, {`2})" >
  572. <arg type="System.Collections.Generic.IEnumerable`1" />
  573. <arg type="System.Func`2" />
  574. <arg type="System.Func`3" />
  575. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  576. </method>
  577. <method name="GroupBy" Template="Linq.GroupBySelect({0}, {1}, {2}, {3}, {4}, {`1}, {`2}, {`3})" >
  578. <arg type="System.Collections.Generic.IEnumerable`1" />
  579. <arg type="System.Func`2" />
  580. <arg type="System.Func`2" />
  581. <arg type="System.Func`3" />
  582. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  583. </method>
  584. <method name="Concat" Template="Linq.Concat({0}, {1})" />
  585. <method name="Zip" Template="Linq.Zip({0, {1}, {2}}, {`2})" />
  586. <method name="Distinct" Template="Linq.Distinct({0}, {1})" />
  587. <method name="Union" Template="Linq.Union({0}, {1}, {2})" />
  588. <method name="Intersect" Template="Linq.Intersect({0}, {1}, {2})" />
  589. <method name="Except" Template="Linq.Except({0}, {1}, {2})" />
  590. <method name="Reverse" Template="Linq.Reverse({0})" />
  591. <method name="SequenceEqual" Template="Linq.SequenceEqual({0}, {1}, {2})" />
  592. <method name="ToArray" Template="Linq.ToArray({0})" />
  593. <method name="ToList" Template="Linq.ToList({0})" />
  594. <method name="ToDictionary" ArgCount="2" Template="Linq.ToDictionary({0}, {1}, {`1})" />
  595. <method name="ToDictionary" Template="Linq.ToDictionary({0}, {1}, {2}, {`1})" >
  596. <arg type="System.Collections.Generic.IEnumerable`1" />
  597. <arg type="System.Func`2" />
  598. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  599. </method>
  600. <method name="ToDictionary" Template="Linq.ToDictionary({0}, {1}, {2}, {`1}, {`2})" >
  601. <arg type="System.Collections.Generic.IEnumerable`1" />
  602. <arg type="System.Func`2" />
  603. <arg type="System.Func`2" />
  604. </method>
  605. <method name="ToDictionary" Template="Linq.ToDictionary({0}, {1}, {2}, {3}, {`1}, {`2})" >
  606. <arg type="System.Collections.Generic.IEnumerable`1" />
  607. <arg type="System.Func`2" />
  608. <arg type="System.Func`2" />
  609. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  610. </method>
  611. <method name="ToLookup" ArgCount="2" Template="Linq.ToLookup({0}, {1}, {`1})" />
  612. <method name="ToLookup" Template="Linq.ToLookup({0}, {1}, {2}, {`1})" >
  613. <arg type="System.Collections.Generic.IEnumerable`1" />
  614. <arg type="System.Func`2" />
  615. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  616. </method>
  617. <method name="ToLookup" Template="Linq.ToLookup({0}, {1}, {2}, {`1}, {`2})" >
  618. <arg type="System.Collections.Generic.IEnumerable`1" />
  619. <arg type="System.Func`2" />
  620. <arg type="System.Func`2" />
  621. </method>
  622. <method name="ToLookup" Template="Linq.ToLookup({0}, {1}, {2}, {3}, {`1}, {`2})" >
  623. <arg type="System.Collections.Generic.IEnumerable`1" />
  624. <arg type="System.Func`2" />
  625. <arg type="System.Func`2" />
  626. <arg type="System.Collections.Generic.IEqualityComparer`1" />
  627. </method>
  628. <method name="Cast" Template="Linq.Cast({0}, {`0})" />
  629. <method name="First" Template="Linq.First({0}, {1})" />
  630. <method name="FirstOrDefault" Template="Linq.FirstOrDefault({0}, {1})" />
  631. <method name="Last" Template="Linq.Last({0}, {1})" />
  632. <method name="LastOrDefault" Template="Linq.LastOrDefault({0}, {1})" />
  633. <method name="Single" Template="Linq.Single({0}, {1})" />
  634. <method name="SingleOrDefault" Template="Linq.SingleOrDefault({0}, {1})" />
  635. <method name="ElementAt" Template="Linq.ElementAt({0}, {1})" />
  636. <method name="ElementAtOrDefault" Template="Linq.ElementAtOrDefault({0}, {1})" />
  637. <method name="Any" Template="Linq.Any({0}, {1})" />
  638. <method name="All" Template="Linq.All({0}, {1})" />
  639. <method name="Count" Template="Linq.Count({0}, {1})" />
  640. <method name="Contains" Template="Linq.Contains({0}, {1}, {2})" />
  641. <method name="Aggregate" Template="Linq.Aggregate({0}, {1}, {2})" />
  642. <method name="Sum" Template="Linq.Sum({0}, {1})" />
  643. <method name="Min" ArgCount="1" Template="Linq.Min({0})" />
  644. <method name="Min" ArgCount="2" RetType="System.Int32" Template="Linq.Min({0}, {1}, System.Int32)" />
  645. <method name="Min" ArgCount="2" RetType="System.Int64" Template="Linq.Min({0}, {1}, System.Int64)" />
  646. <method name="Min" ArgCount="2" RetType="System.Single" Template="Linq.Min({0}, {1}, System.Single)" />
  647. <method name="Min" ArgCount="2" RetType="System.Double" Template="Linq.Min({0}, {1}, System.Double)" />
  648. <method name="Min" ArgCount="2" RetType="System.Decimal" Template="Linq.Min({0}, {1}, System.Double)" />
  649. <method name="Min" ArgCount="2" GenericArgCount="2" Template="Linq.Min({0}, {1}, {`1})" />
  650. <method name="Max" ArgCount="1" Template="Linq.Max({0})" />
  651. <method name="Max" ArgCount="2" RetType="System.Int32" Template="Linq.Max({0}, {1}, System.Int32)" />
  652. <method name="Max" ArgCount="2" RetType="System.Int64" Template="Linq.Max({0}, {1}, System.Int64)" />
  653. <method name="Max" ArgCount="2" RetType="System.Single" Template="Linq.Max({0}, {1}, System.Single)" />
  654. <method name="Max" ArgCount="2" RetType="System.Double" Template="Linq.Max({0}, {1}, System.Double)" />
  655. <method name="Max" ArgCount="2" RetType="System.Decimal" Template="Linq.Max({0}, {1}, System.Double)" />
  656. <method name="Max" ArgCount="2" GenericArgCount="2" Template="Linq.Max({0}, {1}, {`1})" />
  657. <method name="OfType" Template="Linq.OfType({0}, {`0})" />
  658. <method name="OrderBy" ArgCount="2" Template="Linq.OrderBy({0}, {1}, nil, {`1})" />
  659. <method name="OrderBy" ArgCount="3" Template="Linq.OrderBy({0}, {1}, {2}, {`1})" />
  660. <method name="OrderByDescending" ArgCount="2" Template="Linq.OrderByDescending({0}, {1}, nil, {`1})" />
  661. <method name="OrderByDescending" ArgCount="3" Template="Linq.OrderByDescending({0}, {1}, {2}, {`1})" />
  662. <method name="ThenBy" ArgCount="2" Template="Linq.ThenBy({0}, {1}, nil, {`1})" />
  663. <method name="ThenBy" ArgCount="3" Template="Linq.ThenBy({0}, {1}, {2}, {`1})" />
  664. <method name="ThenByDescending" ArgCount="2" Template="Linq.ThenByDescending({0}, {1}, nil, {`1})" />
  665. <method name="ThenByDescending" ArgCount="3" Template="Linq.ThenByDescending({0}, {1}, {2}, {`1})" />
  666. <method name="Average" Template="Linq.Average({0}, {1})" />
  667. <method name="DefaultIfEmpty" Template="Linq.DefaultIfEmpty({0})" />
  668. </class>
  669. </namespace>
  670. <namespace name="System.Diagnostics" Name="System">
  671. <class name="Debug">
  672. <method name="Assert" Template="assert({0}, {1})" />
  673. <method name="Requires" GenericArgCount="0" Template="assert({0}, {1})" />
  674. </class>
  675. </namespace>
  676. <namespace name="System.Diagnostics.Contracts" Name="System">
  677. <class name="Contract">
  678. <method name="Assert" Template="assert({0}, {1})" />
  679. <method name="Assume" Template="assert({0}, {1})" />
  680. <method name="Ensures" Template="assert({0}, {1})" />
  681. </class>
  682. </namespace>
  683. <namespace name="System.Reflection">
  684. <class name="Assembly">
  685. <method name="GetExecutingAssembly" Template="System.GetExecutingAssembly(namespace)" />
  686. <method name="GetType" Name="GetTypeFrom" />
  687. </class>
  688. <class name="MemberInfo">
  689. <method name="op_Inequality" Template="{0} ~= {1}" />
  690. <method name="op_Equality" Template="{0} == {1}" />
  691. </class>
  692. <class name="FieldInfo">
  693. <method name="op_Inequality" Template="{0} ~= {1}" />
  694. <method name="op_Equality" Template="{0} == {1}" />
  695. </class>
  696. <class name="PropertyInfo">
  697. <method name="op_Inequality" Template="{0} ~= {1}" />
  698. <method name="op_Equality" Template="{0} == {1}" />
  699. </class>
  700. <class name="MethodInfo">
  701. <method name="op_Inequality" Template="{0} ~= {1}" />
  702. <method name="op_Equality" Template="{0} == {1}" />
  703. </class>
  704. <class name="MethodBase">
  705. <method name="op_Inequality" Template="{0} ~= {1}" />
  706. <method name="op_Equality" Template="{0} == {1}" />
  707. </class>
  708. </namespace>
  709. <namespace name="System.Text">
  710. <class name="StringBuilder" Name="System.StringBuilder">
  711. <method name="Append" Name="AppendChar" >
  712. <arg type="System.Char" />
  713. </method>
  714. <method name="Append" Name="AppendCharRepeat">
  715. <arg type="System.Char" />
  716. <arg type="System.Int32" />
  717. </method>
  718. </class>
  719. </namespace>
  720. <namespace name="System.Threading" Name="System">
  721. <class name="Thread">
  722. <property name="IsBackground" IsField="true" />
  723. <property name="Name" IsField="true" />
  724. <property name="Priority" IsField="true" />
  725. <property name="ApartmentState" IsField="true" />
  726. <property name="IsThreadPoolThread" IsField="true" />
  727. </class>
  728. <class name="CancellationToken" Readonly="true">
  729. <method name="op_Equality" Template="{0} == {1}" />
  730. <method name="op_Inequality" Template="{0} ~= {1}" />
  731. </class>
  732. <class name="CancellationTokenRegistration" Readonly="true">
  733. <method name="op_Equality" Template="{0} == {1}" />
  734. <method name="op_Inequality" Template="{0} ~= {1}" />
  735. </class>
  736. </namespace>
  737. <namespace name="System.Threading.Tasks" Name="System">
  738. <class name="Task">
  739. <method name="WhenAll" GenericArgCount="0" Template="System.Task.WhenAll(nil, {*0})" />
  740. <method name="WhenAll" GenericArgCount="1" Template="System.Task.WhenAll({`0}, {*0})" />
  741. <method name="WhenAny" IgnoreGeneric="true" />
  742. </class>
  743. <class name="Task`1" IgnoreGeneric="true" />
  744. <class name="TaskCompletionSource`1" IgnoreGeneric="true" />
  745. </namespace>
  746. <namespace name="System.Numerics">
  747. <class name="Complex" Readonly="true">
  748. <method name="op_Addition" Template="{0} + {1}" />
  749. <method name="op_Subtraction" Template="{0} - {1}" />
  750. <method name="op_Multiply" Template="{0} * {1}" />
  751. <method name="op_Division" Template="{0} / {1}" />
  752. <method name="op_UnaryNegation" Template="- {0}" />
  753. <method name="op_Equality" Template="{0} == {1}" />
  754. <method name="op_Inequality" Template="{0} ~= {1}" />
  755. <method name="op_Implicit" Name="ToComplex" />
  756. </class>
  757. </namespace>
  758. <namespace name="System.Runtime.CompilerServices" Name="System" />
  759. </assembly>
  760. </meta>