RuntimeOps.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="RuntimeOps" FullName="System.Runtime.CompilerServices.RuntimeOps">
  3. <TypeSignature Language="C#" Value="public static class RuntimeOps" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit RuntimeOps extends System.Object" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.Core</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Base>
  10. <BaseTypeName>System.Object</BaseTypeName>
  11. </Base>
  12. <Interfaces />
  13. <Attributes>
  14. <Attribute>
  15. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  16. </Attribute>
  17. <Attribute>
  18. <AttributeName>System.Diagnostics.DebuggerStepThrough</AttributeName>
  19. </Attribute>
  20. </Attributes>
  21. <Docs>
  22. <remarks>To be added.</remarks>
  23. <summary>
  24. <attribution license="cc4" from="Microsoft" modified="false" />
  25. <para>Contains helper methods called from dynamically generated methods.</para>
  26. </summary>
  27. </Docs>
  28. <Members>
  29. <Member MemberName="CreateRuntimeVariables">
  30. <MemberSignature Language="C#" Value="public static System.Runtime.CompilerServices.IRuntimeVariables CreateRuntimeVariables ();" />
  31. <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Runtime.CompilerServices.IRuntimeVariables CreateRuntimeVariables() cil managed" />
  32. <MemberType>Method</MemberType>
  33. <AssemblyInfo>
  34. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  35. </AssemblyInfo>
  36. <Attributes>
  37. <Attribute>
  38. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  39. </Attribute>
  40. <Attribute>
  41. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  42. </Attribute>
  43. </Attributes>
  44. <ReturnValue>
  45. <ReturnType>System.Runtime.CompilerServices.IRuntimeVariables</ReturnType>
  46. </ReturnValue>
  47. <Parameters />
  48. <Docs>
  49. <remarks>To be added.</remarks>
  50. <summary>
  51. <attribution license="cc4" from="Microsoft" modified="false" />
  52. <para>Creates an interface that can be used to modify closed over variables at runtime.</para>
  53. </summary>
  54. <returns>
  55. <attribution license="cc4" from="Microsoft" modified="false" />
  56. <para>An interface to access variables.</para>
  57. </returns>
  58. </Docs>
  59. </Member>
  60. <Member MemberName="CreateRuntimeVariables">
  61. <MemberSignature Language="C#" Value="public static System.Runtime.CompilerServices.IRuntimeVariables CreateRuntimeVariables (object[] data, long[] indexes);" />
  62. <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Runtime.CompilerServices.IRuntimeVariables CreateRuntimeVariables(object[] data, int64[] indexes) cil managed" />
  63. <MemberType>Method</MemberType>
  64. <AssemblyInfo>
  65. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  66. </AssemblyInfo>
  67. <Attributes>
  68. <Attribute>
  69. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  70. </Attribute>
  71. <Attribute>
  72. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  73. </Attribute>
  74. </Attributes>
  75. <ReturnValue>
  76. <ReturnType>System.Runtime.CompilerServices.IRuntimeVariables</ReturnType>
  77. </ReturnValue>
  78. <Parameters>
  79. <Parameter Name="data" Type="System.Object[]" />
  80. <Parameter Name="indexes" Type="System.Int64[]" />
  81. </Parameters>
  82. <Docs>
  83. <remarks>To be added.</remarks>
  84. <summary>
  85. <attribution license="cc4" from="Microsoft" modified="false" />
  86. <para>Creates an interface that can be used to modify closed over variables at runtime.</para>
  87. </summary>
  88. <returns>
  89. <attribution license="cc4" from="Microsoft" modified="false" />
  90. <para>An interface to access variables.</para>
  91. </returns>
  92. <param name="data">
  93. <attribution license="cc4" from="Microsoft" modified="false" />The closure array.</param>
  94. <param name="indexes">
  95. <attribution license="cc4" from="Microsoft" modified="false" />An array of indicies into the closure array where variables are found.</param>
  96. </Docs>
  97. </Member>
  98. <Member MemberName="ExpandoCheckVersion">
  99. <MemberSignature Language="C#" Value="public static bool ExpandoCheckVersion (System.Dynamic.ExpandoObject expando, object version);" />
  100. <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool ExpandoCheckVersion(class System.Dynamic.ExpandoObject expando, object version) cil managed" />
  101. <MemberType>Method</MemberType>
  102. <AssemblyInfo>
  103. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  104. </AssemblyInfo>
  105. <Attributes>
  106. <Attribute>
  107. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  108. </Attribute>
  109. <Attribute>
  110. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  111. </Attribute>
  112. </Attributes>
  113. <ReturnValue>
  114. <ReturnType>System.Boolean</ReturnType>
  115. </ReturnValue>
  116. <Parameters>
  117. <Parameter Name="expando" Type="System.Dynamic.ExpandoObject" />
  118. <Parameter Name="version" Type="System.Object" />
  119. </Parameters>
  120. <Docs>
  121. <remarks>To be added.</remarks>
  122. <summary>
  123. <attribution license="cc4" from="Microsoft" modified="false" />
  124. <para>Checks the version of the Expando object.</para>
  125. </summary>
  126. <returns>
  127. <attribution license="cc4" from="Microsoft" modified="false" />
  128. <para>Returns true if the version is equal; otherwise, false.</para>
  129. </returns>
  130. <param name="expando">
  131. <attribution license="cc4" from="Microsoft" modified="false" />The Expando object.</param>
  132. <param name="version">
  133. <attribution license="cc4" from="Microsoft" modified="false" />The version to check.</param>
  134. </Docs>
  135. </Member>
  136. <Member MemberName="ExpandoPromoteClass">
  137. <MemberSignature Language="C#" Value="public static void ExpandoPromoteClass (System.Dynamic.ExpandoObject expando, object oldClass, object newClass);" />
  138. <MemberSignature Language="ILAsm" Value=".method public static hidebysig void ExpandoPromoteClass(class System.Dynamic.ExpandoObject expando, object oldClass, object newClass) cil managed" />
  139. <MemberType>Method</MemberType>
  140. <AssemblyInfo>
  141. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  142. </AssemblyInfo>
  143. <Attributes>
  144. <Attribute>
  145. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  146. </Attribute>
  147. <Attribute>
  148. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  149. </Attribute>
  150. </Attributes>
  151. <ReturnValue>
  152. <ReturnType>System.Void</ReturnType>
  153. </ReturnValue>
  154. <Parameters>
  155. <Parameter Name="expando" Type="System.Dynamic.ExpandoObject" />
  156. <Parameter Name="oldClass" Type="System.Object" />
  157. <Parameter Name="newClass" Type="System.Object" />
  158. </Parameters>
  159. <Docs>
  160. <remarks>To be added.</remarks>
  161. <summary>
  162. <attribution license="cc4" from="Microsoft" modified="false" />
  163. <para>Promotes an Expando object from one class to a new class.</para>
  164. </summary>
  165. <param name="expando">
  166. <attribution license="cc4" from="Microsoft" modified="false" />The Expando object.</param>
  167. <param name="oldClass">
  168. <attribution license="cc4" from="Microsoft" modified="false" />The old class of the Expando object.</param>
  169. <param name="newClass">
  170. <attribution license="cc4" from="Microsoft" modified="false" />The new class of the Expando object.</param>
  171. </Docs>
  172. </Member>
  173. <Member MemberName="ExpandoTryDeleteValue">
  174. <MemberSignature Language="C#" Value="public static bool ExpandoTryDeleteValue (System.Dynamic.ExpandoObject expando, object indexClass, int index, string name, bool ignoreCase);" />
  175. <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool ExpandoTryDeleteValue(class System.Dynamic.ExpandoObject expando, object indexClass, int32 index, string name, bool ignoreCase) cil managed" />
  176. <MemberType>Method</MemberType>
  177. <AssemblyInfo>
  178. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  179. </AssemblyInfo>
  180. <Attributes>
  181. <Attribute>
  182. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  183. </Attribute>
  184. <Attribute>
  185. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  186. </Attribute>
  187. </Attributes>
  188. <ReturnValue>
  189. <ReturnType>System.Boolean</ReturnType>
  190. </ReturnValue>
  191. <Parameters>
  192. <Parameter Name="expando" Type="System.Dynamic.ExpandoObject" />
  193. <Parameter Name="indexClass" Type="System.Object" />
  194. <Parameter Name="index" Type="System.Int32" />
  195. <Parameter Name="name" Type="System.String" />
  196. <Parameter Name="ignoreCase" Type="System.Boolean" />
  197. </Parameters>
  198. <Docs>
  199. <remarks>To be added.</remarks>
  200. <summary>
  201. <attribution license="cc4" from="Microsoft" modified="false" />
  202. <para>Deletes the value of an item in an expando object.</para>
  203. </summary>
  204. <returns>
  205. <attribution license="cc4" from="Microsoft" modified="false" />
  206. <para>true if the item was successfully removed; otherwise, false.</para>
  207. </returns>
  208. <param name="expando">
  209. <attribution license="cc4" from="Microsoft" modified="false" />The expando object.</param>
  210. <param name="indexClass">
  211. <attribution license="cc4" from="Microsoft" modified="false" />The class of the expando object.</param>
  212. <param name="index">
  213. <attribution license="cc4" from="Microsoft" modified="false" />The index of the member.</param>
  214. <param name="name">
  215. <attribution license="cc4" from="Microsoft" modified="false" />The name of the member.</param>
  216. <param name="ignoreCase">
  217. <attribution license="cc4" from="Microsoft" modified="false" />true if the name should be matched ignoring case; false otherwise.</param>
  218. </Docs>
  219. </Member>
  220. <Member MemberName="ExpandoTryGetValue">
  221. <MemberSignature Language="C#" Value="public static bool ExpandoTryGetValue (System.Dynamic.ExpandoObject expando, object indexClass, int index, string name, bool ignoreCase, out object value);" />
  222. <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool ExpandoTryGetValue(class System.Dynamic.ExpandoObject expando, object indexClass, int32 index, string name, bool ignoreCase, object value) cil managed" />
  223. <MemberType>Method</MemberType>
  224. <AssemblyInfo>
  225. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  226. </AssemblyInfo>
  227. <Attributes>
  228. <Attribute>
  229. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  230. </Attribute>
  231. <Attribute>
  232. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  233. </Attribute>
  234. </Attributes>
  235. <ReturnValue>
  236. <ReturnType>System.Boolean</ReturnType>
  237. </ReturnValue>
  238. <Parameters>
  239. <Parameter Name="expando" Type="System.Dynamic.ExpandoObject" />
  240. <Parameter Name="indexClass" Type="System.Object" />
  241. <Parameter Name="index" Type="System.Int32" />
  242. <Parameter Name="name" Type="System.String" />
  243. <Parameter Name="ignoreCase" Type="System.Boolean" />
  244. <Parameter Name="value" Type="System.Object&amp;" RefType="out" />
  245. </Parameters>
  246. <Docs>
  247. <param name="expando">To be added.</param>
  248. <param name="indexClass">To be added.</param>
  249. <param name="index">To be added.</param>
  250. <param name="name">To be added.</param>
  251. <param name="ignoreCase">To be added.</param>
  252. <param name="value">To be added.</param>
  253. <summary>To be added.</summary>
  254. <returns>To be added.</returns>
  255. <remarks>To be added.</remarks>
  256. </Docs>
  257. </Member>
  258. <Member MemberName="ExpandoTrySetValue">
  259. <MemberSignature Language="C#" Value="public static object ExpandoTrySetValue (System.Dynamic.ExpandoObject expando, object indexClass, int index, object value, string name, bool ignoreCase);" />
  260. <MemberSignature Language="ILAsm" Value=".method public static hidebysig object ExpandoTrySetValue(class System.Dynamic.ExpandoObject expando, object indexClass, int32 index, object value, string name, bool ignoreCase) cil managed" />
  261. <MemberType>Method</MemberType>
  262. <AssemblyInfo>
  263. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  264. </AssemblyInfo>
  265. <Attributes>
  266. <Attribute>
  267. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  268. </Attribute>
  269. <Attribute>
  270. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  271. </Attribute>
  272. </Attributes>
  273. <ReturnValue>
  274. <ReturnType>System.Object</ReturnType>
  275. </ReturnValue>
  276. <Parameters>
  277. <Parameter Name="expando" Type="System.Dynamic.ExpandoObject" />
  278. <Parameter Name="indexClass" Type="System.Object" />
  279. <Parameter Name="index" Type="System.Int32" />
  280. <Parameter Name="value" Type="System.Object" />
  281. <Parameter Name="name" Type="System.String" />
  282. <Parameter Name="ignoreCase" Type="System.Boolean" />
  283. </Parameters>
  284. <Docs>
  285. <remarks>To be added.</remarks>
  286. <summary>
  287. <attribution license="cc4" from="Microsoft" modified="false" />
  288. <para>Sets the value of an item in an expando object.</para>
  289. </summary>
  290. <returns>
  291. <attribution license="cc4" from="Microsoft" modified="false" />
  292. <para>Returns the index for the set member.</para>
  293. </returns>
  294. <param name="expando">
  295. <attribution license="cc4" from="Microsoft" modified="false" />The expando object.</param>
  296. <param name="indexClass">
  297. <attribution license="cc4" from="Microsoft" modified="false" />The class of the expando object.</param>
  298. <param name="index">
  299. <attribution license="cc4" from="Microsoft" modified="false" />The index of the member.</param>
  300. <param name="value">
  301. <attribution license="cc4" from="Microsoft" modified="false" />The value of the member.</param>
  302. <param name="name">
  303. <attribution license="cc4" from="Microsoft" modified="false" />The name of the member.</param>
  304. <param name="ignoreCase">
  305. <attribution license="cc4" from="Microsoft" modified="false" />true if the name should be matched ignoring case; false otherwise.</param>
  306. </Docs>
  307. </Member>
  308. <Member MemberName="MergeRuntimeVariables">
  309. <MemberSignature Language="C#" Value="public static System.Runtime.CompilerServices.IRuntimeVariables MergeRuntimeVariables (System.Runtime.CompilerServices.IRuntimeVariables first, System.Runtime.CompilerServices.IRuntimeVariables second, int[] indexes);" />
  310. <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Runtime.CompilerServices.IRuntimeVariables MergeRuntimeVariables(class System.Runtime.CompilerServices.IRuntimeVariables first, class System.Runtime.CompilerServices.IRuntimeVariables second, int32[] indexes) cil managed" />
  311. <MemberType>Method</MemberType>
  312. <AssemblyInfo>
  313. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  314. </AssemblyInfo>
  315. <Attributes>
  316. <Attribute>
  317. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  318. </Attribute>
  319. <Attribute>
  320. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  321. </Attribute>
  322. </Attributes>
  323. <ReturnValue>
  324. <ReturnType>System.Runtime.CompilerServices.IRuntimeVariables</ReturnType>
  325. </ReturnValue>
  326. <Parameters>
  327. <Parameter Name="first" Type="System.Runtime.CompilerServices.IRuntimeVariables" />
  328. <Parameter Name="second" Type="System.Runtime.CompilerServices.IRuntimeVariables" />
  329. <Parameter Name="indexes" Type="System.Int32[]" />
  330. </Parameters>
  331. <Docs>
  332. <remarks>To be added.</remarks>
  333. <summary>
  334. <attribution license="cc4" from="Microsoft" modified="false" />
  335. <para>Combines two runtime variable lists and returns a new list.</para>
  336. </summary>
  337. <returns>
  338. <attribution license="cc4" from="Microsoft" modified="false" />
  339. <para>The merged runtime variables.</para>
  340. </returns>
  341. <param name="first">
  342. <attribution license="cc4" from="Microsoft" modified="false" />The first list.</param>
  343. <param name="second">
  344. <attribution license="cc4" from="Microsoft" modified="false" />The second list.</param>
  345. <param name="indexes">
  346. <attribution license="cc4" from="Microsoft" modified="false" />The index array indicating which list to get variables from.</param>
  347. </Docs>
  348. </Member>
  349. <Member MemberName="Quote">
  350. <MemberSignature Language="C#" Value="public static System.Linq.Expressions.Expression Quote (System.Linq.Expressions.Expression expression, object hoistedLocals, object[] locals);" />
  351. <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Linq.Expressions.Expression Quote(class System.Linq.Expressions.Expression expression, object hoistedLocals, object[] locals) cil managed" />
  352. <MemberType>Method</MemberType>
  353. <AssemblyInfo>
  354. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  355. </AssemblyInfo>
  356. <Attributes>
  357. <Attribute>
  358. <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
  359. </Attribute>
  360. <Attribute>
  361. <AttributeName>System.Obsolete("do not use this method", true)</AttributeName>
  362. </Attribute>
  363. </Attributes>
  364. <ReturnValue>
  365. <ReturnType>System.Linq.Expressions.Expression</ReturnType>
  366. </ReturnValue>
  367. <Parameters>
  368. <Parameter Name="expression" Type="System.Linq.Expressions.Expression" />
  369. <Parameter Name="hoistedLocals" Type="System.Object" />
  370. <Parameter Name="locals" Type="System.Object[]" />
  371. </Parameters>
  372. <Docs>
  373. <remarks>To be added.</remarks>
  374. <summary>
  375. <attribution license="cc4" from="Microsoft" modified="false" />
  376. <para>Quotes the provided expression tree.</para>
  377. </summary>
  378. <returns>
  379. <attribution license="cc4" from="Microsoft" modified="false" />
  380. <para>The quoted expression.</para>
  381. </returns>
  382. <param name="expression">
  383. <attribution license="cc4" from="Microsoft" modified="false" />The expression to quote.</param>
  384. <param name="hoistedLocals">
  385. <attribution license="cc4" from="Microsoft" modified="false" />The hoisted local state provided by the compiler.</param>
  386. <param name="locals">
  387. <attribution license="cc4" from="Microsoft" modified="false" />The actual hoisted local values.</param>
  388. </Docs>
  389. </Member>
  390. </Members>
  391. </Type>