ExcludePathInfo.cs 792 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. [MonoTODO]
  17. public ExcludePathInfo ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. public ExcludePathInfo (string path) : this()
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. #endregion // Constructors
  26. #region Properties
  27. [XmlAttribute("path")]
  28. public string Path {
  29. get { return path; }
  30. set { path = value; }
  31. }
  32. #endregion // Properties
  33. }
  34. }