InvokeBinder.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="InvokeBinder" FullName="System.Dynamic.InvokeBinder">
  3. <TypeSignature Language="C#" Value="public abstract class InvokeBinder : System.Dynamic.DynamicMetaObjectBinder" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit InvokeBinder extends System.Dynamic.DynamicMetaObjectBinder" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.Core</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Base>
  10. <BaseTypeName>System.Dynamic.DynamicMetaObjectBinder</BaseTypeName>
  11. </Base>
  12. <Interfaces />
  13. <Docs>
  14. <remarks>To be added.</remarks>
  15. <summary>
  16. <attribution license="cc4" from="Microsoft" modified="false" />
  17. <para>Represents the invoke dynamic operation at the call site, providing the binding semantic and the details about the operation.</para>
  18. </summary>
  19. </Docs>
  20. <Members>
  21. <Member MemberName=".ctor">
  22. <MemberSignature Language="C#" Value="protected InvokeBinder (System.Dynamic.CallInfo callInfo);" />
  23. <MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Dynamic.CallInfo callInfo) cil managed" />
  24. <MemberType>Constructor</MemberType>
  25. <AssemblyInfo>
  26. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  27. </AssemblyInfo>
  28. <Parameters>
  29. <Parameter Name="callInfo" Type="System.Dynamic.CallInfo" />
  30. </Parameters>
  31. <Docs>
  32. <remarks>To be added.</remarks>
  33. <summary>
  34. <attribution license="cc4" from="Microsoft" modified="false" />
  35. <para>Initializes a new instance of the <see cref="T:System.Dynamic.InvokeBinder" />.</para>
  36. </summary>
  37. <param name="callInfo">
  38. <attribution license="cc4" from="Microsoft" modified="false" />The signature of the arguments at the call site.</param>
  39. </Docs>
  40. </Member>
  41. <Member MemberName="Bind">
  42. <MemberSignature Language="C#" Value="public override sealed System.Dynamic.DynamicMetaObject Bind (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args);" />
  43. <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class System.Dynamic.DynamicMetaObject Bind(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args) cil managed" />
  44. <MemberType>Method</MemberType>
  45. <AssemblyInfo>
  46. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  47. </AssemblyInfo>
  48. <ReturnValue>
  49. <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
  50. </ReturnValue>
  51. <Parameters>
  52. <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
  53. <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]" />
  54. </Parameters>
  55. <Docs>
  56. <remarks>To be added.</remarks>
  57. <summary>
  58. <attribution license="cc4" from="Microsoft" modified="false" />
  59. <para>Performs the binding of the dynamic invoke operation.</para>
  60. </summary>
  61. <returns>
  62. <attribution license="cc4" from="Microsoft" modified="false" />
  63. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  64. </returns>
  65. <param name="target">
  66. <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic invoke operation.</param>
  67. <param name="args">
  68. <attribution license="cc4" from="Microsoft" modified="false" />An array of arguments of the dynamic invoke operation.</param>
  69. </Docs>
  70. </Member>
  71. <Member MemberName="CallInfo">
  72. <MemberSignature Language="C#" Value="public System.Dynamic.CallInfo CallInfo { get; }" />
  73. <MemberSignature Language="ILAsm" Value=".property instance class System.Dynamic.CallInfo CallInfo" />
  74. <MemberType>Property</MemberType>
  75. <AssemblyInfo>
  76. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  77. </AssemblyInfo>
  78. <ReturnValue>
  79. <ReturnType>System.Dynamic.CallInfo</ReturnType>
  80. </ReturnValue>
  81. <Docs>
  82. <value>To be added.</value>
  83. <remarks>To be added.</remarks>
  84. <summary>
  85. <attribution license="cc4" from="Microsoft" modified="false" />
  86. <para>Gets the signature of the arguments at the call site.</para>
  87. </summary>
  88. </Docs>
  89. </Member>
  90. <Member MemberName="FallbackInvoke">
  91. <MemberSignature Language="C#" Value="public System.Dynamic.DynamicMetaObject FallbackInvoke (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args);" />
  92. <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Dynamic.DynamicMetaObject FallbackInvoke(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args) cil managed" />
  93. <MemberType>Method</MemberType>
  94. <AssemblyInfo>
  95. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  96. </AssemblyInfo>
  97. <ReturnValue>
  98. <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
  99. </ReturnValue>
  100. <Parameters>
  101. <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
  102. <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]" />
  103. </Parameters>
  104. <Docs>
  105. <remarks>To be added.</remarks>
  106. <summary>
  107. <attribution license="cc4" from="Microsoft" modified="false" />
  108. <para>Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.</para>
  109. </summary>
  110. <returns>
  111. <attribution license="cc4" from="Microsoft" modified="false" />
  112. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  113. </returns>
  114. <param name="target">
  115. <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic invoke operation.</param>
  116. <param name="args">
  117. <attribution license="cc4" from="Microsoft" modified="false" />The arguments of the dynamic invoke operation.</param>
  118. </Docs>
  119. </Member>
  120. <Member MemberName="FallbackInvoke">
  121. <MemberSignature Language="C#" Value="public abstract System.Dynamic.DynamicMetaObject FallbackInvoke (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args, System.Dynamic.DynamicMetaObject errorSuggestion);" />
  122. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Dynamic.DynamicMetaObject FallbackInvoke(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args, class System.Dynamic.DynamicMetaObject errorSuggestion) cil managed" />
  123. <MemberType>Method</MemberType>
  124. <AssemblyInfo>
  125. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  126. </AssemblyInfo>
  127. <ReturnValue>
  128. <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
  129. </ReturnValue>
  130. <Parameters>
  131. <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
  132. <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]" />
  133. <Parameter Name="errorSuggestion" Type="System.Dynamic.DynamicMetaObject" />
  134. </Parameters>
  135. <Docs>
  136. <remarks>To be added.</remarks>
  137. <summary>
  138. <attribution license="cc4" from="Microsoft" modified="false" />
  139. <para>Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.</para>
  140. </summary>
  141. <returns>
  142. <attribution license="cc4" from="Microsoft" modified="false" />
  143. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  144. </returns>
  145. <param name="target">
  146. <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic invoke operation.</param>
  147. <param name="args">
  148. <attribution license="cc4" from="Microsoft" modified="false" />The arguments of the dynamic invoke operation.</param>
  149. <param name="errorSuggestion">
  150. <attribution license="cc4" from="Microsoft" modified="false" />The binding result to use if binding fails, or null.</param>
  151. </Docs>
  152. </Member>
  153. <Member MemberName="ReturnType">
  154. <MemberSignature Language="C#" Value="public override sealed Type ReturnType { get; }" />
  155. <MemberSignature Language="ILAsm" Value=".property instance class System.Type ReturnType" />
  156. <MemberType>Property</MemberType>
  157. <AssemblyInfo>
  158. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  159. </AssemblyInfo>
  160. <ReturnValue>
  161. <ReturnType>System.Type</ReturnType>
  162. </ReturnValue>
  163. <Docs>
  164. <value>To be added.</value>
  165. <remarks>To be added.</remarks>
  166. <summary>
  167. <attribution license="cc4" from="Microsoft" modified="false" />
  168. <para>The result type of the operation.</para>
  169. </summary>
  170. </Docs>
  171. </Member>
  172. </Members>
  173. </Type>