MessageContractAttribute Class
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Defines a strongly typed class that corresponds to a SOAP message.
Inheritance Hierarchy
System.Object
System.Attribute
System.ServiceModel.MessageContractAttribute
Namespace: System.ServiceModel
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
<AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Struct, AllowMultiple := False)> _
Public NotInheritable Class MessageContractAttribute _
Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct, AllowMultiple = false)]
public sealed class MessageContractAttribute : Attribute
The MessageContractAttribute type exposes the following members.
Constructors
Name | Description | |
---|---|---|
MessageContractAttribute | Initializes a new instance of the MessageContractAttribute class. |
Top
Properties
Name | Description | |
---|---|---|
IsWrapped | Gets or sets a value that specifies whether the message body has a wrapper element. | |
WrapperName | Gets or sets the name of the wrapper element of the message body. | |
WrapperNamespace | Gets or sets the namespace of the message body wrapper element. |
Top
Methods
Name | Description | |
---|---|---|
Equals | Infrastructure. Returns a value that indicates whether this instance is equal to a specified object. (Inherited from Attribute.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Returns the hash code for this instance. (Inherited from Attribute.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Match | When overridden in a derived class, returns a value that indicates whether this instance equals a specified object. (Inherited from Attribute.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Remarks
Use the MessageContractAttribute attribute to specify the structure of the SOAP envelope for a particular message. Your service can then use the message as a parameter or return type in service operations.
To implement a message contract for a type, annotate it with MessageContractAttribute and annotate one or more of the class's fields or properties with MessageBodyMemberAttribute, MessageHeaderAttribute, or MessageHeaderArrayAttribute.
Note: |
---|
System.ServiceModel.MessageParameterAttribute is not a message contract attribute and cannot be used in conjunction with MessageContractAttribute. |
Use the Action and ReplyAction properties to specify the value of the <Action> element in the SOAP message.
Use the IsWrapped property to indicate whether the message body has a wrapper element.
If the message body has a wrapper element, use the WrapperName property to specify the name of the wrapping element.
Use the WrapperNamespace property to specify the namespace of the wrapping element.
Examples
The following code example shows the use of the MessageContractAttribute to control the SOAP envelope structure for both the request message and the response message, and the use of both the MessageHeaderAttribute (to create a SOAP header for the response message) and the MessageBodyMemberAttribute (to specify the bodies of both the request and response message). The code example contains an example of each message when sent.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.