Partager via


SoapMessage.OneWay Propriété

Définition

Obtient une valeur indiquant la propriété OneWay de l'attribut SoapDocumentMethodAttribute ou SoapRpcMethodAttribute appliqué à la méthode de service Web XML.

public:
 abstract property bool OneWay { bool get(); };
public abstract bool OneWay { get; }
member this.OneWay : bool
Public MustOverride ReadOnly Property OneWay As Boolean

Valeur de propriété

Boolean

true si la propriété OneWay de l'attribut SoapDocumentMethodAttribute ou SoapRpcMethodAttribute appliqué à la méthode de service Web XML est true ; sinon, false.

Exemples

if ( message->OneWay )
{
   myStreamWriter->WriteLine(
      "The method invoked on the client shall not wait"
      + " till the server finishes" );
}
else
{
   myStreamWriter->WriteLine(
      "The method invoked on the client shall wait"
      + " till the server finishes" );
}
if(message.OneWay)
   myStreamWriter.WriteLine(
      "The method invoked on the client shall not wait"
      + " till the server finishes");
else
   myStreamWriter.WriteLine(
      "The method invoked on the client shall wait"
      + " till the server finishes");
If message.OneWay Then
   myStreamWriter.WriteLine( _
      "The method invoked on the client shall not wait" & _
      " till the server finishes")
Else
   myStreamWriter.WriteLine( _
      "The method invoked on the client shall wait" & _
      " till the server finishes")
End If

Remarques

Consultez la SoapDocumentMethodAttribute.OneWay propriété ou pour plus d’informations sur les méthodes de SoapDocumentMethodAttribute SoapRpcMethodAttribute service Web XML unidirectionnel.

La OneWay propriété est accessible à toutes les étapes de SoapMessageStage.

S’applique à

Voir aussi