HtmlFormParameterReader Class
Reads incoming request parameters for Web services implemented using HTTP, with name-value pairs encoded like an HTML form rather than as a SOAP message.
Assembly: System.Web.Services (in System.Web.Services.dll)
System.Web.Services.Protocols.MimeFormatter
System.Web.Services.Protocols.MimeParameterReader
System.Web.Services.Protocols.ValueCollectionParameterReader
System.Web.Services.Protocols.HtmlFormParameterReader
| Name | Description | |
|---|---|---|
![]() | HtmlFormParameterReader() | Initializes a new instance of the HtmlFormParameterReader class. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetInitializer(LogicalMethodInfo) | Returns an initializer for the specified method.(Inherited from ValueCollectionParameterReader.) |
![]() | GetInitializers(LogicalMethodInfo[]) | When overridden in a derived class, returns an array of initializer objects corresponding to an input array of method definitions.(Inherited from MimeFormatter.) |
![]() | GetType() | |
![]() | Initialize(Object) | Initializes an instance.(Inherited from ValueCollectionParameterReader.) |
![]() | MemberwiseClone() | |
![]() | Read(HttpRequest) | Reads name-value pairs into Web method parameter values.(Overrides MimeParameterReader.Read(HttpRequest).) |
![]() | Read(NameValueCollection) | Translates a collection of name/value pairs into an array of objects representing method parameter values.(Inherited from ValueCollectionParameterReader.) |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
HtmlFormParameterReader and other classes in the System.Web.Services.Protocols namespace support the .NET Framework's implementations of Web services via the HTTP-GET and HTTP-POST operations. Web service writers and readers serialize and deserialize, respectively, between the parameters or return objects of Web methods and the HTTP request or response streams. Web service writers and readers use HTTP for transport but don't exchange messages using the SOAP standard. The service-side HtmlFormParameterReader class provides a Read method to read parameter name-value pairs that are encoded into the body of an HTTP request with the MIME type application/x-www-form-urlencoded.
You typically will not need to use HtmlFormParameterReader directly. HTTP-POST Web services are enabled when an ASP.NET configuration file's (Web.config) <protocols> Element element contains an <add> Element for <protocols> element whose name attribute's value is "HttpPost". The HtmlFormParameterReader class is automatically used when an HTTP-POST Web service is enabled and an applicable HTTP request is received.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

