Expression.Property Method (Expression, String)
Creates a MemberExpression that represents accessing a property.
Assembly: System.Core (in System.Core.dll)
Parameters
- expression
- Type: System.Linq.Expressions.Expression
An Expression whose Type contains a property named propertyName. This can be null for static properties.
- propertyName
- Type: System.String
The name of a property to be accessed.
Return Value
Type: System.Linq.Expressions.MemberExpressionA MemberExpression that has the NodeType property equal to MemberAccess, the Expression property set to expression, and the Member property set to the PropertyInfo that represents the property denoted by propertyName.
| Exception | Condition |
|---|---|
| ArgumentNullException | expression or propertyName is null. |
| ArgumentException | No property named propertyName is defined in expression.Type or its base types. |
The Type property of the resulting MemberExpression is equal to the PropertyType property of the PropertyInfo that represents the property denoted by propertyName.
This method searches expression.Type and its base types for a property that has the name propertyName. Public properties are given preference over non-public properties. If a matching property is found, this method passes expression and the PropertyInfo that represents that property to Property.
The following example shows how to create an expression that represents accessing a property.
// Add the following directive to your file:
// using System.Linq.Expressions;
class TestPropertyClass
{
public int sample {get; set;}
}
static void TestProperty()
{
TestPropertyClass obj = new TestPropertyClass();
obj.sample = 40;
// This expression represents accessing a property.
// For static fields, the first parameter must be null.
Expression propertyExpr = Expression.Property(
Expression.Constant(obj),
"sample"
);
// The following statement first creates an expression tree,
// then compiles it, and then runs it.
Console.WriteLine(Expression.Lambda<Func<int>>(propertyExpr).Compile()());
}
// This code example produces the following output:
//
// 40
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.