Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Expression::Property Method (Expression^, PropertyInfo^)

 

Creates a MemberExpression that represents accessing a property.

Namespace:   System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

public:
static MemberExpression^ Property(
	Expression^ expression,
	PropertyInfo^ property
)

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::MemberExpression^

A 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 null.

-or-

The property that property represents is not static (Shared in Visual Basic) and expression is null.

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 null.

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft