DynamicDiscoveryDocument.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // System.Web.Services.Discovery.DynamicDiscoveryDocument.cs
  3. //
  4. // Author:
  5. // Dave Bettin ([email protected])
  6. //
  7. // Copyright (C) Dave Bettin, 2002
  8. //
  9. using System.IO;
  10. using System.Xml.Serialization;
  11. namespace System.Web.Services.Discovery {
  12. [XmlRootAttribute("dynamicDiscovery", Namespace="urn:schemas-dynamicdiscovery:disco.2000-03-17", IsNullable=true)]
  13. public sealed class DynamicDiscoveryDocument {
  14. #region Fields
  15. public const string Namespace = "urn:schemas-dynamicdiscovery:disco.2000-03-17";
  16. #endregion // Fields
  17. #region Constructors
  18. [MonoTODO]
  19. public DynamicDiscoveryDocument ()
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. #endregion // Constructors
  24. #region Properties
  25. [XmlElement("exclude", typeof(ExcludePathInfo))]
  26. public ExcludePathInfo[] ExcludePaths {
  27. [MonoTODO]
  28. get { throw new NotImplementedException (); }
  29. [MonoTODO]
  30. set { throw new NotImplementedException (); }
  31. }
  32. #endregion // Properties
  33. #region Methods
  34. [MonoTODO]
  35. public static DynamicDiscoveryDocument Load (Stream stream)
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. [MonoTODO]
  40. public void Write (Stream stream)
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. #endregion // Methods
  45. }
  46. }