CodeMemberEvent.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // System.CodeDom CodeMemberEvent Class implementation
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. // Daniel Stodden ([email protected])
  7. //
  8. // (C) 2001 Ximian, Inc.
  9. //
  10. using System.Runtime.InteropServices;
  11. namespace System.CodeDom
  12. {
  13. [Serializable]
  14. [ClassInterface(ClassInterfaceType.AutoDispatch)]
  15. [ComVisible(true)]
  16. public class CodeMemberEvent
  17. : CodeTypeMember
  18. {
  19. private CodeTypeReference implementationType;
  20. private CodeTypeReference privateImplementationType;
  21. private CodeTypeReference type;
  22. //
  23. // Constructors
  24. //
  25. public CodeMemberEvent ()
  26. {
  27. }
  28. //
  29. // Properties
  30. //
  31. public CodeTypeReference ImplementationTypes {
  32. get {
  33. return implementationType;
  34. }
  35. set {
  36. implementationType = value;
  37. }
  38. }
  39. public CodeTypeReference PrivateImplementationType {
  40. get {
  41. return privateImplementationType;
  42. }
  43. set {
  44. privateImplementationType = value;
  45. }
  46. }
  47. public CodeTypeReference Type {
  48. get {
  49. return type;
  50. }
  51. set {
  52. type = value;
  53. }
  54. }
  55. }
  56. }