WSDualHttpBinding.IBindingRuntimePreferences.ReceiveSynchronously 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
들어오는 요청이 동기적으로 처리되는지 또는 비동기적으로 처리되는지를 나타내는 값을 가져옵니다.
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
속성 값
요청이 비동기적으로 처리되면 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
설명
이 값은 서비스 모델 동작을 사용하여 변경할 수 있습니다.