UNPKG

react-native-windows-cursor

Version:
497 lines 110 kB
<?xml version="1.0" encoding="utf-8"?> <doc> <assembly> <name>System.Dynamic.Runtime</name> </assembly> <members> <member name="T:System.Dynamic.BinaryOperationBinder"> <summary>Represents the binary dynamic operation at the call site, providing the binding semantic and the details about the operation.</summary> </member> <member name="M:System.Dynamic.BinaryOperationBinder.#ctor(System.Linq.Expressions.ExpressionType)"> <summary>Initializes a new instance of the <see cref="T:System.Dynamic.BinaryOperationBinder" /> class.</summary> <param name="operation">The binary operation kind.</param> </member> <member name="M:System.Dynamic.BinaryOperationBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic binary operation.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic operation.</param> <param name="args">An array of arguments of the dynamic operation.</param> </member> <member name="M:System.Dynamic.BinaryOperationBinder.FallbackBinaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)"> <summary>Performs the binding of the binary dynamic operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic binary operation.</param> <param name="arg">The right hand side operand of the dynamic binary operation.</param> </member> <member name="M:System.Dynamic.BinaryOperationBinder.FallbackBinaryOperation(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)"> <summary>When overridden in the derived class, performs the binding of the binary dynamic operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic binary operation.</param> <param name="arg">The right hand side operand of the dynamic binary operation.</param> <param name="errorSuggestion">The binding result if the binding fails, or null.</param> </member> <member name="P:System.Dynamic.BinaryOperationBinder.Operation"> <summary>The binary operation kind.</summary> <returns>The <see cref="T:System.Linq.Expressions.ExpressionType" /> object representing the kind of binary operation.</returns> </member> <member name="P:System.Dynamic.BinaryOperationBinder.ReturnType"> <summary>The result type of the operation.</summary> <returns>The result type of the operation.</returns> </member> <member name="T:System.Dynamic.BindingRestrictions"> <summary>Represents a set of binding restrictions on the <see cref="T:System.Dynamic.DynamicMetaObject" /> under which the dynamic binding is valid.</summary> </member> <member name="M:System.Dynamic.BindingRestrictions.Combine(System.Collections.Generic.IList{System.Dynamic.DynamicMetaObject})"> <summary>Combines binding restrictions from the list of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances into one set of restrictions.</summary> <returns>The new set of binding restrictions.</returns> <param name="contributingObjects">The list of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances from which to combine restrictions.</param> </member> <member name="F:System.Dynamic.BindingRestrictions.Empty"> <summary>Represents an empty set of binding restrictions. This field is read only.</summary> </member> <member name="M:System.Dynamic.BindingRestrictions.GetExpressionRestriction(System.Linq.Expressions.Expression)"> <summary>Creates the binding restriction that checks the expression for arbitrary immutable properties.</summary> <returns>The new binding restrictions.</returns> <param name="expression">The expression representing the restrictions.</param> </member> <member name="M:System.Dynamic.BindingRestrictions.GetInstanceRestriction(System.Linq.Expressions.Expression,System.Object)"> <summary>Creates the binding restriction that checks the expression for object instance identity.</summary> <returns>The new binding restrictions.</returns> <param name="expression">The expression to test.</param> <param name="instance">The exact object instance to test.</param> </member> <member name="M:System.Dynamic.BindingRestrictions.GetTypeRestriction(System.Linq.Expressions.Expression,System.Type)"> <summary>Creates the binding restriction that check the expression for runtime type identity.</summary> <returns>The new binding restrictions.</returns> <param name="expression">The expression to test.</param> <param name="type">The exact type to test.</param> </member> <member name="M:System.Dynamic.BindingRestrictions.Merge(System.Dynamic.BindingRestrictions)"> <summary>Merges the set of binding restrictions with the current binding restrictions.</summary> <returns>The new set of binding restrictions.</returns> <param name="restrictions">The set of restrictions with which to merge the current binding restrictions.</param> </member> <member name="M:System.Dynamic.BindingRestrictions.ToExpression"> <summary>Creates the <see cref="T:System.Linq.Expressions.Expression" /> representing the binding restrictions.</summary> <returns>The expression tree representing the restrictions.</returns> </member> <member name="T:System.Dynamic.CallInfo"> <summary>Describes arguments in the dynamic binding process.</summary> </member> <member name="M:System.Dynamic.CallInfo.#ctor(System.Int32,System.Collections.Generic.IEnumerable{System.String})"> <summary>Creates a new CallInfo that represents arguments in the dynamic binding process.</summary> <param name="argCount">The number of arguments.</param> <param name="argNames">The argument names.</param> </member> <member name="M:System.Dynamic.CallInfo.#ctor(System.Int32,System.String[])"> <summary>Creates a new PositionalArgumentInfo.</summary> <param name="argCount">The number of arguments.</param> <param name="argNames">The argument names.</param> </member> <member name="P:System.Dynamic.CallInfo.ArgumentCount"> <summary>The number of arguments.</summary> <returns>The number of arguments.</returns> </member> <member name="P:System.Dynamic.CallInfo.ArgumentNames"> <summary>The argument names.</summary> <returns>The read-only collection of argument names.</returns> </member> <member name="M:System.Dynamic.CallInfo.Equals(System.Object)"> <summary>Determines whether the specified CallInfo instance is considered equal to the current.</summary> <returns>true if the specified instance is equal to the current one otherwise, false.</returns> <param name="obj">The instance of <see cref="T:System.Dynamic.CallInfo" /> to compare with the current instance.</param> </member> <member name="M:System.Dynamic.CallInfo.GetHashCode"> <summary>Serves as a hash function for the current <see cref="T:System.Dynamic.CallInfo" />.</summary> <returns>A hash code for the current <see cref="T:System.Dynamic.CallInfo" />.</returns> </member> <member name="T:System.Dynamic.ConvertBinder"> <summary>Represents the convert dynamic operation at the call site, providing the binding semantic and the details about the operation.</summary> </member> <member name="M:System.Dynamic.ConvertBinder.#ctor(System.Type,System.Boolean)"> <summary>Initializes a new instance of the <see cref="T:System.Dynamic.ConvertBinder" />.</summary> <param name="type">The type to convert to.</param> <param name="explicit">Is true if the conversion should consider explicit conversions; otherwise, false.</param> </member> <member name="M:System.Dynamic.ConvertBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic convert operation.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic convert operation.</param> <param name="args">An array of arguments of the dynamic convert operation.</param> </member> <member name="P:System.Dynamic.ConvertBinder.Explicit"> <summary>Gets the value indicating if the conversion should consider explicit conversions.</summary> <returns>True if there is an explicit conversion, otherwise false.</returns> </member> <member name="M:System.Dynamic.ConvertBinder.FallbackConvert(System.Dynamic.DynamicMetaObject)"> <summary>Performs the binding of the dynamic convert operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic convert operation.</param> </member> <member name="M:System.Dynamic.ConvertBinder.FallbackConvert(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)"> <summary>When overridden in the derived class, performs the binding of the dynamic convert operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic convert operation.</param> <param name="errorSuggestion">The binding result to use if binding fails, or null.</param> </member> <member name="P:System.Dynamic.ConvertBinder.ReturnType"> <summary>The result type of the operation.</summary> <returns>The <see cref="T:System.Type" /> object representing the result type of the operation.</returns> </member> <member name="P:System.Dynamic.ConvertBinder.Type"> <summary>The type to convert to.</summary> <returns>The <see cref="T:System.Type" /> object that represents the type to convert to.</returns> </member> <member name="T:System.Dynamic.CreateInstanceBinder"> <summary>Represents the dynamic create operation at the call site, providing the binding semantic and the details about the operation.</summary> </member> <member name="M:System.Dynamic.CreateInstanceBinder.#ctor(System.Dynamic.CallInfo)"> <summary>Initializes a new intsance of the <see cref="T:System.Dynamic.CreateInstanceBinder" />.</summary> <param name="callInfo">The signature of the arguments at the call site.</param> </member> <member name="M:System.Dynamic.CreateInstanceBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic create operation.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic create operation.</param> <param name="args">An array of arguments of the dynamic create operation.</param> </member> <member name="P:System.Dynamic.CreateInstanceBinder.CallInfo"> <summary>Gets the signature of the arguments at the call site.</summary> <returns>The signature of the arguments at the call site.</returns> </member> <member name="M:System.Dynamic.CreateInstanceBinder.FallbackCreateInstance(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic create operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic create operation.</param> <param name="args">The arguments of the dynamic create operation.</param> </member> <member name="M:System.Dynamic.CreateInstanceBinder.FallbackCreateInstance(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)"> <summary>When overridden in the derived class, performs the binding of the dynamic create operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic create operation.</param> <param name="args">The arguments of the dynamic create operation.</param> <param name="errorSuggestion">The binding result to use if binding fails, or null.</param> </member> <member name="P:System.Dynamic.CreateInstanceBinder.ReturnType"> <summary>The result type of the operation.</summary> <returns>The <see cref="T:System.Type" /> object representing the result type of the operation.</returns> </member> <member name="T:System.Dynamic.DeleteIndexBinder"> <summary>Represents the dynamic delete index operation at the call site, providing the binding semantic and the details about the operation.</summary> </member> <member name="M:System.Dynamic.DeleteIndexBinder.#ctor(System.Dynamic.CallInfo)"> <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DeleteIndexBinder" />.</summary> <param name="callInfo">The signature of the arguments at the call site.</param> </member> <member name="M:System.Dynamic.DeleteIndexBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic delete index operation.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic delete index operation.</param> <param name="args">An array of arguments of the dynamic delete index operation.</param> </member> <member name="P:System.Dynamic.DeleteIndexBinder.CallInfo"> <summary>Gets the signature of the arguments at the call site.</summary> <returns>The signature of the arguments at the call site.</returns> </member> <member name="M:System.Dynamic.DeleteIndexBinder.FallbackDeleteIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic delete index operation.</param> <param name="indexes">The arguments of the dynamic delete index operation.</param> </member> <member name="M:System.Dynamic.DeleteIndexBinder.FallbackDeleteIndex(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)"> <summary>When overridden in the derived class, performs the binding of the dynamic delete index operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic delete index operation.</param> <param name="indexes">The arguments of the dynamic delete index operation.</param> <param name="errorSuggestion">The binding result to use if binding fails, or null.</param> </member> <member name="P:System.Dynamic.DeleteIndexBinder.ReturnType"> <summary>The result type of the operation.</summary> <returns>The <see cref="T:System.Type" /> object representing the result type of the operation.</returns> </member> <member name="T:System.Dynamic.DeleteMemberBinder"> <summary>Represents the dynamic delete member operation at the call site, providing the binding semantic and the details about the operation.</summary> </member> <member name="M:System.Dynamic.DeleteMemberBinder.#ctor(System.String,System.Boolean)"> <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DeleteIndexBinder" />.</summary> <param name="name">The name of the member to delete.</param> <param name="ignoreCase">Is true if the name should be matched ignoring case; false otherwise.</param> </member> <member name="M:System.Dynamic.DeleteMemberBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic delete member operation.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic delete member operation.</param> <param name="args">An array of arguments of the dynamic delete member operation.</param> </member> <member name="M:System.Dynamic.DeleteMemberBinder.FallbackDeleteMember(System.Dynamic.DynamicMetaObject)"> <summary>Performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic delete member operation.</param> </member> <member name="M:System.Dynamic.DeleteMemberBinder.FallbackDeleteMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)"> <summary>When overridden in the derived class, performs the binding of the dynamic delete member operation if the target dynamic object cannot bind.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic delete member operation.</param> <param name="errorSuggestion">The binding result to use if binding fails, or null.</param> </member> <member name="P:System.Dynamic.DeleteMemberBinder.IgnoreCase"> <summary>Gets the value indicating if the string comparison should ignore the case of the member name.</summary> <returns>True if the string comparison should ignore the case, otherwise false.</returns> </member> <member name="P:System.Dynamic.DeleteMemberBinder.Name"> <summary>Gets the name of the member to delete.</summary> <returns>The name of the member to delete.</returns> </member> <member name="P:System.Dynamic.DeleteMemberBinder.ReturnType"> <summary>The result type of the operation.</summary> <returns>The <see cref="T:System.Type" /> object representing the result type of the operation.</returns> </member> <member name="T:System.Dynamic.DynamicMetaObject"> <summary>Represents the dynamic binding and a binding logic of an object participating in the dynamic binding.</summary> </member> <member name="M:System.Dynamic.DynamicMetaObject.#ctor(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions)"> <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObject" /> class.</summary> <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject" /> during the dynamic binding process.</param> <param name="restrictions">The set of binding restrictions under which the binding is valid.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.#ctor(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions,System.Object)"> <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObject" /> class.</summary> <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject" /> during the dynamic binding process.</param> <param name="restrictions">The set of binding restrictions under which the binding is valid.</param> <param name="value">The runtime value represented by the <see cref="T:System.Dynamic.DynamicMetaObject" />.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindBinaryOperation(System.Dynamic.BinaryOperationBinder,System.Dynamic.DynamicMetaObject)"> <summary>Performs the binding of the dynamic binary operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.BinaryOperationBinder" /> that represents the details of the dynamic operation.</param> <param name="arg">An instance of the <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the right hand side of the binary operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindConvert(System.Dynamic.ConvertBinder)"> <summary>Performs the binding of the dynamic conversion operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.ConvertBinder" /> that represents the details of the dynamic operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindCreateInstance(System.Dynamic.CreateInstanceBinder,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic create instance operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.CreateInstanceBinder" /> that represents the details of the dynamic operation.</param> <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances - arguments to the create instance operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindDeleteIndex(System.Dynamic.DeleteIndexBinder,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic delete index operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.DeleteIndexBinder" /> that represents the details of the dynamic operation.</param> <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances - indexes for the delete index operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindDeleteMember(System.Dynamic.DeleteMemberBinder)"> <summary>Performs the binding of the dynamic delete member operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.DeleteMemberBinder" /> that represents the details of the dynamic operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindGetIndex(System.Dynamic.GetIndexBinder,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic get index operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.GetIndexBinder" /> that represents the details of the dynamic operation.</param> <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances - indexes for the get index operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindGetMember(System.Dynamic.GetMemberBinder)"> <summary>Performs the binding of the dynamic get member operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.GetMemberBinder" /> that represents the details of the dynamic operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindInvoke(System.Dynamic.InvokeBinder,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic invoke operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.InvokeBinder" /> that represents the details of the dynamic operation.</param> <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances - arguments to the invoke operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindInvokeMember(System.Dynamic.InvokeMemberBinder,System.Dynamic.DynamicMetaObject[])"> <summary>Performs the binding of the dynamic invoke member operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.InvokeMemberBinder" /> that represents the details of the dynamic operation.</param> <param name="args">An array of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances - arguments to the invoke member operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindSetIndex(System.Dynamic.SetIndexBinder,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)"> <summary>Performs the binding of the dynamic set index operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.SetIndexBinder" /> that represents the details of the dynamic operation.</param> <param name="indexes">An array of <see cref="T:System.Dynamic.DynamicMetaObject" /> instances - indexes for the set index operation.</param> <param name="value">The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the value for the set index operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindSetMember(System.Dynamic.SetMemberBinder,System.Dynamic.DynamicMetaObject)"> <summary>Performs the binding of the dynamic set member operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.SetMemberBinder" /> that represents the details of the dynamic operation.</param> <param name="value">The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the value for the set member operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.BindUnaryOperation(System.Dynamic.UnaryOperationBinder)"> <summary>Performs the binding of the dynamic unary operation.</summary> <returns>The new <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="binder">An instance of the <see cref="T:System.Dynamic.UnaryOperationBinder" /> that represents the details of the dynamic operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObject.Create(System.Object,System.Linq.Expressions.Expression)"> <summary>Creates a meta-object for the specified object.</summary> <returns>If the given object implements <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" /> 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)" />. Otherwise a plain new meta-object with no restrictions is created and returned.</returns> <param name="value">The object to get a meta-object for.</param> <param name="expression">The expression representing this <see cref="T:System.Dynamic.DynamicMetaObject" /> during the dynamic binding process.</param> </member> <member name="F:System.Dynamic.DynamicMetaObject.EmptyMetaObjects"> <summary>Represents an empty array of type <see cref="T:System.Dynamic.DynamicMetaObject" />. This field is read only.</summary> </member> <member name="P:System.Dynamic.DynamicMetaObject.Expression"> <summary>The expression representing the <see cref="T:System.Dynamic.DynamicMetaObject" /> during the dynamic binding process.</summary> <returns>The expression representing the <see cref="T:System.Dynamic.DynamicMetaObject" /> during the dynamic binding process.</returns> </member> <member name="M:System.Dynamic.DynamicMetaObject.GetDynamicMemberNames"> <summary>Returns the enumeration of all dynamic member names.</summary> <returns>The list of dynamic member names.</returns> </member> <member name="P:System.Dynamic.DynamicMetaObject.HasValue"> <summary>Gets a value indicating whether the <see cref="T:System.Dynamic.DynamicMetaObject" /> has the runtime value.</summary> <returns>True if the <see cref="T:System.Dynamic.DynamicMetaObject" /> has the runtime value, otherwise false.</returns> </member> <member name="P:System.Dynamic.DynamicMetaObject.LimitType"> <summary>Gets the limit type of the <see cref="T:System.Dynamic.DynamicMetaObject" />.</summary> <returns> <see cref="P:System.Dynamic.DynamicMetaObject.RuntimeType" /> if runtime value is available, a type of the <see cref="P:System.Dynamic.DynamicMetaObject.Expression" /> otherwise.</returns> </member> <member name="P:System.Dynamic.DynamicMetaObject.Restrictions"> <summary>The set of binding restrictions under which the binding is valid.</summary> <returns>The set of binding restrictions.</returns> </member> <member name="P:System.Dynamic.DynamicMetaObject.RuntimeType"> <summary>Gets the <see cref="T:System.Type" /> of the runtime value or null if the <see cref="T:System.Dynamic.DynamicMetaObject" /> has no value associated with it.</summary> <returns>The <see cref="T:System.Type" /> of the runtime value or null.</returns> </member> <member name="P:System.Dynamic.DynamicMetaObject.Value"> <summary>The runtime value represented by this <see cref="T:System.Dynamic.DynamicMetaObject" />.</summary> <returns>The runtime value represented by this <see cref="T:System.Dynamic.DynamicMetaObject" />.</returns> </member> <member name="T:System.Dynamic.DynamicMetaObjectBinder"> <summary>The dynamic call site binder that participates in the <see cref="T:System.Dynamic.DynamicMetaObject" /> binding protocol.</summary> </member> <member name="M:System.Dynamic.DynamicMetaObjectBinder.#ctor"> <summary>Initializes a new instance of the <see cref="T:System.Dynamic.DynamicMetaObjectBinder" /> class.</summary> </member> <member name="M:System.Dynamic.DynamicMetaObjectBinder.Bind(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>When overridden in the derived class, performs the binding of the dynamic operation.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic operation.</param> <param name="args">An array of arguments of the dynamic operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObjectBinder.Bind(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection{System.Linq.Expressions.ParameterExpression},System.Linq.Expressions.LabelTarget)"> <summary>Performs the runtime binding of the dynamic operation on a set of arguments.</summary> <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" /> for the new argument types.</returns> <param name="args">An array of arguments to the dynamic operation.</param> <param name="parameters">The array of <see cref="T:System.Linq.Expressions.ParameterExpression" /> instances that represent the parameters of the call site in the binding process.</param> <param name="returnLabel">A LabelTarget used to return the result of the dynamic binding.</param> </member> <member name="M:System.Dynamic.DynamicMetaObjectBinder.Defer(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])"> <summary>Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="target">The target of the dynamic operation.</param> <param name="args">An array of arguments of the dynamic operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObjectBinder.Defer(System.Dynamic.DynamicMetaObject[])"> <summary>Defers the binding of the operation until later time when the runtime values of all dynamic operation arguments have been computed.</summary> <returns>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</returns> <param name="args">An array of arguments of the dynamic operation.</param> </member> <member name="M:System.Dynamic.DynamicMetaObjectBinder.GetUpdateExpression(System.Type)"> <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 "version" of a dynamic object has changed.</summary> <returns>The update expression.</returns> <param name="type">The <see cref="P:System.Linq.Expressions.Expression.Type" /> property of the resulting expression; any type is allowed.</param> </member> <member name="P:System.Dynamic.DynamicMetaObjectBinder.ReturnType"> <summary>The result type of the operation.</summary> <returns>The <see cref="T:System.Type" /> object representing the result type of the operation.</returns> </member> <member name="T:System.Dynamic.DynamicObject"> <summary>Provides a base class for specifying dynamic behavior at run time. This class must be inherited from; you cannot instantiate it directly.</summary> </member> <member name="M:System.Dynamic.DynamicObject.#ctor"> <summary>Enables derived types to initialize a new instance of the <see cref="T:System.Dynamic.DynamicObject" /> type.</summary> </member> <member name="M:System.Dynamic.DynamicObject.GetDynamicMemberNames"> <summary>Returns the enumeration of all dynamic member names. </summary> <returns>A sequence that contains dynamic member names.</returns> </member> <member name="M:System.Dynamic.DynamicObject.GetMetaObject(System.Linq.Expressions.Expression)"> <summary>Provides a <see cref="T:System.Dynamic.DynamicMetaObject" /> that dispatches to the dynamic virtual methods. The object can be encapsulated inside another <see cref="T:System.Dynamic.DynamicMetaObject" /> 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> <returns>An object of the <see cref="T:System.Dynamic.DynamicMetaObject" /> type.</returns> <param name="parameter">The expression that represents <see cref="T:System.Dynamic.DynamicMetaObject" /> to dispatch to the dynamic virtual methods.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryBinaryOperation(System.Dynamic.BinaryOperationBinder,System.Object,System.Object@)"> <summary>Provides implementation for binary operations. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as addition and multiplication.</summary> <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> <param name="binder">Provides information about the binary operation. The binder.Operation property returns an <see cref="T:System.Linq.Expressions.ExpressionType" /> 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> <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, <paramref name="arg" /> is equal to second.</param> <param name="result">The result of the binary operation.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)"> <summary>Provides implementation for type conversion operations. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations that convert an object from one type to another.</summary> <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> <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" /> class, binder.Type returns the <see cref="T:System.String" /> 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> <param name="result">The result of the type conversion operation.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryCreateInstance(System.Dynamic.CreateInstanceBinder,System.Object[],System.Object@)"> <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> <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> <param name="binder">Provides information about the initialization operation.</param> <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" /> class, <paramref name="args[0]" /> is equal to 100.</param> <param name="result">The result of the initialization.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryDeleteIndex(System.Dynamic.DeleteIndexBinder,System.Object[])"> <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> <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> <param name="binder">Provides information about the deletion.</param> <param name="indexes">The indexes to be deleted.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryDeleteMember(System.Dynamic.DeleteMemberBinder)"> <summary>Provides the implementation for operations that delete an object member. This method is not intended for use in C# or Visual Basic.</summary> <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> <param name="binder">Provides information about the deletion.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)"> <summary>Provides the implementation for operations that get a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for indexing operations.</summary> <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> <param name="binder">Provides information about the operation. </param> <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, <paramref name="indexes[0]" /> is equal to 3.</param> <param name="result">The result of the index operation.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)"> <summary>Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as getting a value for a property.</summary> <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> <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" /> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param> <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 <paramref name="result" />.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryInvoke(System.Dynamic.InvokeBinder,System.Object[],System.Object@)"> <summary>Provides the implementation for operations that invoke an object. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as invoking an object or a delegate.</summary> <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> <param name="binder">Provides information about the invoke operation.</param> <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" /> class, <paramref name="args[0]" /> is equal to 100.</param> <param name="result">The result of the object invocation.</param> </member> <member name="M:System.Dynamic.DynamicObject.TryInvokeMember(System.Dynamic.InvokeMemberBinder,System.Object[],System.Object@)"> <summary>Provides the implementation for operations that invoke a member. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as calling a method.</summary> <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> <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" /> class, binder.Name returns "SampleMethod". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param> <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" /> class, <paramref name="args[0]" /> is equal to 100.</param> <param name="result">The result of the member invocation.</param> </member> <member name="M:System.Dynamic.DynamicObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)"> <summary>Provides the implementation for operations that set a value by index. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations that access objects by a specified index.</summary> <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> <param name="binder">Provides information about the operation. </param> <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" /> class, <paramref name="indexes[0]" /> is equal to 3.</param> <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" /> class, <paramref name="value" /> is equal to 10.</param> </member> <member name="M:System.Dynamic.DynamicObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)"> <summary>Provides the implementation for operations that set member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as setting a value for a property.</summary> <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> <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 = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject" /> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param> <param name="value">The value to set to the member. For example, for sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject" /> class, the <paramref name="value" /> is "Test".</param> </member> <member name="M:System.Dynamic.DynamicObject.TryUnaryOperation(System.Dynamic.UnaryOperationBinder,System.Object@)"> <summary>Provides implementation for unary operations. Classes derived from