CodeMemberEvent Class
.NET Framework 2.0
Represents a declaration for an event of a type.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ <ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _ Public Class CodeMemberEvent Inherits CodeTypeMember 'Usage Dim instance As CodeMemberEvent
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ public class CodeMemberEvent extends CodeTypeMember
SerializableAttribute ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) public class CodeMemberEvent extends CodeTypeMember
Not applicable.
This example demonstrates use of a CodeMemberEvent to declare an event that takes a System.EventHandler delegate:
' Declares an event that accepts a delegate type of System.EventHandler. Dim event1 As New CodeMemberEvent() ' Sets a name for the event. event1.Name = "TestEvent" ' Sets the type of event. event1.Type = New CodeTypeReference("System.EventHandler") ' A Visual Basic code generator produces the following source code for the preceeding example code: ' Private Event TestEvent As System.EventHandler
// Declares an event that accepts a delegate type of System.EventHandler.
CodeMemberEvent event1 = new CodeMemberEvent();
// Sets a name for the event.
event1.set_Name("TestEvent");
// Sets the type of event.
event1.set_Type(new CodeTypeReference("System.EventHandler"));
// A VJ# code generator produces the following source code for
// the preceeding example code:
// private event System.EventHandler TestEvent;
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeTypeMember
System.CodeDom.CodeMemberEvent
System.CodeDom.CodeObject
System.CodeDom.CodeTypeMember
System.CodeDom.CodeMemberEvent
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: