Expression.Property Method (Expression, PropertyInfo, array<Expression[])
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates an IndexExpression representing the access to an indexed property.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function Property ( _
instance As Expression, _
indexer As PropertyInfo, _
ParamArray arguments As Expression() _
) As IndexExpression
public static IndexExpression Property(
Expression instance,
PropertyInfo indexer,
params Expression[] arguments
)
Parameters
- instance
Type: System.Linq.Expressions.Expression
The object to which the property belongs. If the property is static/shared, it must be null.
- indexer
Type: System.Reflection.PropertyInfo
The PropertyInfo that represents the property to index.
- arguments
Type: array<System.Linq.Expressions.Expression[]
An array of Expression objects that are 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.