SoapDocumentMethodAttribute Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents an attribute indicating that a soap method uses document formatting.
public class SoapDocumentMethodAttribute : Attribute
type SoapDocumentMethodAttribute = class
inherit Attribute
Public Class SoapDocumentMethodAttribute
Inherits Attribute
- Inheritance
-
SoapDocumentMethodAttribute
Remarks
Web Services Description Language (WSDL) defines two styles for how an XML Web service method, which it calls an operation, can be formatted in a SOAP message: RPC and Document. Document refers to formatting the XML Web service method according to an XSD schema. The Document style refers to formatting the Body element as a series of one or more message parts following the Body element. Exactly how the individual message parts is determined by the Use and ParameterStyle properties. The Use property determines whether parameters are formatted Encoded or Literal. The ParameterStyle determines whether the parameters are encapsulated within a single message part following the Body element or whether each parameter is an individual message part.
Constructors
SoapDocumentMethodAttribute() |
Initializes a new instance of the SoapDocumentMethodAttribute class. |