Expression.Property Method (Expression, PropertyInfo)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a MemberExpression that represents accessing a property.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function Property ( _ expression As Expression, _ property As PropertyInfo _ ) As MemberExpression
Parameters
- expression
- Type: System.Linq.Expressions.Expression
An Expression to set the Expression property equal to. This can be null for static properties.
- property
- Type: System.Reflection.PropertyInfo
The PropertyInfo to set the Member property equal to.
Return Value
Type: System.Linq.Expressions.MemberExpressionA MemberExpression that has the NodeType property equal to MemberAccess and the Expression and Member properties set to the specified values.
| Exception | Condition |
|---|---|
| ArgumentNullException | property is Nothing. -or- The property that property represents is not static (Shared in Visual Basic) and expression is Nothing. |
| ArgumentException | expression.Type is not assignable to the declaring type of the property that property represents. |
The Type property of the resulting MemberExpression is equal to the PropertyType property of Member.
If the property represented by property is static (Shared in Visual Basic), expression can be Nothing.