SoapMethodAttribute::ReturnXmlElementName Property
.NET Framework (current version)
Gets or sets the XML element name used for the return value from the target method.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System::String^The XML element name used for the return value from the target method.
The default value of this property is the "__return" string.
The following code example shows how to use the ReturnXmlElementName 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
Available since 1.1
Show: