Aracılığıyla paylaş


SoapMethodAttribute.ResponseXmlNamespace Özellik

Tanım

Hedef yönteme yöntem yanıtı için kullanılan XML öğesi ad alanını alır veya ayarlar.

public:
 property System::String ^ ResponseXmlNamespace { System::String ^ get(); void set(System::String ^ value); };
public string ResponseXmlNamespace { get; set; }
member this.ResponseXmlNamespace : string with get, set
Public Property ResponseXmlNamespace As String

Özellik Değeri

Hedef yönteme yöntem yanıtı için kullanılan XML öğesi ad alanı.

Örnekler

Aşağıdaki kod örneği özelliğinin ResponseXmlNamespace nasıl kullanılacağını gösterir. Bu kod örneği, sınıfı için SoapMethodAttribute sağlanan daha büyük bir örneğin parçasıdır.

[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;
}

Şunlara uygulanır