System.CodeDom.CodeMemberEvent Class

Assembly: System.dll
Namespace: System.CodeDom
Summary
Represents an event member of a class.
C# Syntax:
[Serializable]
public class CodeMemberEvent : CodeTypeMember
Remarks
CodeMemberEvent can be used to represent event members of a class. The class has properties to indicate the data type of the class member, whether it privately implements a data type, and what data type, if any, the member event implements.
See also:
System.CodeDom Namespace

System.CodeDom.CodeMemberEvent Member List:

Public Constructors
ctor #1 Default constructor. This constructor is called by derived class constructors to initialize state in this type.
Initializes a new instance of the CodeMemberEvent class.
Public Properties
Attributes
(inherited from System.CodeDom.CodeTypeMember)
Read-write

See base class member description: System.CodeDom.CodeTypeMember.Attributes


Gets or sets the attributes of the member.
Comments
(inherited from System.CodeDom.CodeTypeMember)
Read-only

See base class member description: System.CodeDom.CodeTypeMember.Comments


Gets the comment collection for the type member.
CustomAttributes
(inherited from System.CodeDom.CodeTypeMember)
Read-write

See base class member description: System.CodeDom.CodeTypeMember.CustomAttributes


Gets or sets the custom attributes of the member.
ImplementationTypes Read-only

Gets or sets the data type that the member event implements.
LinePragma
(inherited from System.CodeDom.CodeTypeMember)
Read-write

See base class member description: System.CodeDom.CodeTypeMember.LinePragma


Gets or sets the line the statement occurs on.
Name
(inherited from System.CodeDom.CodeTypeMember)
Read-write

See base class member description: System.CodeDom.CodeTypeMember.Name


Gets or sets the name of the member.
PrivateImplementationType Read-write

Gets or sets the privately implemented data type, if any.
Type Read-write

Gets or sets the data type of the member field.
UserData
(inherited from System.CodeDom.CodeObject)
Read-only

See base class member description: System.CodeDom.CodeObject.UserData


Gets or sets the user-definable data for the current object.
Public Methods
Equals
(inherited from System.Object)
See base class member description: System.Object.Equals

Derived from System.Object, the primary base class for all objects.
GetHashCode
(inherited from System.Object)
See base class member description: System.Object.GetHashCode

Derived from System.Object, the primary base class for all objects.
GetType
(inherited from System.Object)
See base class member description: System.Object.GetType

Derived from System.Object, the primary base class for all objects.
ToString
(inherited from System.Object)
See base class member description: System.Object.ToString

Derived from System.Object, the primary base class for all objects.
Protected Methods
Finalize
(inherited from System.Object)
See base class member description: System.Object.Finalize

Derived from System.Object, the primary base class for all objects.
MemberwiseClone
(inherited from System.Object)
See base class member description: System.Object.MemberwiseClone

Derived from System.Object, the primary base class for all objects.

Hierarchy:


System.CodeDom.CodeMemberEvent Member Details

ctor #1
Summary
Initializes a new instance of the CodeMemberEvent class.

Default constructor. This constructor is called by derived class constructors to initialize state in this type.
C# Syntax:
public CodeMemberEvent();

Return to top


Property: Attributes (read-write)
Inherited
See base class member description: System.CodeDom.CodeTypeMember.Attributes

Summary
Gets or sets the attributes of the member.
C# Syntax:
public MemberAttributes Attributes {get; set;}
Remarks
This property is used to specify attributes of the type member. Some types of attributes are Access (Public/Private) and Scope (Final/Override).
See also:
MemberAttributes

Return to top


Property: Comments (read-only)
Inherited
See base class member description: System.CodeDom.CodeTypeMember.Comments

Summary
Gets the comment collection for the type member.
C# Syntax:
public CodeCommentStatementCollection Comments {get;}
Remarks
Any comments in this collection will be written to the generated source file just before the declaration of the member.
See also:
CodeCommentStatementCollection

Return to top


Property: CustomAttributes (read-write)
Inherited
See base class member description: System.CodeDom.CodeTypeMember.CustomAttributes

Summary
Gets or sets the custom attributes of the member.
C# Syntax:
public CodeAttributeDeclarationCollection CustomAttributes {get; set;}
Remarks
This property can be used to add metadata attributes to the declaration of the member. This property is null by default and should be checked before referencing.
See also:
CodeAttributeDeclarationCollection

Return to top


Property: ImplementationTypes (read-only)
Summary
Gets or sets the data type that the member event implements.
C# Syntax:
public CodeTypeReferenceCollection ImplementationTypes {get;}
Remarks
The types referenced should consist of interfaces or the base class.

Return to top


Property: LinePragma (read-write)
Inherited
See base class member description: System.CodeDom.CodeTypeMember.LinePragma

Summary
Gets or sets the line the statement occurs on.
C# Syntax:
public CodeLinePragma LinePragma {get; set;}
Remarks
This property indicates the location of the type member declaration. This property can be used for purposes of error reporting and debugging. This can be useful when code is generated based on a template file. This value is null by default and should be checked before referencing.
See also:
CodeLinePragma

Return to top


Property: Name (read-write)
Inherited
See base class member description: System.CodeDom.CodeTypeMember.Name

Summary
Gets or sets the name of the member.
C# Syntax:
public string Name {get; set;}

Return to top


Property: PrivateImplementationType (read-write)
Summary
Gets or sets the privately implemented data type, if any.
C# Syntax:
public CodeTypeReference PrivateImplementationType {get; set;}
Remarks
The types referenced should consist of interfaces or the base class.

Return to top


Property: Type (read-write)
Summary
Gets or sets the data type of the member field.
C# Syntax:
public CodeTypeReference Type {get; set;}

Return to top


Property: UserData (read-only)
Inherited
See base class member description: System.CodeDom.CodeObject.UserData

Summary
Gets or sets the user-definable data for the current object.
C# Syntax:
public IDictionary UserData {get;}
Remarks


Notes to inheritors: An inheritor can design the way this user data is stored, retrieved, and used.

Return to top


Method: Equals(
   object obj
)
Inherited
See base class member description: System.Object.Equals
C# Syntax:
public virtual bool Equals(
   object obj
);

For more information on members inherited from System.Object click on the link above.

Return to top


Method: Finalize()
Inherited
See base class member description: System.Object.Finalize
C# Syntax:
~CodeMemberEvent();

For more information on members inherited from System.Object click on the link above.

Return to top


Method: GetHashCode()
Inherited
See base class member description: System.Object.GetHashCode
C# Syntax:
public virtual int GetHashCode();

For more information on members inherited from System.Object click on the link above.

Return to top


Method: GetType()
Inherited
See base class member description: System.Object.GetType
C# Syntax:
public Type GetType();

For more information on members inherited from System.Object click on the link above.

Return to top


Method: MemberwiseClone()
Inherited
See base class member description: System.Object.MemberwiseClone
C# Syntax:
protected object MemberwiseClone();

For more information on members inherited from System.Object click on the link above.

Return to top


Method: ToString()
Inherited
See base class member description: System.Object.ToString
C# Syntax:
public virtual string ToString();

For more information on members inherited from System.Object click on the link above.

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.