Aracılığıyla paylaş


ProcessModelSection.MinIOThreads Özellik

Tanım

CLR iş parçacığı havuzundaki CPU başına en az G/Ç iş parçacığı sayısını alır veya ayarlar.

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

Özellik Değeri

Int32

CLR iş parçacığı havuzundaki CPU başına en az G/Ç iş parçacığı sayısı.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğine nasıl erişeceklerini MinIOThreads gösterir.


// Get the current MinIOThreads property value.
int minIOThreads = processModelSection.MinIOThreads;

// Set the MinIOThreads property to 1.
processModelSection.MinIOThreads = 1;
' Get the current MinIOThreads property value.
   Dim minIOThreads As Integer = _
   processModelSection.MinIOThreads

' Set the MinIOThreads property to 1.
processModelSection.MinIOThreads = 1

Şunlara uygulanır