ValueCollectionParameterReader.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // System.Web.Services.Protocols.ValueCollectionParameterReader.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Collections.Specialized;
  10. using System.Reflection;
  11. using System.Web;
  12. namespace System.Web.Services.Protocols {
  13. public abstract class ValueCollectionParameterReader : MimeParameterReader {
  14. #region Constructors
  15. [MonoTODO]
  16. protected ValueCollectionParameterReader ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. #endregion // Constructors
  21. #region Methods
  22. [MonoTODO]
  23. public override object GetInitializer (LogicalMethodInfo methodInfo)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public override void Initialize (object o)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public static bool IsSupported (LogicalMethodInfo methodInfo)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public static bool IsSupported (ParameterInfo paramInfo)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. [MonoTODO]
  43. protected object[] Read (NameValueCollection collection)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. #endregion // Methods
  48. }
  49. }