| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // System.Web.Services.Protocols.HtmlFormParameterReader.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web;
- using System.Web.Services;
- namespace System.Web.Services.Protocols {
- public class HtmlFormParameterReader : ValueCollectionParameterReader {
- #region Constructors
- public HtmlFormParameterReader ()
- {
- }
-
- #endregion // Constructors
- #region Methods
- public override object[] Read (HttpRequest request)
- {
- return Read (request.Form);
- }
- #endregion // Methods
- }
- }
|