다음을 통해 공유


WSDualHttpBinding.IBindingRuntimePreferences.ReceiveSynchronously 속성

정의

들어오는 요청이 동기적으로 처리되는지 또는 비동기적으로 처리되는지를 나타내는 값을 가져옵니다.

property bool System::ServiceModel::Channels::IBindingRuntimePreferences::ReceiveSynchronously { bool get(); };
bool System.ServiceModel.Channels.IBindingRuntimePreferences.ReceiveSynchronously { get; }
member this.System.ServiceModel.Channels.IBindingRuntimePreferences.ReceiveSynchronously : bool
 ReadOnly Property ReceiveSynchronously As Boolean Implements IBindingRuntimePreferences.ReceiveSynchronously

속성 값

Boolean

요청이 비동기적으로 처리되면 true이고, 그렇지 않으면 false입니다. 반환되는 값은 항상 false이며 요청을 비동기적으로 처리합니다.

구현

예제

다음 예제에서는 IBindingRuntimePreferences.ReceiveSynchronously 값을 가져오는 방법을 보여 줍니다.

public class TcpChunkingBinding : IBindingRuntimePreferences
{
Public Class TcpChunkingBinding
    Implements IBindingRuntimePreferences
TcpChunkingBinding tcb = new TcpChunkingBinding();
bool isSynchronous = tcb.ReceiveSynchronously;
Dim tcb As New TcpChunkingBinding()
Dim isSynchronous As Boolean = tcb.ReceiveSynchronously

설명

이 값은 서비스 모델 동작을 사용하여 변경할 수 있습니다.

적용 대상