Udostępnij za pośrednictwem


WSDualHttpBinding.IBindingRuntimePreferences.ReceiveSynchronously Właściwość

Definicja

Pobiera wartość wskazującą, czy żądania przychodzące są obsługiwane synchronicznie lub asynchronicznie.

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

Wartość właściwości

Boolean

true jeśli żądania są obsługiwane synchronicznie; false w przypadku obsługi asynchronicznej. Zwracana wartość to zawsze , falseaby obsługiwać żądania asynchronicznie.

Implementuje

Przykłady

W poniższych przykładach pokazano, jak uzyskać IBindingRuntimePreferences.ReceiveSynchronously wartość.

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

Uwagi

Tę wartość można zmienić przy użyciu zachowania modelu usługi.

Dotyczy