Sdílet prostřednictvím


SoapMessage.Action Vlastnost

Definice

Při přepsání v odvozené třídě získá pole hlavičky požadavku SOAPAction HTTP pro požadavek SOAP nebo odpověď 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

Hodnota vlastnosti

String

Pole hlavičky požadavku HTTP SOAPAction pro požadavek SOAP nebo odpověď SOAP.

Příklady

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)

Poznámky

Vlastnost Action lze získat přístup během libovolného SoapMessageStageobjektu .

Platí pro