Expression.Property Method (Expression, String, Expression())
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates an IndexExpression representing the access to an indexed property.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function Property ( _ instance As Expression, _ propertyName As String, _ ParamArray arguments As Expression() _ ) As IndexExpression
Parameters
- instance
- Type: System.Linq.Expressions.Expression
The object to which the property belongs. If the property is static/shared, it must be null.
- propertyName
- Type: System.String
The name of the indexer.
- arguments
- Type:
System.Linq.Expressions.Expression
()
An array of Expression objects that are used to index the property.
Show: