SoapMessage.OneWay 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XML Web services 메서드에 적용된 OneWay 또는 SoapDocumentMethodAttribute 특성의 SoapRpcMethodAttribute 속성을 나타내는 값을 가져옵니다.
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 services 메서드에 적용된 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
설명
참조 된 SoapDocumentMethodAttribute.OneWay 속성을 SoapDocumentMethodAttribute 또는 SoapRpcMethodAttribute 단방향 XML 웹 서비스 메서드에 대 한 자세한 내용은 합니다.
합니다 OneWay 속성의 모든 단계에서 액세스할 수 SoapMessageStage입니다.