| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // 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 {
- if (value == null)
- documentation = String.Empty;
- else
- documentation = value;
- }
- }
-
- #endregion // Properties
- }
- }
|