SoapMethodAttribute::ResponseXmlNamespace Property

 

Gets or sets the XML element namesapce used for method response to the target method.

Namespace:   System.Runtime.Remoting.Metadata
Assembly:  mscorlib (in mscorlib.dll)

public:
property String^ ResponseXmlNamespace {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The XML element namesapce used for method response to the target method.

The following code example shows how to use the ResponseXmlNamespace property. This code example is part of a larger example provided for the SoapMethodAttribute class.

[SoapMethod(
   ResponseXmlElementName="ExampleResponseElement",
   ResponseXmlNamespace=
   "http://example.org/MethodResponseXmlNamespace",
   ReturnXmlElementName="HelloMessage",
   SoapAction="http://example.org/ExampleSoapAction#GetHello",
   XmlNamespace="http://example.org/MethodCallXmlNamespace")]
String^ GetHello( String^ name )
{
   return String::Format( L"Hello, {0}", name );
}

.NET Framework
Available since 1.1
Return to top
Show: