Expression.MakeIndex Método

Definição

Cria um IndexExpression que representa o acesso a uma propriedade indexada em um objeto.

public:
 static System::Linq::Expressions::IndexExpression ^ MakeIndex(System::Linq::Expressions::Expression ^ instance, System::Reflection::PropertyInfo ^ indexer, System::Collections::Generic::IEnumerable<System::Linq::Expressions::Expression ^> ^ arguments);
public static System.Linq.Expressions.IndexExpression MakeIndex (System.Linq.Expressions.Expression instance, System.Reflection.PropertyInfo indexer, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression> arguments);
public static System.Linq.Expressions.IndexExpression MakeIndex (System.Linq.Expressions.Expression instance, System.Reflection.PropertyInfo? indexer, System.Collections.Generic.IEnumerable<System.Linq.Expressions.Expression>? arguments);
static member MakeIndex : System.Linq.Expressions.Expression * System.Reflection.PropertyInfo * seq<System.Linq.Expressions.Expression> -> System.Linq.Expressions.IndexExpression
Public Shared Function MakeIndex (instance As Expression, indexer As PropertyInfo, arguments As IEnumerable(Of Expression)) As IndexExpression

Parâmetros

instance
Expression

O objeto ao qual a propriedade pertence. Deve ser nulo se a propriedade for static (shared no Visual Basic).

indexer
PropertyInfo

Um Expression representando a propriedade a indexar.

arguments
IEnumerable<Expression>

Um IEnumerable<Expression> (IEnumerable (Of Expression) no Visual Basic) que contém os argumentos que serão usados para indexar a propriedade.

Retornos

O IndexExpression criado.

Aplica-se a