다음을 통해 공유


HttpRuntimeSection.MinLocalRequestFreeThreads 속성

정의

로컬 요청을 처리하는 데 필요한 최소 자유 스레드 수를 가져오거나 설정합니다.

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

속성 값

Int32

로컬 요청에 할당된 사용 가능한 스레드의 최소 수입니다. 기본값은 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 유지에 사용할 수 있도록 새 로컬 요청을 실행 하는 자유 스레드 수를 정의 합니다. 의도 웹 서버에 재귀 재진입으로 교착 상태가 발생 하는 방지 하기 위해서입니다.

적용 대상

추가 정보