OperationMessage::Message Property

 

Gets or sets an abstract, typed definition of the data being communicated.

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

public:
property XmlQualifiedName^ Message {
	XmlQualifiedName^ get();
	void set(XmlQualifiedName^ value);
}

Property Value

Type: System.Xml::XmlQualifiedName^

An XML qualified name.

OperationMessage^ myInputOperationMessage = (OperationMessage^)(gcnew OperationInput);
XmlQualifiedName^ myXmlQualifiedName = gcnew XmlQualifiedName( "AddSoapIn",myDescription->TargetNamespace );
myInputOperationMessage->Message = myXmlQualifiedName;

.NET Framework
Available since 1.1
Return to top
Show: