UrlParameterReader 类

定义

读取使用 HTTP 实现的 Web 服务的传入请求参数,参数的名称/值对编码到 URL 请求字符串中,而不是编码为 SOAP 消息。

public ref class UrlParameterReader : System::Web::Services::Protocols::ValueCollectionParameterReader
public class UrlParameterReader : System.Web.Services.Protocols.ValueCollectionParameterReader
type UrlParameterReader = class
    inherit ValueCollectionParameterReader
Public Class UrlParameterReader
Inherits ValueCollectionParameterReader
继承

注解

UrlParameterReader命名空间中的 和其他类支持 .NET Framework HTTP-GET 和 HTTP-POST 操作实现 System.Web.Services.Protocols Web 服务。 Web 服务编写器和读取器分别在 Web 方法的参数或返回对象与 HTTP 请求或响应流之间序列化和反序列化。 Web 服务编写和读取器使用 HTTP 进行传输,但不使用 SOAP 标准交换消息。

类提供服务端方法 ,用于读取编码为 HTTP 请求 URL 查询字符串 UrlParameterReader Read 的参数名称/值对。 例如,在 URL http://contoso.com?a=1&b=2a , 和 b 是参数名称, 12 是它们的值。

通常不需要直接 UrlParameterReader 使用 。 当配置文件的 ASP.NET 元素包含其名称属性值为"" (Web.config) 元素时,将启用 HTTP-GET Web protocols add HttpGet 服务。 启用 HTTP-GET Web 服务并收到适用的 HTTP 请求时, UrlParameterReader 会自动使用 类。

构造函数

UrlParameterReader()

初始化 UrlParameterReader 类的新实例。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetInitializer(LogicalMethodInfo)

返回指定方法的初始值设定项。

(继承自 ValueCollectionParameterReader)
GetInitializers(LogicalMethodInfo[])

在派生类中重写时,返回与方法定义的输入数组对应的初始值设定项对象的数组。

(继承自 MimeFormatter)
GetType()

获取当前实例的 Type

(继承自 Object)
Initialize(Object)

初始化一个实例。

(继承自 ValueCollectionParameterReader)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
Read(HttpRequest)

将编码到 HTTP 请求的查询字符串中的名称/值对读取为 Web 方法参数值。

Read(NameValueCollection)

将名称/值对的集合转换为表示方法参数值的对象数组。

(继承自 ValueCollectionParameterReader)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于

另请参阅