InstanceContext.ManualFlowControlLimit Property

Definition

Gets or sets a limit on the number of messages that can be processed by the instance context.

C#
public int ManualFlowControlLimit { get; set; }

Property Value

The number of messages that can be processed by the instance context.

Examples

C#
Uri baseAddress = new Uri("http://localhost:8000/ServiceModelSamples/service");

// Create a ServiceHost for the CalculatorService type and provide the base address.
using (ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress))
{
    serviceHost.Open();
    OperationContext operationContext = OperationContext.Current;
    InstanceContext instanceContext = operationContext.InstanceContext;
    instanceContext.ManualFlowControlLimit = 100;
}

Remarks

When the ManualFlowControlLimit value reaches zero no more messages can be processed.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1