次の方法で共有


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;

適用対象