| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // System.Web.Services.Protocols.ValueCollectionParameterReader.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Collections.Specialized;
- using System.Reflection;
- using System.Web;
- namespace System.Web.Services.Protocols {
- public abstract class ValueCollectionParameterReader : MimeParameterReader {
- #region Constructors
- [MonoTODO]
- protected ValueCollectionParameterReader ()
- {
- throw new NotImplementedException ();
- }
-
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public override object GetInitializer (LogicalMethodInfo methodInfo)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Initialize (object o)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool IsSupported (LogicalMethodInfo methodInfo)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool IsSupported (ParameterInfo paramInfo)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected object[] Read (NameValueCollection collection)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|