DocumentableItem.cs 755 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Web.Services.Description.DocumentableItem.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.ComponentModel;
  10. using System.Xml.Serialization;
  11. namespace System.Web.Services.Description {
  12. public abstract class DocumentableItem {
  13. #region Fields
  14. string documentation;
  15. #endregion // Fields
  16. #region Constructors
  17. protected DocumentableItem ()
  18. {
  19. documentation = String.Empty;
  20. }
  21. #endregion // Constructors
  22. #region Properties
  23. [XmlElement ("documentation")]
  24. [DefaultValue ("")]
  25. public string Documentation {
  26. get { return documentation; }
  27. set { documentation = value; }
  28. }
  29. #endregion // Properties
  30. }
  31. }