ProcessModelSection.MinWorkerThreads プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
CLR スレッド プールにおける CPU あたりのワーカー スレッド数の下限を取得または設定します。
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
プロパティ値
CLR スレッド プール内の CPU あたりのワーカー スレッドの最小数。
- 属性
例
MinWorkerThreads プロパティへのアクセス方法を次のコード例に示します。
// 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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET