Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SoapParameterStyle Enumeration

 

Specifies how parameters are formatted in a SOAP message.

Namespace:   System.Web.Services.Protocols
Assembly:  System.Web.Services (in System.Web.Services.dll)

public enum class SoapParameterStyle

Member nameDescription
Bare

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.

Default

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.

Wrapped

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

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft