Udostępnij za pośrednictwem


SoapMessage.Action Właściwość

Definicja

Po zastąpieniu w klasie pochodnej pobiera pole nagłówka żądania HTTP protokołu SOAPAction dla żądania SOAP lub odpowiedzi PROTOKOŁU SOAP.

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

Wartość właściwości

String

Pole nagłówka żądania HTTP protokołu SOAP dla żądania PROTOKOŁU SOAP lub odpowiedzi PROTOKOŁU SOAP.

Przykłady

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)

Uwagi

Dostęp Action do właściwości można uzyskać podczas dowolnego SoapMessageStageobiektu .

Dotyczy