HttpRuntimeSection.MinFreeThreads 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 구성 범위에 있는 리소스에 대한 요청을 처리하기 전에 해제해야 하는 최소 스레드 수를 가져오거나 설정합니다.
public:
property int MinFreeThreads { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("minFreeThreads", DefaultValue=8)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MinFreeThreads { get; set; }
[<System.Configuration.ConfigurationProperty("minFreeThreads", DefaultValue=8)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MinFreeThreads : int with get, set
Public Property MinFreeThreads As Integer
속성 값
이 구성 범위의 요청을 처리하기 전에 CLR(공용 언어 런타임) 스레드 풀에 있는 최소 자유 스레드 수입니다. 기본값은 8
입니다.
- 특성
예제
다음 예제에서는 MinFreeThreads 속성을 사용하는 방법을 보여 줍니다.
// Get the MinFreeThreads property value.
Response.Write("MinFreeThreads: " +
configSection.MinFreeThreads + "<br>");
// Set the MinFreeThreads property value to 16
configSection.MinFreeThreads = 16;
' Get the MinFreeThreads property value.
Response.Write("MinFreeThreads: " & _
configSection.MinFreeThreads & "<br>")
' Set the MinFreeThreads property value to 16
configSection.MinFreeThreads = 16
설명
MinFreeThreads 속성 요청을 실행 하려면 사용 가능한 스레드의 최소 수를 정의 합니다. 충분 한 수의 스레드를 사용할 수 없을 경우 요청이 큐에 대기 중인 유지 됩니다 하 고 필요한 크기의 스레드 표시 될 때까지 스레드 가용성을 정기적으로 검사 계속 됩니다. 기본값은 8
입니다.
참고
ASP.NET 요청 처리를 완료 하려면 추가 스레드를 필요로 하는 무료이 많은 스레드를 유지 합니다.