| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // 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 CodeTypeReference implementationType;
- private CodeTypeReference privateImplementationType;
- private CodeTypeReference type;
-
- //
- // Constructors
- //
- public CodeMemberEvent ()
- {
- }
- //
- // Properties
- //
- public CodeTypeReference ImplementationTypes {
- get {
- return implementationType;
- }
- set {
- implementationType = value;
- }
- }
- public CodeTypeReference PrivateImplementationType {
- get {
- return privateImplementationType;
- }
- set {
- privateImplementationType = value;
- }
- }
- public CodeTypeReference Type {
- get {
- return type;
- }
- set {
- type = value;
- }
- }
- }
- }
|