SoapParameterStyle Enum

Definition

Specifies how parameters are formatted in a SOAP message.

C#
public enum SoapParameterStyle
Inheritance
SoapParameterStyle

Fields

Name Value Description
Default 0

Specifies using the default SoapParameterStyle for the XML Web service. The default for an XML Web service can be set by applying a SoapDocumentServiceAttribute to the class implementing the XML Web service. If a SoapDocumentServiceAttribute is not applied to the class implementing the XML Web service, the default is Wrapped.

Bare 1

Parameters sent to and from an XML Web service method are placed in XML elements directly following the Body element of a SOAP request or SOAP response.

Wrapped 2

Parameters sent to and from an XML Web service method are encapsulated within a single XML element following the Body element of the XML portion of a SOAP request or SOAP response.

Remarks

The SoapParameterStyle can be set when applying a SoapDocumentMethodAttribute to an XML Web service method or a method of a client proxy class. The SoapParameterStyle can also be set by applying a SoapDocumentServiceAttribute to a class implementing an XML Web service.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also