DiscoveryDocument.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // System.Web.Services.Protocols.DiscoveryDocument.cs
  3. //
  4. // Author:
  5. // Dave Bettin ([email protected])
  6. // Tim Coleman ([email protected])
  7. //
  8. // Copyright (C) Dave Bettin, 2002
  9. // Copyright (C) Tim Coleman, 2002
  10. //
  11. using System.Collections;
  12. using System.IO;
  13. using System.Xml;
  14. using System.Xml.Serialization;
  15. namespace System.Web.Services.Discovery {
  16. [XmlRoot ("discovery", Namespace = "http://schemas.xmlsoap.org/disco/")]
  17. public sealed class DiscoveryDocument {
  18. #region Fields
  19. public const string Namespace = "http://schema.xmlsoap.org/disco/";
  20. #endregion // Fields
  21. #region Constructors
  22. [MonoTODO]
  23. public DiscoveryDocument ()
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. #endregion // Constructors
  28. #region Properties
  29. [XmlIgnore]
  30. public IList References {
  31. [MonoTODO]
  32. get { throw new NotImplementedException (); }
  33. }
  34. #endregion // Properties
  35. #region Methods
  36. [MonoTODO]
  37. public static bool CanRead (XmlReader xmlReader)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public static DiscoveryDocument Read (Stream stream)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public static DiscoveryDocument Read (TextReader textReader)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. [MonoTODO]
  52. public static DiscoveryDocument Read (XmlReader xmlReader)
  53. {
  54. throw new NotImplementedException ();
  55. }
  56. [MonoTODO]
  57. public void Write (Stream stream)
  58. {
  59. throw new NotImplementedException ();
  60. }
  61. [MonoTODO]
  62. public void Write (TextWriter textWriter)
  63. {
  64. throw new NotImplementedException ();
  65. }
  66. [MonoTODO]
  67. public void Write (XmlWriter xmlWriter)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. #endregion // Methods
  72. }
  73. }