HttpMethodAttribute 构造函数

定义

初始化 HttpMethodAttribute 类的新实例。

重载

HttpMethodAttribute()

初始化 HttpMethodAttribute 类的新实例。

HttpMethodAttribute(Type, Type)

初始化 HttpMethodAttribute 的新实例。

HttpMethodAttribute()

初始化 HttpMethodAttribute 类的新实例。

public:
 HttpMethodAttribute();
public HttpMethodAttribute ();
Public Sub New ()

适用于

HttpMethodAttribute(Type, Type)

初始化 HttpMethodAttribute 的新实例。

public:
 HttpMethodAttribute(Type ^ returnFormatter, Type ^ parameterFormatter);
public HttpMethodAttribute (Type returnFormatter, Type parameterFormatter);
new System.Web.Services.Protocols.HttpMethodAttribute : Type * Type -> System.Web.Services.Protocols.HttpMethodAttribute
Public Sub New (returnFormatter As Type, parameterFormatter As Type)

参数

returnFormatter
Type

ReturnFormatter 属性初始化为 Type,后者对来自 XML Web services 方法的响应进行反序列化。

parameterFormatter
Type

ParameterFormatter 属性初始化为一个 Type,它对从 XML Web services 客户端发送到 XML Web services 方法的参数进行序列化。

适用于