Partager via


SoapMessage.Action Propriété

Définition

En cas de substitution dans une classe dérivée, la méthode obtient le champ d'en-tête de demande HTTP SOAPAction pour la demande ou la réponse 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

Valeur de propriété

String

Champ d'en-tête de demande HTTP SOAPAction pour la demande ou la réponse SOAP.

Exemples

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)

Remarques

La Action propriété est accessible pendant n’importe quel SoapMessageStage.

S’applique à