Udostępnij za pośrednictwem


SoapMessage.OneWay Właściwość

Definicja

Pobiera wartość wskazującą OneWay właściwość SoapDocumentMethodAttribute lub SoapRpcMethodAttribute atrybut zastosowany do metody usługi sieci 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

Wartość właściwości

Boolean

trueOneWay jeśli właściwość SoapDocumentMethodAttribute lub SoapRpcMethodAttribute zastosowana do metody usługi sieci Web XML to true; w przeciwnym razie false.

Przykłady

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

Uwagi

Zapoznaj się z SoapDocumentMethodAttribute właściwością SoapDocumentMethodAttribute.OneWay lubSoapRpcMethodAttribute, aby uzyskać szczegółowe informacje na temat jednokierunkowych metod usługi sieci Web XML.

Właściwość OneWay jest dostępna we wszystkich etapach .SoapMessageStage

Dotyczy

Zobacz też