UrlParameterReader Class
Reads incoming request parameters for Web services implemented using HTTP with name-value pairs encoded in the URL's query string rather than as a SOAP message.
System.Web.Services.Protocols::MimeFormatter
System.Web.Services.Protocols::MimeParameterReader
System.Web.Services.Protocols::ValueCollectionParameterReader
System.Web.Services.Protocols::UrlParameterReader
Assembly: System.Web.Services (in System.Web.Services.dll)
The UrlParameterReader type exposes the following members.
| 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetInitializer | Returns an initializer for the specified method. (Inherited from ValueCollectionParameterReader.) |
![]() | GetInitializers(array<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 | Gets the Type of the current instance. (Inherited from Object.) |
![]() | Initialize | Initializes an instance. (Inherited from ValueCollectionParameterReader.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Read(HttpRequest) | Reads name/value pairs encoded in the query string of an HTTP request 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.) |
UrlParameterReader 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 UrlParameterReader class provides a service-side method, Read, to read parameter name/value pairs that are encoded into an HTTP request URL's query string. For example, in the URL http://contoso.com?a=1&b=2, a and b are parameter names, and 1 and 2 are their values.
You typically will not need to use UrlParameterReader directly. HTTP-GET Web services are enabled when an ASP.NET configuration file's (Web.config) protocols element contains an add element whose name attribute's value is "HttpGet". The UrlParameterReader class is automatically used when an HTTP-GET Web service is enabled and an applicable HTTP request is received.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

