| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // System.CodeDom CodeMemberEvent Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- [Serializable]
- public class CodeMemberEvent : CodeTypeMember {
- string implementsType, type;
- bool privateImplements;
-
- public CodeMemberEvent ()
- {
- }
- public string ImplementsType {
- get {
- return implementsType;
- }
- set {
- implementsType = value;
- }
- }
- public bool PrivateImplements {
- get {
- return privateImplements;
- }
- set {
- privateImplements = value;
- }
- }
- public string Type {
- get {
- return type;
- }
- set {
- type = value;
- }
- }
- }
- }
|