| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // System.Web.Services.Protocols.DiscoveryDocument.cs
- //
- // Author:
- // Dave Bettin ([email protected])
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Dave Bettin, 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Collections;
- using System.IO;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Web.Services.Discovery {
- [XmlRoot ("discovery", Namespace = "http://schemas.xmlsoap.org/disco/")]
- public sealed class DiscoveryDocument {
- #region Fields
-
- public const string Namespace = "http://schema.xmlsoap.org/disco/";
-
- #endregion // Fields
-
- #region Constructors
- [MonoTODO]
- public DiscoveryDocument ()
- {
- throw new NotImplementedException ();
- }
-
- #endregion // Constructors
- #region Properties
-
- [XmlIgnore]
- public IList References {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
-
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public static bool CanRead (XmlReader xmlReader)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static DiscoveryDocument Read (Stream stream)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static DiscoveryDocument Read (TextReader textReader)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static DiscoveryDocument Read (XmlReader xmlReader)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Write (Stream stream)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Write (TextWriter textWriter)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Write (XmlWriter xmlWriter)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|