Release 4.0.0-preview1-00304
[platform/core/csapi/tizenfx.git] / pkg / build / tizen40 / ref / System.Dynamic.Runtime.xml
1 <?xml version="1.0" encoding="utf-8"?><span>
2 <doc>
3   <assembly>
4     <name>System.Dynamic.Runtime</name>
5   </assembly>
6   <members>
7     <member name="T:System.Runtime.CompilerServices.CallSite`1">
8       <summary>Dynamic site type.</summary>
9       <typeparam name="T">The delegate type.</typeparam>
10     </member>
11     <member name="M:System.Runtime.CompilerServices.CallSite`1.Create(System.Runtime.CompilerServices.CallSiteBinder)">
12       <summary>Creates an instance of the dynamic call site, initialized with the binder responsible for the runtime binding of the dynamic operations at this call site.</summary>
13       <param name="binder">The binder responsible for the runtime binding of the dynamic operations at this call site.</param>
14       <returns>The new instance of dynamic call site.</returns>
15     </member>
16     <member name="F:System.Runtime.CompilerServices.CallSite`1.Target">
17       <summary>The Level 0 cache - a delegate specialized based on the site history.</summary>
18       <returns></returns>
19     </member>
20     <member name="P:System.Runtime.CompilerServices.CallSite`1.Update">
21       <summary>The update delegate. Called when the dynamic site experiences cache miss.</summary>
22       <returns>The update delegate.</returns>
23     </member>
24     <member name="T:System.Runtime.CompilerServices.CallSite">
25       <summary>A dynamic call site base class. This type is used as a parameter type to the dynamic site targets.</summary>
26     </member>
27     <member name="P:System.Runtime.CompilerServices.CallSite.Binder">
28       <summary>Class responsible for binding dynamic operations on the dynamic site.</summary>
29       <returns>The <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see> object responsible for binding dynamic operations.</returns>
30     </member>
31     <member name="M:System.Runtime.CompilerServices.CallSite.Create(System.Type,System.Runtime.CompilerServices.CallSiteBinder)">
32       <summary>Creates a call site with the given delegate type and binder.</summary>
33       <param name="delegateType">The call site delegate type.</param>
34       <param name="binder">The call site binder.</param>
35       <returns>The new call site.</returns>
36     </member>
37     <member name="T:System.Runtime.CompilerServices.CallSiteBinder">
38       <summary>Class responsible for runtime binding of the dynamic operations on the dynamic call site.</summary>
39     </member>
40     <member name="M:System.Runtime.CompilerServices.CallSiteBinder.#ctor">
41       <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see> class.</summary>
42     </member>
43     <member name="M:System.Runtime.CompilerServices.CallSiteBinder.Bind(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection{System.Linq.Expressions.ParameterExpression},System.Linq.Expressions.LabelTarget)">
44       <summary>Performs the runtime binding of the dynamic operation on a set of arguments.</summary>
45       <param name="args">An array of arguments to the dynamic operation.</param>
46       <param name="parameters">The array of <see cref="T:System.Linq.Expressions.ParameterExpression"></see> instances that represent the parameters of the call site in the binding process.</param>
47       <param name="returnLabel">A LabelTarget used to return the result of the dynamic binding.</param>
48       <returns>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"></see> for the new argument types.</returns>
49     </member>
50     <member name="M:System.Runtime.CompilerServices.CallSiteBinder.BindDelegate``1(System.Runtime.CompilerServices.CallSite{``0},System.Object[])">
51       <summary>Provides low-level runtime binding support. Classes can override this and provide a direct delegate for the implementation of rule. This can enable saving rules to disk, having specialized rules available at runtime, or providing a different caching policy.</summary>
52       <param name="site">The CallSite the bind is being performed for.</param>
53       <param name="args">The arguments for the binder.</param>
54       <typeparam name="T">The target type of the CallSite.</typeparam>
55       <returns>A new delegate which replaces the CallSite Target.</returns>
56     </member>
57     <member name="M:System.Runtime.CompilerServices.CallSiteBinder.CacheTarget``1(``0)">
58       <summary>Adds a target to the cache of known targets. The cached targets will be scanned before calling BindDelegate to produce the new rule.</summary>
59       <param name="target">The target delegate to be added to the cache.</param>
60       <typeparam name="T">The type of target being added.</typeparam>
61     </member>
62     <member name="P:System.Runtime.CompilerServices.CallSiteBinder.UpdateLabel">
63       <summary>Gets a label that can be used to cause the binding to be updated. It indicates that the expression's binding is no longer valid. This is typically used when the &quot;version&quot; of a dynamic object has changed.</summary>
64       <returns>The <see cref="T:System.Linq.Expressions.LabelTarget"></see> object representing a label that can be used to trigger the binding update.</returns>
65     </member>
66     <member name="T:System.Runtime.CompilerServices.CallSiteHelpers">
67       <summary>Class that contains helper methods for DLR CallSites.</summary>
68     </member>
69     <member name="M:System.Runtime.CompilerServices.CallSiteHelpers.IsInternalFrame(System.Reflection.MethodBase)">
70       <summary>Checks if a <see cref="T:System.Reflection.MethodBase"></see> is internally used by DLR and should not be displayed on the language code's stack.</summary>
71       <param name="mb">The input <see cref="T:System.Reflection.MethodBase"></see></param>
72       <returns>True if the input <see cref="T:System.Reflection.MethodBase"></see> is internally used by DLR and should not be displayed on the language code's stack. Otherwise, false.</returns>
73     </member>
74     <member name="T:System.Runtime.CompilerServices.DynamicAttribute">
75       <summary>Indicates that the use of <see cref="T:System.Object"></see> on a member is meant to be treated as a dynamically dispatched type.</summary>
76     </member>
77     <member name="M:System.Runtime.CompilerServices.DynamicAttribute.#ctor">
78       <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DynamicAttribute"></see> class.</summary>
79     </member>
80     <member name="M:System.Runtime.CompilerServices.DynamicAttribute.#ctor(System.Boolean[])">
81       <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.DynamicAttribute"></see> class.</summary>
82       <param name="transformFlags">Specifies, in a prefix traversal of a type's construction, which <see cref="T:System.Object"></see> occurrences are meant to be treated as a dynamically dispatched type.</param>
83     </member>
84     <member name="P:System.Runtime.CompilerServices.DynamicAttribute.TransformFlags">
85       <summary>Specifies, in a prefix traversal of a type's construction, which <see cref="T:System.Object"></see> occurrences are meant to be treated as a dynamically dispatched type.</summary>
86       <returns>The list of <see cref="T:System.Object"></see> occurrences that are meant to be treated as a dynamically dispatched type.</returns>
87     </member>
88     <member name="T:System.Dynamic.BinaryOperationBinder">
89       <summary>Represents the binary dynamic operation at the call site, providing the binding semantic and the details about the operation.</summary>
90     </member>
91     <member name="M:System.Dynamic.BinaryOperationBinder.#ctor(System.Linq.Expressions.ExpressionType)">
92       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.BinaryOperationBinder"></see> class.</summary>
93       <param name="operation">The binary operation kind.</param>
94     </member>
95     <member name="M:System.Dynamic.BinaryOperationBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
96       <summary>Performs the binding of the dynamic binary operation.</summary>
97       <param name="target">The target of the dynamic operation.</param>
98       <param name="args">An array of arguments of the dynamic operation.</param>
99       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
100     </member>
101     <member name="M:System.Dynamic.BinaryOperationBinder.FallbackBinaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
102       <summary>Performs the binding of the binary dynamic operation if the target dynamic object cannot bind.</summary>
103       <param name="target">The target of the dynamic binary operation.</param>
104       <param name="arg">The right hand side operand of the dynamic binary operation.</param>
105       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
106     </member>
107     <member name="M:System.Dynamic.BinaryOperationBinder.FallbackBinaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
108       <summary>When overridden in the derived class, performs the binding of the binary dynamic operation if the target dynamic object cannot bind.</summary>
109       <param name="target">The target of the dynamic binary operation.</param>
110       <param name="arg">The right hand side operand of the dynamic binary operation.</param>
111       <param name="errorSuggestion">The binding result if the binding fails, or null.</param>
112       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
113     </member>
114     <member name="P:System.Dynamic.BinaryOperationBinder.Operation">
115       <summary>The binary operation kind.</summary>
116       <returns>The <see cref="T:System.Linq.Expressions.ExpressionType"></see> object representing the kind of binary operation.</returns>
117     </member>
118     <member name="P:System.Dynamic.BinaryOperationBinder.ReturnType">
119       <summary>The result type of the operation.</summary>
120       <returns>The result type of the operation.</returns>
121     </member>
122     <member name="T:System.Dynamic.BindingRestrictions">
123       <summary>Represents a set of binding restrictions on the <see cref="T:System.Dynamic.DynamicMetaObject"></see> under which the dynamic binding is valid.</summary>
124     </member>
125     <member name="M:System.Dynamic.BindingRestrictions.Combine(System.Collections.Generic.IList{System.Dynamic.DynamicMetaObject})">
126       <summary>Combines binding restrictions from the list of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances into one set of restrictions.</summary>
127       <param name="contributingObjects">The list of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances from which to combine restrictions.</param>
128       <returns>The new set of binding restrictions.</returns>
129     </member>
130     <member name="F:System.Dynamic.BindingRestrictions.Empty">
131       <summary>Represents an empty set of binding restrictions. This field is read only.</summary>
132       <returns></returns>
133     </member>
134     <member name="M:System.Dynamic.BindingRestrictions.GetExpressionRestriction(System.Linq.Expressions.Expression)">
135       <summary>Creates the binding restriction that checks the expression for arbitrary immutable properties.</summary>
136       <param name="expression">The expression representing the restrictions.</param>
137       <returns>The new binding restrictions.</returns>
138     </member>
139     <member name="M:System.Dynamic.BindingRestrictions.GetInstanceRestriction(System.Linq.Expressions.Expression,System.Object)">
140       <summary>Creates the binding restriction that checks the expression for object instance identity.</summary>
141       <param name="expression">The expression to test.</param>
142       <param name="instance">The exact object instance to test.</param>
143       <returns>The new binding restrictions.</returns>
144     </member>
145     <member name="M:System.Dynamic.BindingRestrictions.GetTypeRestriction(System.Linq.Expressions.Expression,System.Type)">
146       <summary>Creates the binding restriction that check the expression for runtime type identity.</summary>
147       <param name="expression">The expression to test.</param>
148       <param name="type">The exact type to test.</param>
149       <returns>The new binding restrictions.</returns>
150     </member>
151     <member name="M:System.Dynamic.BindingRestrictions.Merge(System.Dynamic.BindingRestrictions)">
152       <summary>Merges the set of binding restrictions with the current binding restrictions.</summary>
153       <param name="restrictions">The set of restrictions with which to merge the current binding restrictions.</param>
154       <returns>The new set of binding restrictions.</returns>
155     </member>
156     <member name="M:System.Dynamic.BindingRestrictions.ToExpression">
157       <summary>Creates the <see cref="T:System.Linq.Expressions.Expression"></see> representing the binding restrictions.</summary>
158       <returns>The expression tree representing the restrictions.</returns>
159     </member>
160     <member name="T:System.Dynamic.CallInfo">
161       <summary>Describes arguments in the dynamic binding process.</summary>
162     </member>
163     <member name="M:System.Dynamic.CallInfo.#ctor(System.Int32,System.Collections.Generic.IEnumerable{System.String})">
164       <summary>Creates a new CallInfo that represents arguments in the dynamic binding process.</summary>
165       <param name="argCount">The number of arguments.</param>
166       <param name="argNames">The argument names.</param>
167     </member>
168     <member name="M:System.Dynamic.CallInfo.#ctor(System.Int32,System.String[])">
169       <summary>Creates a new PositionalArgumentInfo.</summary>
170       <param name="argCount">The number of arguments.</param>
171       <param name="argNames">The argument names.</param>
172     </member>
173     <member name="P:System.Dynamic.CallInfo.ArgumentCount">
174       <summary>The number of arguments.</summary>
175       <returns>The number of arguments.</returns>
176     </member>
177     <member name="P:System.Dynamic.CallInfo.ArgumentNames">
178       <summary>The argument names.</summary>
179       <returns>The read-only collection of argument names.</returns>
180     </member>
181     <member name="M:System.Dynamic.CallInfo.Equals(System.Object)">
182       <summary>Determines whether the specified CallInfo instance is considered equal to the current.</summary>
183       <param name="obj">The instance of <see cref="T:System.Dynamic.CallInfo"></see> to compare with the current instance.</param>
184       <returns>true if the specified instance is equal to the current one otherwise, false.</returns>
185     </member>
186     <member name="M:System.Dynamic.CallInfo.GetHashCode">
187       <summary>Serves as a hash function for the current <see cref="T:System.Dynamic.CallInfo"></see>.</summary>
188       <returns>A hash code for the current <see cref="T:System.Dynamic.CallInfo"></see>.</returns>
189     </member>
190     <member name="T:System.Dynamic.ConvertBinder">
191       <summary>Represents the convert dynamic operation at the call site, providing the binding semantic and the details about the operation.</summary>
192     </member>
193     <member name="M:System.Dynamic.ConvertBinder.#ctor(System.Type,System.Boolean)">
194       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.ConvertBinder"></see>.</summary>
195       <param name="type">The type to convert to.</param>
196       <param name="explicit">Is true if the conversion should consider explicit conversions; otherwise, false.</param>
197     </member>
198     <member name="M:System.Dynamic.ConvertBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
199       <summary>Performs the binding of the dynamic convert operation.</summary>
200       <param name="target">The target of the dynamic convert operation.</param>
201       <param name="args">An array of arguments of the dynamic convert operation.</param>
202       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
203     </member>
204     <member name="P:System.Dynamic.ConvertBinder.Explicit">
205       <summary>Gets the value indicating if the conversion should consider explicit conversions.</summary>
206       <returns>True if there is an explicit conversion, otherwise false.</returns>
207     </member>
208     <member name="M:System.Dynamic.ConvertBinder.FallbackConvert(System.Dynamic.DynamicMetaObject)">
209       <summary>Performs the binding of the dynamic convert operation if the target dynamic object cannot bind.</summary>
210       <param name="target">The target of the dynamic convert operation.</param>
211       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
212     </member>
213     <member name="M:System.Dynamic.ConvertBinder.FallbackConvert(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
214       <summary>When overridden in the derived class, performs the binding of the dynamic convert operation if the target dynamic object cannot bind.</summary>
215       <param name="target">The target of the dynamic convert operation.</param>
216       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
217       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
218     </member>
219     <member name="P:System.Dynamic.ConvertBinder.ReturnType">
220       <summary>The result type of the operation.</summary>
221       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
222     </member>
223     <member name="P:System.Dynamic.ConvertBinder.Type">
224       <summary>The type to convert to.</summary>
225       <returns>The <see cref="T:System.Type"></see> object that represents the type to convert to.</returns>
226     </member>
227     <member name="T:System.Dynamic.CreateInstanceBinder">
228       <summary>Represents the dynamic create operation at the call site, providing the binding semantic and the details about the operation.</summary>
229     </member>
230     <member name="M:System.Dynamic.CreateInstanceBinder.#ctor(System.Dynamic.CallInfo)">
231       <summary>Initializes a new intsance of the <see cref="T:System.Dynamic.CreateInstanceBinder"></see>.</summary>
232       <param name="callInfo">The signature of the arguments at the call site.</param>
233     </member>
234     <member name="M:System.Dynamic.CreateInstanceBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
235       <summary>Performs the binding of the dynamic create operation.</summary>
236       <param name="target">The target of the dynamic create operation.</param>
237       <param name="args">An array of arguments of the dynamic create operation.</param>
238       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
239     </member>
240     <member name="P:System.Dynamic.CreateInstanceBinder.CallInfo">
241       <summary>Gets the signature of the arguments at the call site.</summary>
242       <returns>The signature of the arguments at the call site.</returns>
243     </member>
244     <member name="M:System.Dynamic.CreateInstanceBinder.FallbackCreateInstance(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
245       <summary>Performs the binding of the dynamic create operation if the target dynamic object cannot bind.</summary>
246       <param name="target">The target of the dynamic create operation.</param>
247       <param name="args">The arguments of the dynamic create operation.</param>
248       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
249     </member>
250     <member name="M:System.Dynamic.CreateInstanceBinder.FallbackCreateInstance(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
251       <summary>When overridden in the derived class, performs the binding of the dynamic create operation if the target dynamic object cannot bind.</summary>
252       <param name="target">The target of the dynamic create operation.</param>
253       <param name="args">The arguments of the dynamic create operation.</param>
254       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
255       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
256     </member>
257     <member name="P:System.Dynamic.CreateInstanceBinder.ReturnType">
258       <summary>The result type of the operation.</summary>
259       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
260     </member>
261     <member name="T:System.Dynamic.DeleteIndexBinder">
262       <summary>Represents the dynamic delete index operation at the call site, providing the binding semantic and the details about the operation.</summary>
263     </member>
264     <member name="M:System.Dynamic.DeleteIndexBinder.#ctor(System.Dynamic.CallInfo)">
265       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DeleteIndexBinder"></see>.</summary>
266       <param name="callInfo">The signature of the arguments at the call site.</param>
267     </member>
268     <member name="M:System.Dynamic.DeleteIndexBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
269       <summary>Performs the binding of the dynamic delete index operation.</summary>
270       <param name="target">The target of the dynamic delete index operation.</param>
271       <param name="args">An array of arguments of the dynamic delete index operation.</param>
272       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
273     </member>
274     <member name="P:System.Dynamic.DeleteIndexBinder.CallInfo">
275       <summary>Gets the signature of the arguments at the call site.</summary>
276       <returns>The signature of the arguments at the call site.</returns>
277     </member>
278     <member name="M:System.Dynamic.DeleteIndexBinder.FallbackDeleteIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
279       <summary>Performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.</summary>
280       <param name="target">The target of the dynamic delete index operation.</param>
281       <param name="indexes">The arguments of the dynamic delete index operation.</param>
282       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
283     </member>
284     <member name="M:System.Dynamic.DeleteIndexBinder.FallbackDeleteIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
285       <summary>When overridden in the derived class, performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.</summary>
286       <param name="target">The target of the dynamic delete index operation.</param>
287       <param name="indexes">The arguments of the dynamic delete index operation.</param>
288       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
289       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
290     </member>
291     <member name="P:System.Dynamic.DeleteIndexBinder.ReturnType">
292       <summary>The result type of the operation.</summary>
293       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
294     </member>
295     <member name="T:System.Dynamic.DeleteMemberBinder">
296       <summary>Represents the dynamic delete member operation at the call site, providing the binding semantic and the details about the operation.</summary>
297     </member>
298     <member name="M:System.Dynamic.DeleteMemberBinder.#ctor(System.String,System.Boolean)">
299       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DeleteIndexBinder"></see>.</summary>
300       <param name="name">The name of the member to delete.</param>
301       <param name="ignoreCase">Is true if the name should be matched ignoring case; false otherwise.</param>
302     </member>
303     <member name="M:System.Dynamic.DeleteMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
304       <summary>Performs the binding of the dynamic delete member operation.</summary>
305       <param name="target">The target of the dynamic delete member operation.</param>
306       <param name="args">An array of arguments of the dynamic delete member operation.</param>
307       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
308     </member>
309     <member name="M:System.Dynamic.DeleteMemberBinder.FallbackDeleteMember(System.Dynamic.DynamicMetaObject)">
310       <summary>Performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.</summary>
311       <param name="target">The target of the dynamic delete member operation.</param>
312       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
313     </member>
314     <member name="M:System.Dynamic.DeleteMemberBinder.FallbackDeleteMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
315       <summary>When overridden in the derived class, performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.</summary>
316       <param name="target">The target of the dynamic delete member operation.</param>
317       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
318       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
319     </member>
320     <member name="P:System.Dynamic.DeleteMemberBinder.IgnoreCase">
321       <summary>Gets the value indicating if the string comparison should ignore the case of the member name.</summary>
322       <returns>True if the string comparison should ignore the case, otherwise false.</returns>
323     </member>
324     <member name="P:System.Dynamic.DeleteMemberBinder.Name">
325       <summary>Gets the name of the member to delete.</summary>
326       <returns>The name of the member to delete.</returns>
327     </member>
328     <member name="P:System.Dynamic.DeleteMemberBinder.ReturnType">
329       <summary>The result type of the operation.</summary>
330       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
331     </member>
332     <member name="T:System.Dynamic.DynamicMetaObject">
333       <summary>Represents the dynamic binding and a binding logic of an object participating in the dynamic binding.</summary>
334     </member>
335     <member name="M:System.Dynamic.DynamicMetaObject.#ctor(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions)">
336       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObject"></see> class.</summary>
337       <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject"></see> during the dynamic binding process.</param>
338       <param name="restrictions">The set of binding restrictions under which the binding is valid.</param>
339     </member>
340     <member name="M:System.Dynamic.DynamicMetaObject.#ctor(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions,System.Object)">
341       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObject"></see> class.</summary>
342       <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject"></see> during the dynamic binding process.</param>
343       <param name="restrictions">The set of binding restrictions under which the binding is valid.</param>
344       <param name="value">The runtime value represented by the <see cref="T:System.Dynamic.DynamicMetaObject"></see>.</param>
345     </member>
346     <member name="M:System.Dynamic.DynamicMetaObject.BindBinaryOperation(System.Dynamic.BinaryOperationBinder,System.Dynamic.DynamicMetaObject)">
347       <summary>Performs the binding of the dynamic binary operation.</summary>
348       <param name="binder">An instance of the <see cref="T:System.Dynamic.BinaryOperationBinder"></see> that represents the details of the dynamic operation.</param>
349       <param name="arg">An instance of the <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the right hand side of the binary operation.</param>
350       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
351     </member>
352     <member name="M:System.Dynamic.DynamicMetaObject.BindConvert(System.Dynamic.ConvertBinder)">
353       <summary>Performs the binding of the dynamic conversion operation.</summary>
354       <param name="binder">An instance of the <see cref="T:System.Dynamic.ConvertBinder"></see> that represents the details of the dynamic operation.</param>
355       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
356     </member>
357     <member name="M:System.Dynamic.DynamicMetaObject.BindCreateInstance(System.Dynamic.CreateInstanceBinder,System.Dynamic.DynamicMetaObject[])">
358       <summary>Performs the binding of the dynamic create instance operation.</summary>
359       <param name="binder">An instance of the <see cref="T:System.Dynamic.CreateInstanceBinder"></see> that represents the details of the dynamic operation.</param>
360       <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances - arguments to the create instance operation.</param>
361       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
362     </member>
363     <member name="M:System.Dynamic.DynamicMetaObject.BindDeleteIndex(System.Dynamic.DeleteIndexBinder,System.Dynamic.DynamicMetaObject[])">
364       <summary>Performs the binding of the dynamic delete index operation.</summary>
365       <param name="binder">An instance of the <see cref="T:System.Dynamic.DeleteIndexBinder"></see> that represents the details of the dynamic operation.</param>
366       <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances - indexes for the delete index operation.</param>
367       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
368     </member>
369     <member name="M:System.Dynamic.DynamicMetaObject.BindDeleteMember(System.Dynamic.DeleteMemberBinder)">
370       <summary>Performs the binding of the dynamic delete member operation.</summary>
371       <param name="binder">An instance of the <see cref="T:System.Dynamic.DeleteMemberBinder"></see> that represents the details of the dynamic operation.</param>
372       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
373     </member>
374     <member name="M:System.Dynamic.DynamicMetaObject.BindGetIndex(System.Dynamic.GetIndexBinder,System.Dynamic.DynamicMetaObject[])">
375       <summary>Performs the binding of the dynamic get index operation.</summary>
376       <param name="binder">An instance of the <see cref="T:System.Dynamic.GetIndexBinder"></see> that represents the details of the dynamic operation.</param>
377       <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances - indexes for the get index operation.</param>
378       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
379     </member>
380     <member name="M:System.Dynamic.DynamicMetaObject.BindGetMember(System.Dynamic.GetMemberBinder)">
381       <summary>Performs the binding of the dynamic get member operation.</summary>
382       <param name="binder">An instance of the <see cref="T:System.Dynamic.GetMemberBinder"></see> that represents the details of the dynamic operation.</param>
383       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
384     </member>
385     <member name="M:System.Dynamic.DynamicMetaObject.BindInvoke(System.Dynamic.InvokeBinder,System.Dynamic.DynamicMetaObject[])">
386       <summary>Performs the binding of the dynamic invoke operation.</summary>
387       <param name="binder">An instance of the <see cref="T:System.Dynamic.InvokeBinder"></see> that represents the details of the dynamic operation.</param>
388       <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances - arguments to the invoke operation.</param>
389       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
390     </member>
391     <member name="M:System.Dynamic.DynamicMetaObject.BindInvokeMember(System.Dynamic.InvokeMemberBinder,System.Dynamic.DynamicMetaObject[])">
392       <summary>Performs the binding of the dynamic invoke member operation.</summary>
393       <param name="binder">An instance of the <see cref="T:System.Dynamic.InvokeMemberBinder"></see> that represents the details of the dynamic operation.</param>
394       <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances - arguments to the invoke member operation.</param>
395       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
396     </member>
397     <member name="M:System.Dynamic.DynamicMetaObject.BindSetIndex(System.Dynamic.SetIndexBinder,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
398       <summary>Performs the binding of the dynamic set index operation.</summary>
399       <param name="binder">An instance of the <see cref="T:System.Dynamic.SetIndexBinder"></see> that represents the details of the dynamic operation.</param>
400       <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject"></see> instances - indexes for the set index operation.</param>
401       <param name="value">The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the value for the set index operation.</param>
402       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
403     </member>
404     <member name="M:System.Dynamic.DynamicMetaObject.BindSetMember(System.Dynamic.SetMemberBinder,System.Dynamic.DynamicMetaObject)">
405       <summary>Performs the binding of the dynamic set member operation.</summary>
406       <param name="binder">An instance of the <see cref="T:System.Dynamic.SetMemberBinder"></see> that represents the details of the dynamic operation.</param>
407       <param name="value">The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the value for the set member operation.</param>
408       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
409     </member>
410     <member name="M:System.Dynamic.DynamicMetaObject.BindUnaryOperation(System.Dynamic.UnaryOperationBinder)">
411       <summary>Performs the binding of the dynamic unary operation.</summary>
412       <param name="binder">An instance of the <see cref="T:System.Dynamic.UnaryOperationBinder"></see> that represents the details of the dynamic operation.</param>
413       <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
414     </member>
415     <member name="M:System.Dynamic.DynamicMetaObject.Create(System.Object,System.Linq.Expressions.Expression)">
416       <summary>Creates a meta-object for the specified object.</summary>
417       <param name="value">The object to get a meta-object for.</param>
418       <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject"></see> during the dynamic binding process.</param>
419       <returns>If the given object implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider"></see> and is not a remote object from outside the current AppDomain, returns the object's specific meta-object returned by <see cref="M:System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)"></see>. Otherwise a plain new meta-object with no restrictions is created and returned.</returns>
420     </member>
421     <member name="F:System.Dynamic.DynamicMetaObject.EmptyMetaObjects">
422       <summary>Represents an empty array of type <see cref="T:System.Dynamic.DynamicMetaObject"></see>. This field is read only.</summary>
423       <returns></returns>
424     </member>
425     <member name="P:System.Dynamic.DynamicMetaObject.Expression">
426       <summary>The expression representing the <see cref="T:System.Dynamic.DynamicMetaObject"></see> during the dynamic binding process.</summary>
427       <returns>The expression representing the <see cref="T:System.Dynamic.DynamicMetaObject"></see> during the dynamic binding process.</returns>
428     </member>
429     <member name="M:System.Dynamic.DynamicMetaObject.GetDynamicMemberNames">
430       <summary>Returns the enumeration of all dynamic member names.</summary>
431       <returns>The list of dynamic member names.</returns>
432     </member>
433     <member name="P:System.Dynamic.DynamicMetaObject.HasValue">
434       <summary>Gets a value indicating whether the <see cref="T:System.Dynamic.DynamicMetaObject"></see> has the runtime value.</summary>
435       <returns>True if the <see cref="T:System.Dynamic.DynamicMetaObject"></see> has the runtime value, otherwise false.</returns>
436     </member>
437     <member name="P:System.Dynamic.DynamicMetaObject.LimitType">
438       <summary>Gets the limit type of the <see cref="T:System.Dynamic.DynamicMetaObject"></see>.</summary>
439       <returns><see cref="P:System.Dynamic.DynamicMetaObject.RuntimeType"></see> if runtime value is available, a type of the <see cref="P:System.Dynamic.DynamicMetaObject.Expression"></see> otherwise.</returns>
440     </member>
441     <member name="P:System.Dynamic.DynamicMetaObject.Restrictions">
442       <summary>The set of binding restrictions under which the binding is valid.</summary>
443       <returns>The set of binding restrictions.</returns>
444     </member>
445     <member name="P:System.Dynamic.DynamicMetaObject.RuntimeType">
446       <summary>Gets the <see cref="T:System.Type"></see> of the runtime value or null if the <see cref="T:System.Dynamic.DynamicMetaObject"></see> has no value associated with it.</summary>
447       <returns>The <see cref="T:System.Type"></see> of the runtime value or null.</returns>
448     </member>
449     <member name="P:System.Dynamic.DynamicMetaObject.Value">
450       <summary>The runtime value represented by this <see cref="T:System.Dynamic.DynamicMetaObject"></see>.</summary>
451       <returns>The runtime value represented by this <see cref="T:System.Dynamic.DynamicMetaObject"></see>.</returns>
452     </member>
453     <member name="T:System.Dynamic.DynamicMetaObjectBinder">
454       <summary>The dynamic call site binder that participates in the <see cref="T:System.Dynamic.DynamicMetaObject"></see> binding protocol.</summary>
455     </member>
456     <member name="M:System.Dynamic.DynamicMetaObjectBinder.#ctor">
457       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObjectBinder"></see> class.</summary>
458     </member>
459     <member name="M:System.Dynamic.DynamicMetaObjectBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
460       <summary>When overridden in the derived class, performs the binding of the dynamic operation.</summary>
461       <param name="target">The target of the dynamic operation.</param>
462       <param name="args">An array of arguments of the dynamic operation.</param>
463       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
464     </member>
465     <member name="M:System.Dynamic.DynamicMetaObjectBinder.Bind(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection{System.Linq.Expressions.ParameterExpression},System.Linq.Expressions.LabelTarget)">
466       <summary>Performs the runtime binding of the dynamic operation on a set of arguments.</summary>
467       <param name="args">An array of arguments to the dynamic operation.</param>
468       <param name="parameters">The array of <see cref="T:System.Linq.Expressions.ParameterExpression"></see> instances that represent the parameters of the call site in the binding process.</param>
469       <param name="returnLabel">A LabelTarget used to return the result of the dynamic binding.</param>
470       <returns>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"></see> for the new argument types.</returns>
471     </member>
472     <member name="M:System.Dynamic.DynamicMetaObjectBinder.Defer(System.Dynamic.DynamicMetaObject[])">
473       <summary>Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.</summary>
474       <param name="args">An array of arguments of the dynamic operation.</param>
475       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
476     </member>
477     <member name="M:System.Dynamic.DynamicMetaObjectBinder.Defer(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
478       <summary>Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.</summary>
479       <param name="target">The target of the dynamic operation.</param>
480       <param name="args">An array of arguments of the dynamic operation.</param>
481       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
482     </member>
483     <member name="M:System.Dynamic.DynamicMetaObjectBinder.GetUpdateExpression(System.Type)">
484       <summary>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 &quot;version&quot; of a dynamic object has changed.</summary>
485       <param name="type">The <see cref="P:System.Linq.Expressions.Expression.Type"></see> property of the resulting expression; any type is allowed.</param>
486       <returns>The update expression.</returns>
487     </member>
488     <member name="P:System.Dynamic.DynamicMetaObjectBinder.ReturnType">
489       <summary>The result type of the operation.</summary>
490       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
491     </member>
492     <member name="T:System.Dynamic.DynamicObject">
493       <summary>Provides a base class for specifying dynamic behavior at run time. This class must be inherited from; you cannot instantiate it directly.</summary>
494     </member>
495     <member name="M:System.Dynamic.DynamicObject.#ctor">
496       <summary>Enables derived types to initialize a new instance of the <see cref="T:System.Dynamic.DynamicObject"></see> type.</summary>
497     </member>
498     <member name="M:System.Dynamic.DynamicObject.GetDynamicMemberNames">
499       <summary>Returns the enumeration of all dynamic member names.</summary>
500       <returns>A sequence that contains dynamic member names.</returns>
501     </member>
502     <member name="M:System.Dynamic.DynamicObject.GetMetaObject(System.Linq.Expressions.Expression)">
503       <summary>Provides a <see cref="T:System.Dynamic.DynamicMetaObject"></see> that dispatches to the dynamic virtual methods. The object can be encapsulated inside another <see cref="T:System.Dynamic.DynamicMetaObject"></see> to provide custom behavior for individual actions. This method supports the Dynamic Language Runtime infrastructure for language implementers and it is not intended to be used directly from your code.</summary>
504       <param name="parameter">The expression that represents <see cref="T:System.Dynamic.DynamicMetaObject"></see> to dispatch to the dynamic virtual methods.</param>
505       <returns>An object of the <see cref="T:System.Dynamic.DynamicMetaObject"></see> type.</returns>
506     </member>
507     <member name="M:System.Dynamic.DynamicObject.TryBinaryOperation(System.Dynamic.BinaryOperationBinder,System.Object,System.Object@)">
508       <summary>Provides implementation for binary operations. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations such as addition and multiplication.</summary>
509       <param name="binder">Provides information about the binary operation. The binder.Operation property returns an <see cref="T:System.Linq.Expressions.ExpressionType"></see> object. For example, for the sum = first + second statement, where first and second are derived from the DynamicObject class, binder.Operation returns ExpressionType.Add.</param>
510       <param name="arg">The right operand for the binary operation. For example, for the sum = first + second statement, where first and second are derived from the DynamicObject class, arg is equal to second.</param>
511       <param name="result">The result of the binary operation.</param>
512       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
513     </member>
514     <member name="M:System.Dynamic.DynamicObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
515       <summary>Provides implementation for type conversion operations. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations that convert an object from one type to another.</summary>
516       <param name="binder">Provides information about the conversion operation. The binder.Type property provides the type to which the object must be converted. For example, for the statement (String)sampleObject in C# (CType(sampleObject, Type) in Visual Basic), where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, binder.Type returns the <see cref="T:System.String"></see> type. The binder.Explicit property provides information about the kind of conversion that occurs. It returns true for explicit conversion and false for implicit conversion.</param>
517       <param name="result">The result of the type conversion operation.</param>
518       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
519     </member>
520     <member name="M:System.Dynamic.DynamicObject.TryCreateInstance(System.Dynamic.CreateInstanceBinder,System.Object[],System.Object@)">
521       <summary>Provides the implementation for operations that initialize a new instance of a dynamic object. This method is not intended for use in C# or Visual Basic.</summary>
522       <param name="binder">Provides information about the initialization operation.</param>
523       <param name="args">The arguments that are passed to the object during initialization. For example, for the new SampleType(100) operation, where SampleType is the type derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, args[0] is equal to 100.</param>
524       <param name="result">The result of the initialization.</param>
525       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
526     </member>
527     <member name="M:System.Dynamic.DynamicObject.TryDeleteIndex(System.Dynamic.DeleteIndexBinder,System.Object[])">
528       <summary>Provides the implementation for operations that delete an object by index. This method is not intended for use in C# or Visual Basic.</summary>
529       <param name="binder">Provides information about the deletion.</param>
530       <param name="indexes">The indexes to be deleted.</param>
531       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
532     </member>
533     <member name="M:System.Dynamic.DynamicObject.TryDeleteMember(System.Dynamic.DeleteMemberBinder)">
534       <summary>Provides the implementation for operations that delete an object member. This method is not intended for use in C# or Visual Basic.</summary>
535       <param name="binder">Provides information about the deletion.</param>
536       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
537     </member>
538     <member name="M:System.Dynamic.DynamicObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)">
539       <summary>Provides the implementation for operations that get a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for indexing operations.</summary>
540       <param name="binder">Provides information about the operation.</param>
541       <param name="indexes">The indexes that are used in the operation. For example, for the sampleObject[3] operation in C# (sampleObject(3) in Visual Basic), where sampleObject is derived from the DynamicObject class, indexes[0] is equal to 3.</param>
542       <param name="result">The result of the index operation.</param>
543       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)</returns>
544     </member>
545     <member name="M:System.Dynamic.DynamicObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
546       <summary>Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations such as getting a value for a property.</summary>
547       <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, binder.Name returns &quot;SampleProperty&quot;. The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
548       <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to result.</param>
549       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)</returns>
550     </member>
551     <member name="M:System.Dynamic.DynamicObject.TryInvoke(System.Dynamic.InvokeBinder,System.Object[],System.Object@)">
552       <summary>Provides the implementation for operations that invoke an object. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations such as invoking an object or a delegate.</summary>
553       <param name="binder">Provides information about the invoke operation.</param>
554       <param name="args">The arguments that are passed to the object during the invoke operation. For example, for the sampleObject(100) operation, where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, args[0] is equal to 100.</param>
555       <param name="result">The result of the object invocation.</param>
556       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.</returns>
557     </member>
558     <member name="M:System.Dynamic.DynamicObject.TryInvokeMember(System.Dynamic.InvokeMemberBinder,System.Object[],System.Object@)">
559       <summary>Provides the implementation for operations that invoke a member. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations such as calling a method.</summary>
560       <param name="binder">Provides information about the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, binder.Name returns &quot;SampleMethod&quot;. The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
561       <param name="args">The arguments that are passed to the object member during the invoke operation. For example, for the statement sampleObject.SampleMethod(100), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, args[0] is equal to 100.</param>
562       <param name="result">The result of the member invocation.</param>
563       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
564     </member>
565     <member name="M:System.Dynamic.DynamicObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)">
566       <summary>Provides the implementation for operations that set a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations that access objects by a specified index.</summary>
567       <param name="binder">Provides information about the operation.</param>
568       <param name="indexes">The indexes that are used in the operation. For example, for the sampleObject[3] = 10 operation in C# (sampleObject(3) = 10 in Visual Basic), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, indexes[0] is equal to 3.</param>
569       <param name="value">The value to set to the object that has the specified index. For example, for the sampleObject[3] = 10 operation in C# (sampleObject(3) = 10 in Visual Basic), where sampleObject is derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, value is equal to 10.</param>
570       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.</returns>
571     </member>
572     <member name="M:System.Dynamic.DynamicObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
573       <summary>Provides the implementation for operations that set member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations such as setting a value for a property.</summary>
574       <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member to which the value is being assigned. For example, for the statement sampleObject.SampleProperty = &quot;Test&quot;, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, binder.Name returns &quot;SampleProperty&quot;. The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
575       <param name="value">The value to set to the member. For example, for sampleObject.SampleProperty = &quot;Test&quot;, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class, the value is &quot;Test&quot;.</param>
576       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
577     </member>
578     <member name="M:System.Dynamic.DynamicObject.TryUnaryOperation(System.Dynamic.UnaryOperationBinder,System.Object@)">
579       <summary>Provides implementation for unary operations. Classes derived from the <see cref="T:System.Dynamic.DynamicObject"></see> class can override this method to specify dynamic behavior for operations such as negation, increment, or decrement.</summary>
580       <param name="binder">Provides information about the unary operation. The binder.Operation property returns an <see cref="T:System.Linq.Expressions.ExpressionType"></see> object. For example, for the negativeNumber = -number statement, where number is derived from the DynamicObject class, binder.Operation returns &quot;Negate&quot;.</param>
581       <param name="result">The result of the unary operation.</param>
582       <returns>true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)</returns>
583     </member>
584     <member name="T:System.Dynamic.ExpandoObject">
585       <summary>Represents an object whose members can be dynamically added and removed at run time.</summary>
586     </member>
587     <member name="M:System.Dynamic.ExpandoObject.#ctor">
588       <summary>Initializes a new ExpandoObject that does not have members.</summary>
589     </member>
590     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
591       <param name="item"></param>
592     </member>
593     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Clear">
594       
595     </member>
596     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
597       <param name="item"></param>
598       <returns></returns>
599     </member>
600     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
601       <param name="array"></param>
602       <param name="arrayIndex"></param>
603     </member>
604     <member name="P:System.Dynamic.ExpandoObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Count">
605       <returns></returns>
606     </member>
607     <member name="P:System.Dynamic.ExpandoObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#IsReadOnly">
608       <returns></returns>
609     </member>
610     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
611       <param name="item"></param>
612       <returns></returns>
613     </member>
614     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#IDictionary{System#String,System#Object}#Add(System.String,System.Object)">
615       <param name="key"></param>
616       <param name="value"></param>
617     </member>
618     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#IDictionary{System#String,System#Object}#ContainsKey(System.String)">
619       <param name="key"></param>
620       <returns></returns>
621     </member>
622     <member name="P:System.Dynamic.ExpandoObject.System#Collections#Generic#IDictionary{System#String,System#Object}#Item(System.String)">
623       <param name="key"></param>
624       <returns></returns>
625     </member>
626     <member name="P:System.Dynamic.ExpandoObject.System#Collections#Generic#IDictionary{System#String,System#Object}#Keys">
627       <returns></returns>
628     </member>
629     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#IDictionary{System#String,System#Object}#Remove(System.String)">
630       <param name="key"></param>
631       <returns></returns>
632     </member>
633     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#IDictionary{System#String,System#Object}#TryGetValue(System.String,System.Object@)">
634       <param name="key"></param>
635       <param name="value"></param>
636       <returns></returns>
637     </member>
638     <member name="P:System.Dynamic.ExpandoObject.System#Collections#Generic#IDictionary{System#String,System#Object}#Values">
639       <returns></returns>
640     </member>
641     <member name="M:System.Dynamic.ExpandoObject.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,System#Object}}#GetEnumerator">
642       <returns></returns>
643     </member>
644     <member name="M:System.Dynamic.ExpandoObject.System#Collections#IEnumerable#GetEnumerator">
645       <summary>Returns an enumerator that iterates through the collection.</summary>
646       <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
647     </member>
648     <member name="M:System.Dynamic.ExpandoObject.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
649       <summary>The provided MetaObject will dispatch to the dynamic virtual methods. The object can be encapsulated inside another MetaObject to provide custom behavior for individual actions.</summary>
650       <param name="parameter">The expression that represents the MetaObject to dispatch to the Dynamic virtual methods.</param>
651       <returns>The object of the <see cref="T:System.Dynamic.DynamicMetaObject"></see> type.</returns>
652     </member>
653     <member name="T:System.Dynamic.GetIndexBinder">
654       <summary>Represents the dynamic get index operation at the call site, providing the binding semantic and the details about the operation.</summary>
655     </member>
656     <member name="M:System.Dynamic.GetIndexBinder.#ctor(System.Dynamic.CallInfo)">
657       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.GetIndexBinder"></see>.</summary>
658       <param name="callInfo">The signature of the arguments at the call site.</param>
659     </member>
660     <member name="M:System.Dynamic.GetIndexBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
661       <summary>Performs the binding of the dynamic get index operation.</summary>
662       <param name="target">The target of the dynamic get index operation.</param>
663       <param name="args">An array of arguments of the dynamic get index operation.</param>
664       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
665     </member>
666     <member name="P:System.Dynamic.GetIndexBinder.CallInfo">
667       <summary>Gets the signature of the arguments at the call site.</summary>
668       <returns>The signature of the arguments at the call site.</returns>
669     </member>
670     <member name="M:System.Dynamic.GetIndexBinder.FallbackGetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
671       <summary>Performs the binding of the dynamic get index operation if the target dynamic object cannot bind.</summary>
672       <param name="target">The target of the dynamic get index operation.</param>
673       <param name="indexes">The arguments of the dynamic get index operation.</param>
674       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
675     </member>
676     <member name="M:System.Dynamic.GetIndexBinder.FallbackGetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
677       <summary>When overridden in the derived class, performs the binding of the dynamic get index operation if the target dynamic object cannot bind.</summary>
678       <param name="target">The target of the dynamic get index operation.</param>
679       <param name="indexes">The arguments of the dynamic get index operation.</param>
680       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
681       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
682     </member>
683     <member name="P:System.Dynamic.GetIndexBinder.ReturnType">
684       <summary>The result type of the operation.</summary>
685       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
686     </member>
687     <member name="T:System.Dynamic.GetMemberBinder">
688       <summary>Represents the dynamic get member operation at the call site, providing the binding semantic and the details about the operation.</summary>
689     </member>
690     <member name="M:System.Dynamic.GetMemberBinder.#ctor(System.String,System.Boolean)">
691       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.GetMemberBinder"></see>.</summary>
692       <param name="name">The name of the member to obtain.</param>
693       <param name="ignoreCase">Is true if the name should be matched ignoring case; false otherwise.</param>
694     </member>
695     <member name="M:System.Dynamic.GetMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
696       <summary>Performs the binding of the dynamic get member operation.</summary>
697       <param name="target">The target of the dynamic get member operation.</param>
698       <param name="args">An array of arguments of the dynamic get member operation.</param>
699       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
700     </member>
701     <member name="M:System.Dynamic.GetMemberBinder.FallbackGetMember(System.Dynamic.DynamicMetaObject)">
702       <summary>Performs the binding of the dynamic get member operation if the target dynamic object cannot bind.</summary>
703       <param name="target">The target of the dynamic get member operation.</param>
704       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
705     </member>
706     <member name="M:System.Dynamic.GetMemberBinder.FallbackGetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
707       <summary>When overridden in the derived class, performs the binding of the dynamic get member operation if the target dynamic object cannot bind.</summary>
708       <param name="target">The target of the dynamic get member operation.</param>
709       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
710       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
711     </member>
712     <member name="P:System.Dynamic.GetMemberBinder.IgnoreCase">
713       <summary>Gets the value indicating if the string comparison should ignore the case of the member name.</summary>
714       <returns>True if the case is ignored, otherwise false.</returns>
715     </member>
716     <member name="P:System.Dynamic.GetMemberBinder.Name">
717       <summary>Gets the name of the member to obtain.</summary>
718       <returns>The name of the member to obtain.</returns>
719     </member>
720     <member name="P:System.Dynamic.GetMemberBinder.ReturnType">
721       <summary>The result type of the operation.</summary>
722       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
723     </member>
724     <member name="T:System.Dynamic.IDynamicMetaObjectProvider">
725       <summary>Represents a dynamic object, that can have its operations bound at runtime.</summary>
726     </member>
727     <member name="M:System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)">
728       <summary>Returns the <see cref="T:System.Dynamic.DynamicMetaObject"></see> responsible for binding operations performed on this object.</summary>
729       <param name="parameter">The expression tree representation of the runtime value.</param>
730       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> to bind this object.</returns>
731     </member>
732     <member name="T:System.Dynamic.IInvokeOnGetBinder">
733       <summary>Represents information about a dynamic get member operation that indicates if the get member should invoke properties when they perform the get operation.</summary>
734     </member>
735     <member name="P:System.Dynamic.IInvokeOnGetBinder.InvokeOnGet">
736       <summary>Gets the value indicating if this get member operation should invoke properties when they perform the get operation. The default value when this interface is not present is true.</summary>
737       <returns>True if this get member operation should invoke properties when they perform the get operation; otherwise false.</returns>
738     </member>
739     <member name="T:System.Dynamic.InvokeBinder">
740       <summary>Represents the invoke dynamic operation at the call site, providing the binding semantic and the details about the operation.</summary>
741     </member>
742     <member name="M:System.Dynamic.InvokeBinder.#ctor(System.Dynamic.CallInfo)">
743       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.InvokeBinder"></see>.</summary>
744       <param name="callInfo">The signature of the arguments at the call site.</param>
745     </member>
746     <member name="M:System.Dynamic.InvokeBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
747       <summary>Performs the binding of the dynamic invoke operation.</summary>
748       <param name="target">The target of the dynamic invoke operation.</param>
749       <param name="args">An array of arguments of the dynamic invoke operation.</param>
750       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
751     </member>
752     <member name="P:System.Dynamic.InvokeBinder.CallInfo">
753       <summary>Gets the signature of the arguments at the call site.</summary>
754       <returns>The signature of the arguments at the call site.</returns>
755     </member>
756     <member name="M:System.Dynamic.InvokeBinder.FallbackInvoke(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
757       <summary>Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.</summary>
758       <param name="target">The target of the dynamic invoke operation.</param>
759       <param name="args">The arguments of the dynamic invoke operation.</param>
760       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
761     </member>
762     <member name="M:System.Dynamic.InvokeBinder.FallbackInvoke(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
763       <summary>Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.</summary>
764       <param name="target">The target of the dynamic invoke operation.</param>
765       <param name="args">The arguments of the dynamic invoke operation.</param>
766       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
767       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
768     </member>
769     <member name="P:System.Dynamic.InvokeBinder.ReturnType">
770       <summary>The result type of the operation.</summary>
771       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
772     </member>
773     <member name="T:System.Dynamic.InvokeMemberBinder">
774       <summary>Represents the invoke member dynamic operation at the call site, providing the binding semantic and the details about the operation.</summary>
775     </member>
776     <member name="M:System.Dynamic.InvokeMemberBinder.#ctor(System.String,System.Boolean,System.Dynamic.CallInfo)">
777       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.InvokeMemberBinder"></see>.</summary>
778       <param name="name">The name of the member to invoke.</param>
779       <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
780       <param name="callInfo">The signature of the arguments at the call site.</param>
781     </member>
782     <member name="M:System.Dynamic.InvokeMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
783       <summary>Performs the binding of the dynamic invoke member operation.</summary>
784       <param name="target">The target of the dynamic invoke member operation.</param>
785       <param name="args">An array of arguments of the dynamic invoke member operation.</param>
786       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
787     </member>
788     <member name="P:System.Dynamic.InvokeMemberBinder.CallInfo">
789       <summary>Gets the signature of the arguments at the call site.</summary>
790       <returns>The signature of the arguments at the call site.</returns>
791     </member>
792     <member name="M:System.Dynamic.InvokeMemberBinder.FallbackInvoke(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
793       <summary>When overridden in the derived class, performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.</summary>
794       <param name="target">The target of the dynamic invoke operation.</param>
795       <param name="args">The arguments of the dynamic invoke operation.</param>
796       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
797       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
798     </member>
799     <member name="M:System.Dynamic.InvokeMemberBinder.FallbackInvokeMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
800       <summary>Performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.</summary>
801       <param name="target">The target of the dynamic invoke member operation.</param>
802       <param name="args">The arguments of the dynamic invoke member operation.</param>
803       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
804     </member>
805     <member name="M:System.Dynamic.InvokeMemberBinder.FallbackInvokeMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
806       <summary>When overridden in the derived class, performs the binding of the dynamic invoke member operation if the target dynamic object cannot bind.</summary>
807       <param name="target">The target of the dynamic invoke member operation.</param>
808       <param name="args">The arguments of the dynamic invoke member operation.</param>
809       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
810       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
811     </member>
812     <member name="P:System.Dynamic.InvokeMemberBinder.IgnoreCase">
813       <summary>Gets the value indicating if the string comparison should ignore the case of the member name.</summary>
814       <returns>True if the case is ignored, otherwise false.</returns>
815     </member>
816     <member name="P:System.Dynamic.InvokeMemberBinder.Name">
817       <summary>Gets the name of the member to invoke.</summary>
818       <returns>The name of the member to invoke.</returns>
819     </member>
820     <member name="P:System.Dynamic.InvokeMemberBinder.ReturnType">
821       <summary>The result type of the operation.</summary>
822       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
823     </member>
824     <member name="T:System.Dynamic.SetIndexBinder">
825       <summary>Represents the dynamic set index operation at the call site, providing the binding semantic and the details about the operation.</summary>
826     </member>
827     <member name="M:System.Dynamic.SetIndexBinder.#ctor(System.Dynamic.CallInfo)">
828       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.SetIndexBinder"></see>.</summary>
829       <param name="callInfo">The signature of the arguments at the call site.</param>
830     </member>
831     <member name="M:System.Dynamic.SetIndexBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
832       <summary>Performs the binding of the dynamic set index operation.</summary>
833       <param name="target">The target of the dynamic set index operation.</param>
834       <param name="args">An array of arguments of the dynamic set index operation.</param>
835       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
836     </member>
837     <member name="P:System.Dynamic.SetIndexBinder.CallInfo">
838       <summary>Gets the signature of the arguments at the call site.</summary>
839       <returns>The signature of the arguments at the call site.</returns>
840     </member>
841     <member name="M:System.Dynamic.SetIndexBinder.FallbackSetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)">
842       <summary>Performs the binding of the dynamic set index operation if the target dynamic object cannot bind.</summary>
843       <param name="target">The target of the dynamic set index operation.</param>
844       <param name="indexes">The arguments of the dynamic set index operation.</param>
845       <param name="value">The value to set to the collection.</param>
846       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
847     </member>
848     <member name="M:System.Dynamic.SetIndexBinder.FallbackSetIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
849       <summary>When overridden in the derived class, performs the binding of the dynamic set index operation if the target dynamic object cannot bind.</summary>
850       <param name="target">The target of the dynamic set index operation.</param>
851       <param name="indexes">The arguments of the dynamic set index operation.</param>
852       <param name="value">The value to set to the collection.</param>
853       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
854       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
855     </member>
856     <member name="P:System.Dynamic.SetIndexBinder.ReturnType">
857       <summary>The result type of the operation.</summary>
858       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
859     </member>
860     <member name="T:System.Dynamic.SetMemberBinder">
861       <summary>Represents the dynamic set member operation at the call site, providing the binding semantic and the details about the operation.</summary>
862     </member>
863     <member name="M:System.Dynamic.SetMemberBinder.#ctor(System.String,System.Boolean)">
864       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.SetMemberBinder"></see>.</summary>
865       <param name="name">The name of the member to obtain.</param>
866       <param name="ignoreCase">Is true if the name should be matched ignoring case; false otherwise.</param>
867     </member>
868     <member name="M:System.Dynamic.SetMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
869       <summary>Performs the binding of the dynamic set member operation.</summary>
870       <param name="target">The target of the dynamic set member operation.</param>
871       <param name="args">An array of arguments of the dynamic set member operation.</param>
872       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
873     </member>
874     <member name="M:System.Dynamic.SetMemberBinder.FallbackSetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
875       <summary>Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.</summary>
876       <param name="target">The target of the dynamic set member operation.</param>
877       <param name="value">The value to set to the member.</param>
878       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
879     </member>
880     <member name="M:System.Dynamic.SetMemberBinder.FallbackSetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
881       <summary>Performs the binding of the dynamic set member operation if the target dynamic object cannot bind.</summary>
882       <param name="target">The target of the dynamic set member operation.</param>
883       <param name="value">The value to set to the member.</param>
884       <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
885       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
886     </member>
887     <member name="P:System.Dynamic.SetMemberBinder.IgnoreCase">
888       <summary>Gets the value indicating if the string comparison should ignore the case of the member name.</summary>
889       <returns>True if the case is ignored, otherwise false.</returns>
890     </member>
891     <member name="P:System.Dynamic.SetMemberBinder.Name">
892       <summary>Gets the name of the member to obtain.</summary>
893       <returns>The name of the member to obtain.</returns>
894     </member>
895     <member name="P:System.Dynamic.SetMemberBinder.ReturnType">
896       <summary>The result type of the operation.</summary>
897       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
898     </member>
899     <member name="T:System.Dynamic.UnaryOperationBinder">
900       <summary>Represents the unary dynamic operation at the call site, providing the binding semantic and the details about the operation.</summary>
901     </member>
902     <member name="M:System.Dynamic.UnaryOperationBinder.#ctor(System.Linq.Expressions.ExpressionType)">
903       <summary>Initializes a new instance of the <see cref="T:System.Dynamic.BinaryOperationBinder"></see> class.</summary>
904       <param name="operation">The unary operation kind.</param>
905     </member>
906     <member name="M:System.Dynamic.UnaryOperationBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])">
907       <summary>Performs the binding of the dynamic unary operation.</summary>
908       <param name="target">The target of the dynamic operation.</param>
909       <param name="args">An array of arguments of the dynamic operation.</param>
910       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
911     </member>
912     <member name="M:System.Dynamic.UnaryOperationBinder.FallbackUnaryOperation(System.Dynamic.DynamicMetaObject)">
913       <summary>Performs the binding of the unary dynamic operation if the target dynamic object cannot bind.</summary>
914       <param name="target">The target of the dynamic unary operation.</param>
915       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
916     </member>
917     <member name="M:System.Dynamic.UnaryOperationBinder.FallbackUnaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)">
918       <summary>Performs the binding of the unary dynamic operation if the target dynamic object cannot bind.</summary>
919       <param name="target">The target of the dynamic unary operation.</param>
920       <param name="errorSuggestion">The binding result in case the binding fails, or null.</param>
921       <returns>The <see cref="T:System.Dynamic.DynamicMetaObject"></see> representing the result of the binding.</returns>
922     </member>
923     <member name="P:System.Dynamic.UnaryOperationBinder.Operation">
924       <summary>The unary operation kind.</summary>
925       <returns>The object of the <see cref="T:System.Linq.Expressions.ExpressionType"></see> that represents the unary operation kind.</returns>
926     </member>
927     <member name="P:System.Dynamic.UnaryOperationBinder.ReturnType">
928       <summary>The result type of the operation.</summary>
929       <returns>The <see cref="T:System.Type"></see> object representing the result type of the operation.</returns>
930     </member>
931     <member name="T:System.Linq.Expressions.DynamicExpression">
932       <summary>Represents a dynamic operation.</summary>
933     </member>
934     <member name="M:System.Linq.Expressions.DynamicExpression.Accept(System.Linq.Expressions.ExpressionVisitor)">
935       <summary>Dispatches to the specific visit method for this node type. For example, <see cref="T:System.Linq.Expressions.MethodCallExpression"></see> calls the <see cref="M:System.Linq.Expressions.ExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)"></see>.</summary>
936       <param name="visitor">The visitor to visit this node with.</param>
937       <returns>The result of visiting this node.</returns>
938     </member>
939     <member name="P:System.Linq.Expressions.DynamicExpression.Arguments">
940       <summary>Gets the arguments to the dynamic operation.</summary>
941       <returns>The read-only collections containing the arguments to the dynamic operation.</returns>
942     </member>
943     <member name="P:System.Linq.Expressions.DynamicExpression.Binder">
944       <summary>Gets the <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>, which determines the run-time behavior of the dynamic site.</summary>
945       <returns>The <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>, which determines the run-time behavior of the dynamic site.</returns>
946     </member>
947     <member name="P:System.Linq.Expressions.DynamicExpression.DelegateType">
948       <summary>Gets the type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</summary>
949       <returns>The <see cref="T:System.Type"></see> object representing the type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</returns>
950     </member>
951     <member name="M:System.Linq.Expressions.DynamicExpression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression})">
952       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
953       <param name="binder">The runtime binder for the dynamic operation.</param>
954       <param name="returnType">The result type of the dynamic expression.</param>
955       <param name="arguments">The arguments to the dynamic operation.</param>
956       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>,  and has the <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see> and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
957     </member>
958     <member name="M:System.Linq.Expressions.DynamicExpression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression)">
959       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
960       <param name="binder">The runtime binder for the dynamic operation.</param>
961       <param name="returnType">The result type of the dynamic expression.</param>
962       <param name="arg0">The first argument to the dynamic operation.</param>
963       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>,  and has the <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see> and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
964     </member>
965     <member name="M:System.Linq.Expressions.DynamicExpression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression[])">
966       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
967       <param name="binder">The runtime binder for the dynamic operation.</param>
968       <param name="returnType">The result type of the dynamic expression.</param>
969       <param name="arguments">The arguments to the dynamic operation.</param>
970       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see> and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
971     </member>
972     <member name="M:System.Linq.Expressions.DynamicExpression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
973       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
974       <param name="binder">The runtime binder for the dynamic operation.</param>
975       <param name="returnType">The result type of the dynamic expression.</param>
976       <param name="arg0">The first argument to the dynamic operation.</param>
977       <param name="arg1">The second argument to the dynamic operation.</param>
978       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see> and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
979     </member>
980     <member name="M:System.Linq.Expressions.DynamicExpression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
981       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
982       <param name="binder">The runtime binder for the dynamic operation.</param>
983       <param name="returnType">The result type of the dynamic expression.</param>
984       <param name="arg0">The first argument to the dynamic operation.</param>
985       <param name="arg1">The second argument to the dynamic operation.</param>
986       <param name="arg2">The third argument to the dynamic operation.</param>
987       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see> and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
988     </member>
989     <member name="M:System.Linq.Expressions.DynamicExpression.Dynamic(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
990       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
991       <param name="binder">The runtime binder for the dynamic operation.</param>
992       <param name="returnType">The result type of the dynamic expression.</param>
993       <param name="arg0">The first argument to the dynamic operation.</param>
994       <param name="arg1">The second argument to the dynamic operation.</param>
995       <param name="arg2">The third argument to the dynamic operation.</param>
996       <param name="arg3">The fourth argument to the dynamic operation.</param>
997       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see> and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
998     </member>
999     <member name="M:System.Linq.Expressions.DynamicExpression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
1000       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see> and four arguments.</summary>
1001       <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</param>
1002       <param name="binder">The runtime binder for the dynamic operation.</param>
1003       <param name="arg0">The first argument to the dynamic operation.</param>
1004       <param name="arg1">The second argument to the dynamic operation.</param>
1005       <param name="arg2">The third argument to the dynamic operation.</param>
1006       <param name="arg3">The fourth argument to the dynamic operation.</param>
1007       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.DelegateType"></see>, <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see>, and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
1008     </member>
1009     <member name="M:System.Linq.Expressions.DynamicExpression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
1010       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see> and three arguments.</summary>
1011       <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</param>
1012       <param name="binder">The runtime binder for the dynamic operation.</param>
1013       <param name="arg0">The first argument to the dynamic operation.</param>
1014       <param name="arg1">The second argument to the dynamic operation.</param>
1015       <param name="arg2">The third argument to the dynamic operation.</param>
1016       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.DelegateType"></see>, <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see>, and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
1017     </member>
1018     <member name="M:System.Linq.Expressions.DynamicExpression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
1019       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see> and two arguments.</summary>
1020       <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</param>
1021       <param name="binder">The runtime binder for the dynamic operation.</param>
1022       <param name="arg0">The first argument to the dynamic operation.</param>
1023       <param name="arg1">The second argument to the dynamic operation.</param>
1024       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.DelegateType"></see>, <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see>, and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
1025     </member>
1026     <member name="M:System.Linq.Expressions.DynamicExpression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression)">
1027       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see> and one argument.</summary>
1028       <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</param>
1029       <param name="binder">The runtime binder for the dynamic operation.</param>
1030       <param name="arg0">The argument to the dynamic operation.</param>
1031       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.DelegateType"></see>, <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see>, and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
1032     </member>
1033     <member name="M:System.Linq.Expressions.DynamicExpression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression})">
1034       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
1035       <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</param>
1036       <param name="binder">The runtime binder for the dynamic operation.</param>
1037       <param name="arguments">The arguments to the dynamic operation.</param>
1038       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.DelegateType"></see>, <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see>, and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
1039     </member>
1040     <member name="M:System.Linq.Expressions.DynamicExpression.MakeDynamic(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression[])">
1041       <summary>Creates a <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that represents a dynamic operation bound by the provided <see cref="T:System.Runtime.CompilerServices.CallSiteBinder"></see>.</summary>
1042       <param name="delegateType">The type of the delegate used by the <see cref="T:System.Runtime.CompilerServices.CallSite"></see>.</param>
1043       <param name="binder">The runtime binder for the dynamic operation.</param>
1044       <param name="arguments">The arguments to the dynamic operation.</param>
1045       <returns>A <see cref="T:System.Linq.Expressions.DynamicExpression"></see> that has <see cref="P:System.Linq.Expressions.DynamicExpression.NodeType"></see> equal to <see cref="F:System.Linq.Expressions.ExpressionType.Dynamic"></see>, and has the <see cref="P:System.Linq.Expressions.DynamicExpression.DelegateType"></see>, <see cref="P:System.Linq.Expressions.DynamicExpression.Binder"></see>, and <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> set to the specified values.</returns>
1046     </member>
1047     <member name="P:System.Linq.Expressions.DynamicExpression.NodeType">
1048       <summary>Returns the node type of this expression. Extension nodes should return <see cref="F:System.Linq.Expressions.ExpressionType.Extension"></see> when overriding this method.</summary>
1049       <returns>The <see cref="T:System.Linq.Expressions.ExpressionType"></see> of the expression.</returns>
1050     </member>
1051     <member name="P:System.Linq.Expressions.DynamicExpression.Type">
1052       <summary>Gets the static type of the expression that this <see cref="T:System.Linq.Expressions.Expression"></see> represents.</summary>
1053       <returns>The <see cref="P:System.Linq.Expressions.DynamicExpression.Type"></see> that represents the static type of the expression.</returns>
1054     </member>
1055     <member name="M:System.Linq.Expressions.DynamicExpression.Update(System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression})">
1056       <summary>Compares the value sent to the parameter, arguments, to the Arguments property of the current instance of DynamicExpression. If the values of the parameter and the property are equal, the current instance is returned. If they are not equal, a new DynamicExpression instance is returned that is identical to the current instance except that the Arguments property is set to the value of parameter arguments.</summary>
1057       <param name="arguments">The <see cref="P:System.Linq.Expressions.DynamicExpression.Arguments"></see> property of the result.</param>
1058       <returns>This expression if no children are changed or an expression with the updated children.</returns>
1059     </member>
1060     <member name="P:System.Linq.Expressions.DynamicExpression.System#Linq#Expressions#IArgumentProvider#ArgumentCount">
1061       <summary>Returns the number of arguments to the expression tree node.  You should not use this member.  It is only public due to assembly refactoring, and it is used internally for performance optimizations.</summary>
1062       <returns>Returns <see cref="T:System.Int32"></see>.</returns>
1063     </member>
1064     <member name="M:System.Linq.Expressions.DynamicExpression.System#Linq#Expressions#IArgumentProvider#GetArgument(System.Int32)">
1065       <summary>Returns the argument at index, throwing if index is out of bounds.  You should not use this member.  It is only public due to assembly refactoring, and it is used internally for performance optimizations.</summary>
1066       <param name="index">The index of the argument.</param>
1067       <returns>Returns <see cref="T:System.Linq.Expressions.Expression"></see>.</returns>
1068     </member>
1069     <member name="M:System.Linq.Expressions.DynamicExpression.System#Linq#Expressions#IDynamicExpression#CreateCallSite">
1070       <summary>Optionally creates the CallSite and returns the CallSite for the DynamicExpression’s polymorphic inline cache.  You should not use this member.  It is only public due to assembly refactoring, and it is used internally for performance optimizations.</summary>
1071       <returns>Returns <see cref="T:System.Object"></see>.</returns>
1072     </member>
1073     <member name="M:System.Linq.Expressions.DynamicExpression.System#Linq#Expressions#IDynamicExpression#Rewrite(System.Linq.Expressions.Expression[])">
1074       <summary>Rewrite this node replacing the dynamic expression’s arguments with the provided values.  The number of args needs to match the number of the current expression.  You should not use this type.  It is only public due to assembly refactoring, and it is used internally for performance optimizations.  This helper method allows re-writing of nodes to be independent of the specific implementation class deriving from DynamicExpression that is being used at the call site.</summary>
1075       <param name="args">The arguments.</param>
1076       <returns>Returns <see cref="T:System.Linq.Expressions.Expression"></see>, the rewritten expression.</returns>
1077     </member>
1078     <member name="T:System.Linq.Expressions.DynamicExpressionVisitor">
1079       <summary>Represents a visitor or rewriter for dynamic expression trees.</summary>
1080     </member>
1081     <member name="M:System.Linq.Expressions.DynamicExpressionVisitor.#ctor">
1082       <summary>Initializes a new instance of <see cref="T:System.Linq.Expressions.DynamicExpressionVisitor"></see>.</summary>
1083     </member>
1084     <member name="M:System.Linq.Expressions.DynamicExpressionVisitor.VisitDynamic(System.Linq.Expressions.DynamicExpression)">
1085       <summary>Visits the children of the <see cref="T:System.Linq.Expressions.DynamicExpression"></see>.</summary>
1086       <param name="node">The expression to visit.</param>
1087       <returns>Returns <see cref="T:System.Linq.Expressions.Expression"></see>, the modified expression, if it or any subexpression is modified; otherwise, returns the original expression.</returns>
1088     </member>
1089   </members>
1090 </doc></span>