CodeDelegateInvokeExpression Class
Represents an expression that raises an event.
Assembly: System (in System.dll)
System.CodeDom::CodeObject
System.CodeDom::CodeExpression
System.CodeDom::CodeDelegateInvokeExpression
| Name | Description | |
|---|---|---|
![]() | CodeDelegateInvokeExpression() | Initializes a new instance of the CodeDelegateInvokeExpression class. |
![]() | CodeDelegateInvokeExpression(CodeExpression^) | Initializes a new instance of the CodeDelegateInvokeExpression class using the specified target object. |
![]() | CodeDelegateInvokeExpression(CodeExpression^, array<CodeExpression^>^) | Initializes a new instance of the CodeDelegateInvokeExpression class using the specified target object and parameters. |
| Name | Description | |
|---|---|---|
![]() | Parameters | Gets or sets the parameters to pass to the event handling methods attached to the event. |
![]() | TargetObject | Gets or sets the event to invoke. |
![]() | 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.) |
CodeDelegateInvokeExpression can be used to represent code that invokes an event. Invoking an event invokes all delegates that are registered with the event using the specified parameters.
The TargetObject property specifies the event to invoke. The Parameters property specifies the parameters to pass to the delegates for the event.
The following example demonstrates use of a CodeDelegateInvokeExpression to invoke an event named TestEvent.
// Invokes the delegates for an event named TestEvent, passing a local object reference and a new System.EventArgs. array<CodeExpression^>^temp1 = {gcnew CodeThisReferenceExpression,gcnew CodeObjectCreateExpression( "System.EventArgs", nullptr )}; CodeDelegateInvokeExpression^ invoke1 = gcnew CodeDelegateInvokeExpression( gcnew CodeEventReferenceExpression( gcnew CodeThisReferenceExpression,"TestEvent" ),temp1 ); // A C# code generator produces the following source code for the preceeding example code: // this.TestEvent(this, new System.EventArgs());
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.


