CodeMemberEvent.cs 669 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. public class CodeMemberEvent : CodeClassMember {
  11. string implementsType, type;
  12. bool privateImplements;
  13. public CodeMemberEvent ()
  14. {
  15. }
  16. public string ImplementsType {
  17. get {
  18. return implementsType;
  19. }
  20. set {
  21. implementsType = value;
  22. }
  23. }
  24. public bool PrivateImplements {
  25. get {
  26. return privateImplements;
  27. }
  28. set {
  29. privateImplements = value;
  30. }
  31. }
  32. public string Type {
  33. get {
  34. return type;
  35. }
  36. set {
  37. type = value;
  38. }
  39. }
  40. }
  41. }