Поделиться через


NetNamedPipeBinding.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

Значение свойства

Значение false, если входящие запросы должны обрабатываться асинхронно.

Реализации

Примеры

В следующем примере показан отрывок файла конфигурации, содержащий раздел для привязки NetNamedPipeBinding со значениями по умолчанию.


NetNamedPipeBinding binding = new NetNamedPipeBinding();
IBindingRuntimePreferences s  =
       binding.GetProperty<IBindingRuntimePreferences>
       (new BindingParameterCollection());
bool receiveSynchronously = s.ReceiveSynchronously;

Применяется к