SoapMessage.OneWay Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
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
true
OneWay 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.