CodeEventReferenceExpression Class
.NET Framework 3.0
Represents a reference to an event.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
[SerializableAttribute] [ComVisibleAttribute(true)] [ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] public class CodeEventReferenceExpression : CodeExpression
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ public class CodeEventReferenceExpression extends CodeExpression
SerializableAttribute ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) public class CodeEventReferenceExpression extends CodeExpression
Not applicable.
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.
The following example demonstrates use of CodeEventReferenceExpression to reference an event named TestEvent.
// 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
// Represents a reference to an event.
CodeEventReferenceExpression eventRef1 = new
CodeEventReferenceExpression(new CodeThisReferenceExpression(),
"TestEvent");
// A VJ# code generator produces the following source code for the
// preceeding example code:
// this.TestEvent
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeEventReferenceExpression
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeEventReferenceExpression
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: