Represents a reference to an event.
For a list of all members of this type, see CodeEventReferenceExpression Members.
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeEventReferenceExpression
[Visual Basic] <Serializable> <ClassInterface(ClassInterfaceType.AutoDispatch)> <ComVisible(True)> Public Class CodeEventReferenceExpression Inherits CodeExpression [C#] [Serializable] [ClassInterface(ClassInterfaceType.AutoDispatch)] [ComVisible(true)] public class CodeEventReferenceExpression : CodeExpression [C++] [Serializable] [ClassInterface(ClassInterfaceType::AutoDispatch)] [ComVisible(true)] public __gc class CodeEventReferenceExpression : public CodeExpression [JScript] public Serializable ClassInterface(ClassInterfaceType.AutoDispatch) ComVisible(true) class CodeEventReferenceExpression extends CodeExpression
Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.
CodeEventReferenceExpression can be used to represent a reference to an event.
The TargetObject property specifies the object that contains the event. The EventName property specifies the name of the event.
[Visual Basic, C#] The following example demonstrates use of CodeEventReferenceExpression to reference an event named TestEvent.
[Visual Basic] ' Represents a reference to an event. Dim eventRef1 As New CodeEventReferenceExpression(New CodeThisReferenceExpression(), "TestEvent") ' A Visual Basic code generator produces the following source code for the preceeding example code: ' Me.TestEvent [C#] // Represents a reference to an event. CodeEventReferenceExpression eventRef1 = new CodeEventReferenceExpression( new CodeThisReferenceExpression(), "TestEvent" ); // A C# code generator produces the following source code for the preceeding example code: // this.TestEvent
[C++, JScript] No example is available for C++ or JScript. To view a Visual Basic or C# example, click the Language Filter button
in the upper-left corner of the page.
Namespace: System.CodeDom
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System (in System.dll)
CodeEventReferenceExpression Members | System.CodeDom Namespace