Share via


ProcessModelSection.MinWorkerThreads Eigenschaft

Definition

Ruft die Mindestanzahl von Arbeitsthreads pro CPU im CLR-Threadpool ab oder legt diese fest.

public:
 property int MinWorkerThreads { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("minWorkerThreads", DefaultValue=1)]
[System.Configuration.IntegerValidator(MaxValue=2147483646, MinValue=1)]
public int MinWorkerThreads { get; set; }
[<System.Configuration.ConfigurationProperty("minWorkerThreads", DefaultValue=1)>]
[<System.Configuration.IntegerValidator(MaxValue=2147483646, MinValue=1)>]
member this.MinWorkerThreads : int with get, set
Public Property MinWorkerThreads As Integer

Eigenschaftswert

Int32

Die mindeste Anzahl von Arbeitsthreads pro CPU im CLR-Threadpool.

Attribute

Beispiele

Im folgenden Codebeispiel wird der Zugriff auf die MinWorkerThreads-Eigenschaft veranschaulicht.


  // Get the current MinWorkerThreads property value.
int minWorkerThreads = 
    processModelSection.MinWorkerThreads;

  // Set the MinWorkerThreads property to 2.
  processModelSection.MinWorkerThreads = 2;
' Get the current MinWorkerThreads property value.
   Dim minWorkerThreads As Integer = _
   processModelSection.MinWorkerThreads

' Set the MinWorkerThreads property to 2.
processModelSection.MinWorkerThreads = 2

Gilt für