ExcludePathInfo.cs 706 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Web.Services.Discovery.ExcludePathInfo.cs
  3. //
  4. // Author:
  5. // Dave Bettin ([email protected])
  6. //
  7. // Copyright (C) Dave Bettin, 2002
  8. //
  9. using System.Xml.Serialization;
  10. namespace System.Web.Services.Discovery {
  11. public sealed class ExcludePathInfo {
  12. #region Fields
  13. private string path;
  14. #endregion // Fields
  15. #region Constructors
  16. public ExcludePathInfo ()
  17. {
  18. }
  19. public ExcludePathInfo (string path)
  20. {
  21. this.path = path;
  22. }
  23. #endregion // Constructors
  24. #region Properties
  25. [XmlAttribute("path")]
  26. public string Path {
  27. get { return path; }
  28. set { path = value; }
  29. }
  30. #endregion // Properties
  31. }
  32. }