Aracılığıyla paylaş


HttpRuntimeSection.MinLocalRequestFreeThreads Özellik

Tanım

Yerel bir isteğe hizmet vermek için gereken en az boş iş parçacığı sayısını alır veya ayarlar.

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

Özellik Değeri

Int32

Yerel isteklere atanan en az boş iş parçacığı sayısı. Varsayılan değer 4'tür.

Öznitelikler

Örnekler

Aşağıdaki örnekte özelliğinin nasıl kullanılacağı gösterilmektedir 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

Açıklamalar

özelliği, MinLocalRequestFreeThreads ASP.NET yeni yerel isteklerin yürütülmesine izin vermek için kullanılabilir durumda tutan boş iş parçacığı sayısını tanımlar. Amaç, Web sunucusuna özyinelemeli yeniden giriş ile olası bir kilitlenmeyi önlemektir.

Şunlara uygulanır

Ayrıca bkz.