| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Web.Services.Description.DocumentableItem.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.ComponentModel;
- using System.Xml.Serialization;
- namespace System.Web.Services.Description {
- public abstract class DocumentableItem {
- #region Fields
- string documentation;
- #endregion // Fields
- #region Constructors
- protected DocumentableItem ()
- {
- documentation = String.Empty;
- }
-
- #endregion // Constructors
- #region Properties
- [XmlElement ("documentation")]
- [DefaultValue ("")]
- public string Documentation {
- get { return documentation; }
- set { documentation = value; }
- }
-
- #endregion // Properties
- }
- }
|