| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // System.CodeDom CodeMemberEvent Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- // Daniel Stodden ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeMemberEvent
- : CodeTypeMember
- {
- private CodeTypeReferenceCollection implementationTypes;
- private CodeTypeReference privateImplementationType;
- private CodeTypeReference type;
-
- //
- // Constructors
- //
- public CodeMemberEvent ()
- {
- }
- //
- // Properties
- //
- public CodeTypeReferenceCollection ImplementationTypes
- {
- get {
- if (implementationTypes == null)
- implementationTypes = new CodeTypeReferenceCollection ();
- return implementationTypes;
- }
- }
- public CodeTypeReference PrivateImplementationType
- {
- get {
- return privateImplementationType;
- }
- set {
- privateImplementationType = value;
- }
- }
- public CodeTypeReference Type
- {
- get {
- if (type == null)
- type = new CodeTypeReference (String.Empty);
- return type;
- }
- set {
- type = value;
- }
- }
- }
- }
|