| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?xml version="1.0" encoding="utf-8"?>
- <Type Name="InvokeBinder" FullName="System.Dynamic.InvokeBinder">
- <TypeSignature Language="C#" Value="public abstract class InvokeBinder : System.Dynamic.DynamicMetaObjectBinder" />
- <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit InvokeBinder extends System.Dynamic.DynamicMetaObjectBinder" />
- <AssemblyInfo>
- <AssemblyName>System.Core</AssemblyName>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <Base>
- <BaseTypeName>System.Dynamic.DynamicMetaObjectBinder</BaseTypeName>
- </Base>
- <Interfaces />
- <Docs>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Represents the invoke dynamic operation at the call site, providing the binding semantic and the details about the operation.</para>
- </summary>
- </Docs>
- <Members>
- <Member MemberName=".ctor">
- <MemberSignature Language="C#" Value="protected InvokeBinder (System.Dynamic.CallInfo callInfo);" />
- <MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Dynamic.CallInfo callInfo) cil managed" />
- <MemberType>Constructor</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <Parameters>
- <Parameter Name="callInfo" Type="System.Dynamic.CallInfo" />
- </Parameters>
- <Docs>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Initializes a new instance of the <see cref="T:System.Dynamic.InvokeBinder" />.</para>
- </summary>
- <param name="callInfo">
- <attribution license="cc4" from="Microsoft" modified="false" />The signature of the arguments at the call site.</param>
- </Docs>
- </Member>
- <Member MemberName="Bind">
- <MemberSignature Language="C#" Value="public override sealed System.Dynamic.DynamicMetaObject Bind (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args);" />
- <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance class System.Dynamic.DynamicMetaObject Bind(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
- <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]" />
- </Parameters>
- <Docs>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Performs the binding of the dynamic invoke operation.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
- </returns>
- <param name="target">
- <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic invoke operation.</param>
- <param name="args">
- <attribution license="cc4" from="Microsoft" modified="false" />An array of arguments of the dynamic invoke operation.</param>
- </Docs>
- </Member>
- <Member MemberName="CallInfo">
- <MemberSignature Language="C#" Value="public System.Dynamic.CallInfo CallInfo { get; }" />
- <MemberSignature Language="ILAsm" Value=".property instance class System.Dynamic.CallInfo CallInfo" />
- <MemberType>Property</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Dynamic.CallInfo</ReturnType>
- </ReturnValue>
- <Docs>
- <value>To be added.</value>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Gets the signature of the arguments at the call site.</para>
- </summary>
- </Docs>
- </Member>
- <Member MemberName="FallbackInvoke">
- <MemberSignature Language="C#" Value="public System.Dynamic.DynamicMetaObject FallbackInvoke (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args);" />
- <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Dynamic.DynamicMetaObject FallbackInvoke(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
- <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]" />
- </Parameters>
- <Docs>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
- </returns>
- <param name="target">
- <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic invoke operation.</param>
- <param name="args">
- <attribution license="cc4" from="Microsoft" modified="false" />The arguments of the dynamic invoke operation.</param>
- </Docs>
- </Member>
- <Member MemberName="FallbackInvoke">
- <MemberSignature Language="C#" Value="public abstract System.Dynamic.DynamicMetaObject FallbackInvoke (System.Dynamic.DynamicMetaObject target, System.Dynamic.DynamicMetaObject[] args, System.Dynamic.DynamicMetaObject errorSuggestion);" />
- <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Dynamic.DynamicMetaObject FallbackInvoke(class System.Dynamic.DynamicMetaObject target, class System.Dynamic.DynamicMetaObject[] args, class System.Dynamic.DynamicMetaObject errorSuggestion) cil managed" />
- <MemberType>Method</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Dynamic.DynamicMetaObject</ReturnType>
- </ReturnValue>
- <Parameters>
- <Parameter Name="target" Type="System.Dynamic.DynamicMetaObject" />
- <Parameter Name="args" Type="System.Dynamic.DynamicMetaObject[]" />
- <Parameter Name="errorSuggestion" Type="System.Dynamic.DynamicMetaObject" />
- </Parameters>
- <Docs>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>Performs the binding of the dynamic invoke operation if the target dynamic object cannot bind.</para>
- </summary>
- <returns>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The <see cref="T:System.Dynamic.DynamicMetaObject" /> representing the result of the binding.</para>
- </returns>
- <param name="target">
- <attribution license="cc4" from="Microsoft" modified="false" />The target of the dynamic invoke operation.</param>
- <param name="args">
- <attribution license="cc4" from="Microsoft" modified="false" />The arguments of the dynamic invoke operation.</param>
- <param name="errorSuggestion">
- <attribution license="cc4" from="Microsoft" modified="false" />The binding result to use if binding fails, or null.</param>
- </Docs>
- </Member>
- <Member MemberName="ReturnType">
- <MemberSignature Language="C#" Value="public override sealed Type ReturnType { get; }" />
- <MemberSignature Language="ILAsm" Value=".property instance class System.Type ReturnType" />
- <MemberType>Property</MemberType>
- <AssemblyInfo>
- <AssemblyVersion>4.0.0.0</AssemblyVersion>
- </AssemblyInfo>
- <ReturnValue>
- <ReturnType>System.Type</ReturnType>
- </ReturnValue>
- <Docs>
- <value>To be added.</value>
- <remarks>To be added.</remarks>
- <summary>
- <attribution license="cc4" from="Microsoft" modified="false" />
- <para>The result type of the operation.</para>
- </summary>
- </Docs>
- </Member>
- </Members>
- </Type>
|