Share via


SoapMethodAttribute.XmlNamespace プロパティ

定義

ターゲット メソッドの、リモート メソッドの呼び出しのシリアル化中に使用する XML 名前空間を取得または設定します。

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

プロパティ値

ターゲット メソッドの、リモート メソッドの呼び出しのシリアル化中に使用する XML 名前空間。

次のコード例は、XmlNamespace プロパティの使用方法を示しています。 このコード例は、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;
}

適用対象