HttpMethodAttribute Constructors

Definition

Initializes a new instance of the HttpMethodAttribute class.

Overloads

HttpMethodAttribute()

Initializes a new instance of the HttpMethodAttribute class.

HttpMethodAttribute(Type, Type)

Initializes a new instance of the HttpMethodAttribute.

HttpMethodAttribute()

Initializes a new instance of the HttpMethodAttribute class.

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

Applies to

HttpMethodAttribute(Type, Type)

Initializes a new instance of the 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)

Parameters

returnFormatter
Type

Initializes the ReturnFormatter property to a Type that deserializes the response from an XML Web service method.

parameterFormatter
Type

Initializes the ParameterFormatter property to a Type that serializes parameters sent from an XML Web service client to an XML Web service method.

Applies to