Compartir a través de


Binder.InvokeMember Método

Definición

Inicializa un nuevo enlazador de invocaciones de miembro de CSharp.

Esta API admite la infraestructura de producto y no está pensada para usarse directamente en el código.

public:
 static System::Runtime::CompilerServices::CallSiteBinder ^ InvokeMember(Microsoft::CSharp::RuntimeBinder::CSharpBinderFlags flags, System::String ^ name, System::Collections::Generic::IEnumerable<Type ^> ^ typeArguments, Type ^ context, System::Collections::Generic::IEnumerable<Microsoft::CSharp::RuntimeBinder::CSharpArgumentInfo ^> ^ argumentInfo);
public static System.Runtime.CompilerServices.CallSiteBinder InvokeMember (Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags flags, string name, System.Collections.Generic.IEnumerable<Type> typeArguments, Type context, System.Collections.Generic.IEnumerable<Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo> argumentInfo);
public static System.Runtime.CompilerServices.CallSiteBinder InvokeMember (Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags flags, string name, System.Collections.Generic.IEnumerable<Type>? typeArguments, Type? context, System.Collections.Generic.IEnumerable<Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo>? argumentInfo);
static member InvokeMember : Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags * string * seq<Type> * Type * seq<Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo> -> System.Runtime.CompilerServices.CallSiteBinder
Public Shared Function InvokeMember (flags As CSharpBinderFlags, name As String, typeArguments As IEnumerable(Of Type), context As Type, argumentInfo As IEnumerable(Of CSharpArgumentInfo)) As CallSiteBinder

Parámetros

flags
CSharpBinderFlags

Marcas con las que se va a inicializar el enlazador.

name
String

Nombre del miembro que se va a invocar.

typeArguments
IEnumerable<Type>

Lista de los argumentos de tipo especificados para esta invocación.

context
Type

Objeto Type que indica dónde se usa esta operación.

argumentInfo
IEnumerable<CSharpArgumentInfo>

Secuencia de instancias de CSharpArgumentInfo para los argumentos de esta operación.

Devoluciones

Nuevo enlazador de invocaciones de miembro de CSharp.

Se aplica a