| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // System.Web.Services.Discovery.ExcludePathInfo.cs
- //
- // Author:
- // Dave Bettin ([email protected])
- //
- // Copyright (C) Dave Bettin, 2002
- //
- using System.Xml.Serialization;
- namespace System.Web.Services.Discovery {
- public sealed class ExcludePathInfo {
-
- #region Fields
-
- private string path;
- #endregion // Fields
- #region Constructors
- public ExcludePathInfo ()
- {
- }
-
- public ExcludePathInfo (string path)
- {
- this.path = path;
- }
-
- #endregion // Constructors
- #region Properties
-
- [XmlAttribute("path")]
- public string Path {
- get { return path; }
- set { path = value; }
- }
-
- #endregion // Properties
- }
- }
|