CodePropertyReferenceExpression Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CodePropertyReferenceExpression class.
Overloads
CodePropertyReferenceExpression() |
Initializes a new instance of the CodePropertyReferenceExpression class. |
CodePropertyReferenceExpression(CodeExpression, String) |
Initializes a new instance of the CodePropertyReferenceExpression class using the specified target object and property name. |
CodePropertyReferenceExpression()
Initializes a new instance of the CodePropertyReferenceExpression class.
public:
CodePropertyReferenceExpression();
public CodePropertyReferenceExpression ();
Public Sub New ()
Applies to
CodePropertyReferenceExpression(CodeExpression, String)
Initializes a new instance of the CodePropertyReferenceExpression class using the specified target object and property name.
public:
CodePropertyReferenceExpression(System::CodeDom::CodeExpression ^ targetObject, System::String ^ propertyName);
public CodePropertyReferenceExpression (System.CodeDom.CodeExpression targetObject, string propertyName);
new System.CodeDom.CodePropertyReferenceExpression : System.CodeDom.CodeExpression * string -> System.CodeDom.CodePropertyReferenceExpression
Public Sub New (targetObject As CodeExpression, propertyName As String)
Parameters
- targetObject
- CodeExpression
A CodeExpression that indicates the object that contains the property to reference.
- propertyName
- String
The name of the property to reference.