CodeMethodReferenceExpression Class
Represents a reference to a method.
System.CodeDom::CodeObject
System.CodeDom::CodeExpression
System.CodeDom::CodeMethodReferenceExpression
Assembly: System (in System.dll)
The CodeMethodReferenceExpression type exposes the following members.
| 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | 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();
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
