SoapMethodAttribute.SoapAction 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定用於這個方法所傳送 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 標頭欄位 段一節。