SetIndexBinder.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="SetIndexBinder" FullName="System.Dynamic.SetIndexBinder">
  3. <TypeSignature Language="C#" Value="public abstract class SetIndexBinder : System.Dynamic.DynamicMetaObjectBinder" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit SetIndexBinder 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 dynamic set index 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 SetIndexBinder (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.SetIndexBinder" />.</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 set index 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 set index operation.</param>
  67. <param name="args">
  68. <attribution license="cc4" from="Microsoft" modified="false" />An array of arguments of the dynamic set index 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="FallbackSetIndex">
  91. <MemberSignature Language="C#" Value="public System.Dynamic.DynamicMetaObject FallbackSetIndex (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] indexes, System.Dynamic.DynamicMetaObject value);" />
  92. <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Dynamic.DynamicMetaObject FallbackSetIndex(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] indexes, class System.Dynamic.DynamicMetaObject value) 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="indexes" Type="System.Dynamic.DynamicMetaObject[]" />
  103. <Parameter Name="value" Type="System.Dynamic.DynamicMetaObject" />
  104. </Parameters>
  105. <Docs>
  106. <remarks>To be added.</remarks>
  107. <summary>
  108. <attribution license="cc4" from="Microsoft" modified="false" />
  109. <para>Performs the binding of the dynamic set index operation if the target dynamic object cannot bind.</para>
  110. </summary>
  111. <returns>
  112. <attribution license="cc4" from="Microsoft" modified="false" />
  113. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  114. </returns>
  115. <param name="target">
  116. <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic set index operation.</param>
  117. <param name="indexes">
  118. <attribution license="cc4" from="Microsoft" modified="false" />The arguments of the dynamic set index operation.</param>
  119. <param name="value">
  120. <attribution license="cc4" from="Microsoft" modified="false" />The value to set to the collection.</param>
  121. </Docs>
  122. </Member>
  123. <Member MemberName="FallbackSetIndex">
  124. <MemberSignature Language="C#" Value="public abstract System.Dynamic.DynamicMetaObject FallbackSetIndex (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] indexes, System.Dynamic.DynamicMetaObject value, System.Dynamic.DynamicMetaObject errorSuggestion);" />
  125. <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Dynamic.DynamicMetaObject FallbackSetIndex(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] indexes, class System.Dynamic.DynamicMetaObject value, class System.Dynamic.DynamicMetaObject errorSuggestion) cil managed" />
  126. <MemberType>Method</MemberType>
  127. <AssemblyInfo>
  128. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  129. </AssemblyInfo>
  130. <ReturnValue>
  131. <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
  132. </ReturnValue>
  133. <Parameters>
  134. <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
  135. <Parameter Name="indexes" Type="System.Dynamic.DynamicMetaObject[]" />
  136. <Parameter Name="value" Type="System.Dynamic.DynamicMetaObject" />
  137. <Parameter Name="errorSuggestion" Type="System.Dynamic.DynamicMetaObject" />
  138. </Parameters>
  139. <Docs>
  140. <remarks>To be added.</remarks>
  141. <summary>
  142. <attribution license="cc4" from="Microsoft" modified="false" />
  143. <para>When overridden in the derived class, performs the binding of the dynamic set index operation if the target dynamic object cannot bind.</para>
  144. </summary>
  145. <returns>
  146. <attribution license="cc4" from="Microsoft" modified="false" />
  147. <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
  148. </returns>
  149. <param name="target">
  150. <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic set index operation.</param>
  151. <param name="indexes">
  152. <attribution license="cc4" from="Microsoft" modified="false" />The arguments of the dynamic set index operation.</param>
  153. <param name="value">
  154. <attribution license="cc4" from="Microsoft" modified="false" />The value to set to the collection.</param>
  155. <param name="errorSuggestion">
  156. <attribution license="cc4" from="Microsoft" modified="false" />The binding result to use if binding fails, or null.</param>
  157. </Docs>
  158. </Member>
  159. <Member MemberName="ReturnType">
  160. <MemberSignature Language="C#" Value="public override sealed Type ReturnType { get; }" />
  161. <MemberSignature Language="ILAsm" Value=".property instance class System.Type ReturnType" />
  162. <MemberType>Property</MemberType>
  163. <AssemblyInfo>
  164. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  165. </AssemblyInfo>
  166. <ReturnValue>
  167. <ReturnType>System.Type</ReturnType>
  168. </ReturnValue>
  169. <Docs>
  170. <value>To be added.</value>
  171. <remarks>To be added.</remarks>
  172. <summary>
  173. <attribution license="cc4" from="Microsoft" modified="false" />
  174. <para>The result type of the operation.</para>
  175. </summary>
  176. </Docs>
  177. </Member>
  178. </Members>
  179. </Type>