DiscoveryExceptionDictionary.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // System.Web.Services.Protocols.DiscoveryExceptionDictionary.cs
  3. //
  4. // Author:
  5. // Dave Bettin ([email protected])
  6. //
  7. // Copyright (C) Dave Bettin, 2002
  8. //
  9. using System.Collections;
  10. namespace System.Web.Services.Discovery {
  11. public sealed class DiscoveryExceptionDictionary : DictionaryBase {
  12. #region Constructors
  13. [MonoTODO]
  14. public DiscoveryExceptionDictionary ()
  15. {
  16. throw new NotImplementedException ();
  17. }
  18. #endregion // Constructors
  19. #region Properties
  20. public Exception this[string url] {
  21. [MonoTODO]
  22. get { throw new NotImplementedException (); }
  23. [MonoTODO]
  24. set { throw new NotImplementedException (); }
  25. }
  26. public ICollection Keys {
  27. [MonoTODO]
  28. get { throw new NotImplementedException (); }
  29. }
  30. public ICollection Values {
  31. [MonoTODO]
  32. get { throw new NotImplementedException (); }
  33. }
  34. #endregion // Properties
  35. #region Methods
  36. [MonoTODO]
  37. public void Add (string url, Exception value)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public bool Contains (string url)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public void Remove (string url)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. #endregion // Methods
  52. }
  53. }