BasicHttpBinding.IBindingRuntimePreferences.ReceiveSynchronously Property

Definition

Gets a value that indicates whether incoming requests are handled synchronously or asynchronously.

C#
bool System.ServiceModel.Channels.IBindingRuntimePreferences.ReceiveSynchronously { get; }

Property Value

Always false.

Implements

Examples

This example gets the ReceiveSynchronously value.

C#
BasicHttpBinding binding = new BasicHttpBinding();
IBindingRuntimePreferences s = (binding as IBindingRuntimePreferences);
bool receiveSynchronously = s.ReceiveSynchronously;

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0