CodeMethodReferenceExpression Class
Represents a reference to a method.
Assembly: System (in System.dll)
System.CodeDom::CodeObject
System.CodeDom::CodeExpression
System.CodeDom::CodeMethodReferenceExpression
| Name | Description | |
|---|---|---|
![]() | CodeMethodReferenceExpression() | Initializes a new instance of the CodeMethodReferenceExpression class. |
![]() | CodeMethodReferenceExpression(CodeExpression^, String^) | Initializes a new instance of the CodeMethodReferenceExpression class using the specified target object and method name. |
![]() | CodeMethodReferenceExpression(CodeExpression^, String^, array<CodeTypeReference^>^) | Initializes a new instance of the CodeMethodReferenceExpression class using the specified target object, method name, and generic type arguments. |
| Name | Description | |
|---|---|---|
![]() | MethodName | Gets or sets the name of the method to reference. |
![]() | TargetObject | Gets or sets the expression that indicates the method to reference. |
![]() | TypeArguments | Gets the type arguments for the current generic method reference expression. |
![]() | UserData | Gets the user-definable data for the current object.(Inherited from CodeObject.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
A CodeMethodReferenceExpression can be used to represent an expression of the form Object.Method.
The TargetObject property indicates the object that contains the method. The MethodName property indicates the name of the method.
A CodeMethodReferenceExpression is used with a CodeMethodInvokeExpression to indicate the method to invoke, and with a CodeDelegateCreateExpression to indicate the method to handle the event.
The following code example uses a CodeMethodReferenceExpression to refer to a method:
// Invokes the TestMethod method of the current type object. CodeMethodReferenceExpression^ methodRef1 = gcnew CodeMethodReferenceExpression( gcnew CodeThisReferenceExpression,"TestMethod" ); array<CodeParameterDeclarationExpression^>^temp1; CodeMethodInvokeExpression^ invoke1 = gcnew CodeMethodInvokeExpression( methodRef1,temp1 ); // A C# code generator produces the following source code for the preceeding example code: // this.TestMethod();
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


