CodeDelegateInvokeExpression Class

Definition

Represents an expression that raises an event.

public class CodeDelegateInvokeExpression : System.CodeDom.CodeExpression
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeDelegateInvokeExpression : System.CodeDom.CodeExpression
Inheritance
CodeDelegateInvokeExpression
Attributes

Examples

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.
CodeDelegateInvokeExpression invoke1 = new CodeDelegateInvokeExpression( new CodeEventReferenceExpression(new CodeThisReferenceExpression(), "TestEvent"),
    new CodeExpression[] { new CodeThisReferenceExpression(), new CodeObjectCreateExpression("System.EventArgs") } );

// A C# code generator produces the following source code for the preceeding example code:

//    this.TestEvent(this, new System.EventArgs());

Remarks

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.

Constructors

CodeDelegateInvokeExpression()

Initializes a new instance of the CodeDelegateInvokeExpression class.

CodeDelegateInvokeExpression(CodeExpression, CodeExpression[])

Initializes a new instance of the CodeDelegateInvokeExpression class using the specified target object and parameters.

CodeDelegateInvokeExpression(CodeExpression)

Initializes a new instance of the CodeDelegateInvokeExpression class using the specified target object.

Properties

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)

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(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)

Applies to

Produkt Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also