Sdílet prostřednictvím


SoapMessage.OneWay Vlastnost

Definice

Získá hodnotu označující OneWay vlastnost buď SoapDocumentMethodAttribute nebo SoapRpcMethodAttribute atribut použitý pro metodu webové služby XML.

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

Hodnota vlastnosti

Boolean

trueOneWay je-li vlastnost SoapDocumentMethodAttribute nebo SoapRpcMethodAttribute použit pro metodu webové služby XML je true; jinak, false.

Příklady

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

Poznámky

Podívejte se na SoapDocumentMethodAttribute.OneWay SoapDocumentMethodAttribute vlastnost nebo SoapRpcMethodAttribute podrobnosti o jednosměrných metodách webové služby XML.

Vlastnost OneWay je přístupná ve všech fázích SoapMessageStage.

Platí pro

Viz také