Expression.MakeIndex Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates an IndexExpression that represents accessing an indexed property in an object.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function MakeIndex ( _
instance As Expression, _
indexer As PropertyInfo, _
arguments As IEnumerable(Of Expression) _
) As IndexExpression
public static IndexExpression MakeIndex(
Expression instance,
PropertyInfo indexer,
IEnumerable<Expression> arguments
)
Parameters
- instance
Type: System.Linq.Expressions.Expression
The object to which the property belongs. It should be null if the property is static (shared in Visual Basic).
- indexer
Type: System.Reflection.PropertyInfo
An Expression representing the property to index.
- arguments
Type: System.Collections.Generic.IEnumerable<Expression>
An IEnumerable<Expression> (IEnumerable (Of Expression) in Visual Basic) that contains the arguments that will be used to index the property.
Return Value
Type: System.Linq.Expressions.IndexExpression
The created IndexExpression.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.