CodeMemberEvent.cs 684 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // System.CodeDom CodeMemberEvent Class implementation
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc.
  8. //
  9. namespace System.CodeDom {
  10. [Serializable]
  11. public class CodeMemberEvent : CodeTypeMember {
  12. string implementsType, type;
  13. bool privateImplements;
  14. public CodeMemberEvent ()
  15. {
  16. }
  17. public string ImplementsType {
  18. get {
  19. return implementsType;
  20. }
  21. set {
  22. implementsType = value;
  23. }
  24. }
  25. public bool PrivateImplements {
  26. get {
  27. return privateImplements;
  28. }
  29. set {
  30. privateImplements = value;
  31. }
  32. }
  33. public string Type {
  34. get {
  35. return type;
  36. }
  37. set {
  38. type = value;
  39. }
  40. }
  41. }
  42. }