SoapMethodAttribute.SoapAction 属性

定义

获取或设置与用此方法发送的 HTTP 请求一起使用的 SOAPAction 标头字段。 目前未实现此属性。

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

属性值

与用此方法发送的 HTTP 请求一起使用的 SOAPAction 标头字段。

示例

下面的代码示例说明如何使用 SoapAction 属性。 此代码示例是为 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;
}

注解

目前未实现此属性。

SOAPAction HTTP 请求标头字段指示 SOAP HTTP 请求的意图。 有关 SOAPAction 字段的详细信息,请参阅 W3C 规范的 SOAPAction HTTP 标头字段 部分。

适用于