다음을 통해 공유


SoapMessage.OneWay 속성

정의

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

속성 값

Boolean

XML Web services 메서드에 적용된 OneWay 또는 SoapDocumentMethodAttributeSoapRpcMethodAttribute 속성이 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입니다.

적용 대상

추가 정보