This documentation is archived and is not being maintained.
OperationMessage.Message Property
.NET Framework 1.1
Gets or sets an abstract, typed definition of the data being communicated.
[Visual Basic] Public Property Message As XmlQualifiedName [C#] public XmlQualifiedName Message {get; set;} [C++] public: __property XmlQualifiedName* get_Message(); public: __property void set_Message(XmlQualifiedName*); [JScript] public function get Message() : XmlQualifiedName; public function set Message(XmlQualifiedName);
Property Value
An XmlQualifiedName.
Example
[Visual Basic] Dim myInputOperationMessage As OperationMessage = _ CType(New OperationInput(), OperationMessage) Dim myXmlQualifiedName As New XmlQualifiedName("AddSoapIn", _ myDescription.TargetNamespace) myInputOperationMessage.Message = myXmlQualifiedName [C#] OperationMessage myInputOperationMessage = (OperationMessage) new OperationInput(); XmlQualifiedName myXmlQualifiedName = new XmlQualifiedName( "AddSoapIn", myDescription.TargetNamespace); myInputOperationMessage.Message = myXmlQualifiedName; [C++] OperationMessage* myInputOperationMessage = dynamic_cast<OperationMessage*> (new OperationInput()); XmlQualifiedName* myXmlQualifiedName = new XmlQualifiedName( S"AddSoapIn", myDescription->TargetNamespace); myInputOperationMessage->Message = myXmlQualifiedName;
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
OperationMessage Class | OperationMessage Members | System.Web.Services.Description Namespace
Show: