SoapMessage.OneWay 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出套用至 XML Web Service 方法之 OneWay 或 SoapDocumentMethodAttribute 屬性 (Attribute) 的 SoapRpcMethodAttribute 屬性 (Property)。
public:
abstract property bool OneWay { bool get(); };
public abstract bool OneWay { get; }
member this.OneWay : bool
Public MustOverride ReadOnly Property OneWay As Boolean
屬性值
如果已套用至 XML Web Service 方法之 OneWay 或 SoapDocumentMethodAttribute 的 SoapRpcMethodAttribute 屬性為 true
,則為 true
,否則為 false
。
範例
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
備註
如需單向 XML Web 服務方法的詳細資訊, SoapDocumentMethodAttribute.OneWay 請參閱 或 SoapRpcMethodAttribute 的 屬性 SoapDocumentMethodAttribute 。
屬性 OneWay 可在 的所有階段 SoapMessageStage 中存取。