DynamicMetaObjectBinder.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="DynamicMetaObjectBinder" FullName="System.Dynamic.DynamicMetaObjectBinder">
  3. <TypeSignature Language="C#" Value="public abstract class DynamicMetaObjectBinder : System.Runtime.CompilerServices.CallSiteBinder" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit DynamicMetaObjectBinder extends System.Runtime.CompilerServices.CallSiteBinder" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.Core</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Base>
  10. <BaseTypeName>System.Runtime.CompilerServices.CallSiteBinder</BaseTypeName>
  11. </Base>
  12. <Interfaces />
  13. <Docs>
  14. <remarks>
  15. <attribution license="cc4" from="Microsoft" modified="false" />
  16. <para>The <see cref="T:System.Runtime.CompilerServices.CallSiteBinder" /> performs the binding of the dynamic operation using the runtime values as input. On the other hand, the <see cref="T:System.Dynamic.DynamicMetaObjectBinder" /> participates in the <see cref="T:System.Dynamic.DynamicMetaObject" /> binding protocol.</para>
  17. </remarks>
  18. <summary>
  19. <attribution license="cc4" from="Microsoft" modified="false" />
  20. <para>The dynamic call site binder that participates in the <see cref="T:System.Dynamic.DynamicMetaObject" /> binding protocol.</para>
  21. </summary>
  22. </Docs>
  23. <Members>
  24. <Member MemberName=".ctor">
  25. <MemberSignature Language="C#" Value="protected DynamicMetaObjectBinder ();" />
  26. <MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
  27. <MemberType>Constructor</MemberType>
  28. <AssemblyInfo>
  29. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  30. </AssemblyInfo>
  31. <Parameters />
  32. <Docs>
  33. <remarks>To be added.</remarks>
  34. <summary>
  35. <attribution license="cc4" from="Microsoft" modified="false" />
  36. <para>Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObjectBinder" /> class.</para>
  37. </summary>
  38. </Docs>
  39. </Member>
  40. <Member MemberName="Bind">
  41. <MemberSignature Language="C#" Value="public abstract System.Dynamic.DynamicMetaObject Bind (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args);" />
  42. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Dynamic.DynamicMetaObject Bind(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args) cil managed" />
  43. <MemberType>Method</MemberType>
  44. <AssemblyInfo>
  45. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  46. </AssemblyInfo>
  47. <ReturnValue>
  48. <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
  49. </ReturnValue>
  50. <Parameters>
  51. <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
  52. <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]" />
  53. </Parameters>
  54. <Docs>
  55. <remarks>To be added.</remarks>
  56. <summary>
  57. <attribution license="cc4" from="Microsoft" modified="false" />
  58. <para>When overridden in the derived class, performs the binding of the dynamic operation.</para>
  59. </summary>
  60. <returns>
  61. <attribution license="cc4" from="Microsoft" modified="false" />
  62. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  63. </returns>
  64. <param name="target">
  65. <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic operation.</param>
  66. <param name="args">
  67. <attribution license="cc4" from="Microsoft" modified="false" />An array of arguments of the dynamic operation.</param>
  68. </Docs>
  69. </Member>
  70. <Member MemberName="Bind">
  71. <MemberSignature Language="C#" Value="public override sealed System.Linq.Expressions.Expression Bind (object[] args, System.Collections.ObjectModel.ReadOnlyCollection&lt;System.Linq.Expressions.ParameterExpression&gt; parameters, System.Linq.Expressions.LabelTarget returnLabel);" />
  72. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class System.Linq.Expressions.Expression Bind(object[] args, class System.Collections.ObjectModel.ReadOnlyCollection`1&lt;class System.Linq.Expressions.ParameterExpression&gt; parameters, class System.Linq.Expressions.LabelTarget returnLabel) cil managed" />
  73. <MemberType>Method</MemberType>
  74. <AssemblyInfo>
  75. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  76. </AssemblyInfo>
  77. <ReturnValue>
  78. <ReturnType>System.Linq.Expressions.Expression</ReturnType>
  79. </ReturnValue>
  80. <Parameters>
  81. <Parameter Name="args" Type="System.Object[]" />
  82. <Parameter Name="parameters" Type="System.Collections.ObjectModel.ReadOnlyCollection&lt;System.Linq.Expressions.ParameterExpression&gt;" />
  83. <Parameter Name="returnLabel" Type="System.Linq.Expressions.LabelTarget" />
  84. </Parameters>
  85. <Docs>
  86. <remarks>To be added.</remarks>
  87. <summary>
  88. <attribution license="cc4" from="Microsoft" modified="false" />
  89. <para>Performs the runtime binding of the dynamic operation on a set of arguments.</para>
  90. </summary>
  91. <returns>
  92. <attribution license="cc4" from="Microsoft" modified="false" />
  93. <para>An Expression that performs tests on the dynamic operation arguments, and performs the dynamic operation if the tests are valid. If the tests fail on subsequent occurrences of the dynamic operation, Bind will be called again to produce a new <see cref="T:System.Linq.Expressions.Expression" /> for the new argument types.</para>
  94. </returns>
  95. <param name="args">
  96. <attribution license="cc4" from="Microsoft" modified="false" />An array of arguments to the dynamic operation.</param>
  97. <param name="parameters">
  98. <attribution license="cc4" from="Microsoft" modified="false" />The array of <see cref="T:System.Linq.Expressions.ParameterExpression" /> instances that represent the parameters of the call site in the binding process.</param>
  99. <param name="returnLabel">
  100. <attribution license="cc4" from="Microsoft" modified="false" />A LabelTarget used to return the result of the dynamic binding.</param>
  101. </Docs>
  102. </Member>
  103. <Member MemberName="Defer">
  104. <MemberSignature Language="C#" Value="public System.Dynamic.DynamicMetaObject Defer (System.Dynamic.DynamicMetaObject[] args);" />
  105. <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Dynamic.DynamicMetaObject Defer(class System.Dynamic.DynamicMetaObject[] args) cil managed" />
  106. <MemberType>Method</MemberType>
  107. <AssemblyInfo>
  108. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  109. </AssemblyInfo>
  110. <ReturnValue>
  111. <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
  112. </ReturnValue>
  113. <Parameters>
  114. <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]">
  115. <Attributes>
  116. <Attribute>
  117. <AttributeName>System.ParamArray</AttributeName>
  118. </Attribute>
  119. </Attributes>
  120. </Parameter>
  121. </Parameters>
  122. <Docs>
  123. <remarks>To be added.</remarks>
  124. <summary>
  125. <attribution license="cc4" from="Microsoft" modified="false" />
  126. <para>Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.</para>
  127. </summary>
  128. <returns>
  129. <attribution license="cc4" from="Microsoft" modified="false" />
  130. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  131. </returns>
  132. <param name="args">
  133. <attribution license="cc4" from="Microsoft" modified="false" />An array of arguments of the dynamic operation.</param>
  134. </Docs>
  135. </Member>
  136. <Member MemberName="Defer">
  137. <MemberSignature Language="C#" Value="public System.Dynamic.DynamicMetaObject Defer (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args);" />
  138. <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Dynamic.DynamicMetaObject Defer(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args) cil managed" />
  139. <MemberType>Method</MemberType>
  140. <AssemblyInfo>
  141. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  142. </AssemblyInfo>
  143. <ReturnValue>
  144. <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
  145. </ReturnValue>
  146. <Parameters>
  147. <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
  148. <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]">
  149. <Attributes>
  150. <Attribute>
  151. <AttributeName>System.ParamArray</AttributeName>
  152. </Attribute>
  153. </Attributes>
  154. </Parameter>
  155. </Parameters>
  156. <Docs>
  157. <remarks>To be added.</remarks>
  158. <summary>
  159. <attribution license="cc4" from="Microsoft" modified="false" />
  160. <para>Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.</para>
  161. </summary>
  162. <returns>
  163. <attribution license="cc4" from="Microsoft" modified="false" />
  164. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  165. </returns>
  166. <param name="target">
  167. <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic operation.</param>
  168. <param name="args">
  169. <attribution license="cc4" from="Microsoft" modified="false" />An array of arguments of the dynamic operation.</param>
  170. </Docs>
  171. </Member>
  172. <Member MemberName="GetUpdateExpression">
  173. <MemberSignature Language="C#" Value="public System.Linq.Expressions.Expression GetUpdateExpression (Type type);" />
  174. <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Linq.Expressions.Expression GetUpdateExpression(class System.Type type) cil managed" />
  175. <MemberType>Method</MemberType>
  176. <AssemblyInfo>
  177. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  178. </AssemblyInfo>
  179. <ReturnValue>
  180. <ReturnType>System.Linq.Expressions.Expression</ReturnType>
  181. </ReturnValue>
  182. <Parameters>
  183. <Parameter Name="type" Type="System.Type" />
  184. </Parameters>
  185. <Docs>
  186. <remarks>To be added.</remarks>
  187. <summary>
  188. <attribution license="cc4" from="Microsoft" modified="false" />
  189. <para>Gets an expression that will cause the binding to be updated. It indicates that the expression's binding is no longer valid. This is typically used when the "version" of a dynamic object has changed.</para>
  190. </summary>
  191. <returns>
  192. <attribution license="cc4" from="Microsoft" modified="false" />
  193. <para>The update expression.</para>
  194. </returns>
  195. <param name="type">
  196. <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of the resulting expression; any type is allowed.</param>
  197. </Docs>
  198. </Member>
  199. <Member MemberName="ReturnType">
  200. <MemberSignature Language="C#" Value="public virtual Type ReturnType { get; }" />
  201. <MemberSignature Language="ILAsm" Value=".property instance class System.Type ReturnType" />
  202. <MemberType>Property</MemberType>
  203. <AssemblyInfo>
  204. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  205. </AssemblyInfo>
  206. <ReturnValue>
  207. <ReturnType>System.Type</ReturnType>
  208. </ReturnValue>
  209. <Docs>
  210. <value>To be added.</value>
  211. <remarks>To be added.</remarks>
  212. <summary>
  213. <attribution license="cc4" from="Microsoft" modified="false" />
  214. <para>The result type of the operation.</para>
  215. </summary>
  216. </Docs>
  217. </Member>
  218. </Members>
  219. </Type>