InstanceContext.ManualFlowControlLimit 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
인스턴스 컨텍스트에서 처리할 수 있는 메시지의 개수 제한을 가져오거나 설정합니다.
public:
property int ManualFlowControlLimit { int get(); void set(int value); };
public int ManualFlowControlLimit { get; set; }
member this.ManualFlowControlLimit : int with get, set
Public Property ManualFlowControlLimit As Integer
속성 값
인스턴스 컨텍스트에서 처리할 수 있는 메시지의 개수입니다.
예제
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;
}
설명
값이 0에 ManualFlowControlLimit 도달하면 더 이상 메시지를 처리할 수 없습니다.