DiscoveryExceptionDictionary.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. }
  17. #endregion // Constructors
  18. #region Properties
  19. public Exception this[string url] {
  20. [MonoTODO]
  21. get { throw new NotImplementedException (); }
  22. [MonoTODO]
  23. set { throw new NotImplementedException (); }
  24. }
  25. public ICollection Keys {
  26. [MonoTODO]
  27. get { throw new NotImplementedException (); }
  28. }
  29. public ICollection Values {
  30. [MonoTODO]
  31. get { throw new NotImplementedException (); }
  32. }
  33. #endregion // Properties
  34. #region Methods
  35. [MonoTODO]
  36. public void Add (string url, Exception value)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public bool Contains (string url)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public void Remove (string url)
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. #endregion // Methods
  51. }
  52. }