다음을 통해 공유


SoapMethodAttribute.ReturnXmlElementName 속성

정의

대상 메서드의 반환 값에 사용되는 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" 문자열입니다.

적용 대상