CodePropertyReferenceExpression Class
Assembly: System (in system.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ <ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _ Public Class CodePropertyReferenceExpression Inherits CodeExpression 'Usage Dim instance As CodePropertyReferenceExpression
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ public class CodePropertyReferenceExpression extends CodeExpression
SerializableAttribute ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) public class CodePropertyReferenceExpression extends CodeExpression
Not applicable.
CodePropertyReferenceExpression can be used to represent a reference to the value of a property.
The TargetObject property specifies the object that contains the property to reference. The PropertyName property specifies the name of the property to reference.
This object does not have a property to indicate whether the reference is used in a get or set. If the property reference occurs on the left, assigned to, side of an assignment statement, then it is a set.
The following example code demonstrates use of a CodePropertyReferenceExpression to refer to a property.
Dim propertyRef1 As New CodePropertyReferenceExpression(New CodeThisReferenceExpression(), "TestProperty") ' A Visual Basic code generator produces the following source code for the preceeding example code: ' Me.TestProperty
CodePropertyReferenceExpression propertyRef1 = new
CodePropertyReferenceExpression(new CodeThisReferenceExpression(),
"TestProperty");
// A VJ# code generator produces the following source code for the
// preceeding example code:
// this.TestProperty
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodePropertyReferenceExpression
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.