HttpRuntimeSection.MinLocalRequestFreeThreads 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
로컬 요청을 처리하는 데 필요한 최소 자유 스레드 수를 가져오거나 설정합니다.
public:
property int MinLocalRequestFreeThreads { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("minLocalRequestFreeThreads", DefaultValue=4)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MinLocalRequestFreeThreads { get; set; }
[<System.Configuration.ConfigurationProperty("minLocalRequestFreeThreads", DefaultValue=4)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MinLocalRequestFreeThreads : int with get, set
Public Property MinLocalRequestFreeThreads As Integer
속성 값
로컬 요청에 할당된 사용 가능한 스레드의 최소 수입니다. 기본값은 4입니다.
- 특성
예제
다음 예제에서는 MinLocalRequestFreeThreads 속성을 사용하는 방법을 보여 줍니다.
// Get the MinLocalRequestFreeThreads property value.
Response.Write("MinLocalRequestFreeThreads: " +
configSection.MinLocalRequestFreeThreads + "<br>");
// Set the MinLocalRequestFreeThreads property value to 8.
configSection.MinLocalRequestFreeThreads = 8;
' Get the MinLocalRequestFreeThreads property value.
Response.Write("MinLocalRequestFreeThreads: " & _
configSection.MinLocalRequestFreeThreads & "<br>")
' Set the MinLocalRequestFreeThreads property value to 8.
configSection.MinLocalRequestFreeThreads = 8
설명
MinLocalRequestFreeThreads 속성 ASP.NET 유지에 사용할 수 있도록 새 로컬 요청을 실행 하는 자유 스레드 수를 정의 합니다. 의도 웹 서버에 재귀 재진입으로 교착 상태가 발생 하는 방지 하기 위해서입니다.