次の方法で共有


SoapMessage.Action プロパティ

定義

派生クラスでオーバーライドされると、SOAP 要求または SOAP 応答の SOAPAction HTTP 要求ヘッダー フィールドを取得します。

public:
 abstract property System::String ^ Action { System::String ^ get(); };
public abstract string Action { get; }
member this.Action : string
Public MustOverride ReadOnly Property Action As String

プロパティ値

String

SOAP 要求または SOAP 応答の SOAPAction HTTP 要求ヘッダー フィールド。

myStreamWriter->WriteLine( "The contents of the SOAPAction HTTP header is:" );
myStreamWriter->WriteLine( "\t{0}", message->Action );
myStreamWriter.WriteLine(
   "The contents of the SOAPAction HTTP header is:");
myStreamWriter.WriteLine("\t" + message.Action);
myStreamWriter.WriteLine("The contents of the SOAPAction HTTP header is:")
myStreamWriter.WriteLine(ControlChars.Tab & message.Action)

注釈

プロパティには Action 、任意 SoapMessageStageの中にアクセスできます。

適用対象