SoapMethodAttribute.ReturnXmlElementName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置用于来自目标方法的返回值的 XML 元素名称。
public:
property System::String ^ ReturnXmlElementName { System::String ^ get(); void set(System::String ^ value); };
public string ReturnXmlElementName { get; set; }
member this.ReturnXmlElementName : string with get, set
Public Property ReturnXmlElementName As String
属性值
用于来自目标方法的返回值的 XML 元素名称。
示例
下面的代码示例说明如何使用 ReturnXmlElementName 属性。 此代码示例是为 SoapMethodAttribute 类提供的一个更大示例的一部分。
[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 );
}
[SoapMethod(
ResponseXmlElementName="ExampleResponseElement",
ResponseXmlNamespace=
"http://example.org/MethodResponseXmlNamespace",
ReturnXmlElementName="HelloMessage",
SoapAction="http://example.org/ExampleSoapAction#GetHello",
XmlNamespace="http://example.org/MethodCallXmlNamespace")]
public string GetHello(string name)
{
return "Hello, " + name;
}
注解
此属性的默认值为“__return”字符串。