ProcessModelSection.MinIOThreads プロパティとは何? わかりやすく解説 Weblio辞書 (original) (raw)
メモ : このプロパティは、.NET Framework version 2.0 で新しく追加されたものです。
CLR スレッド プールにおける CPU あたりの I/O スレッド数の下限を取得または設定します。
名前空間: System.Web.Configuration
アセンブリ: System.Web (system.web.dll 内)
構文
Public Property MinIOThreads As Integer
Dim instance As ProcessModelSection Dim value As Integer
value = instance.MinIOThreads
instance.MinIOThreads = value
public int MinIOThreads { get; set; }
public: property int MinIOThreads { int get (); void set (int value); }
/** @property */ public int get_MinIOThreads ()
/** @property */ public void set_MinIOThreads (int value)
public function get MinIOThreads () : int
public function set MinIOThreads (value : int)
プロパティ値
CLR スレッド プールにおける CPU あたりの I/O スレッド数の下限。
MinIOThreads プロパティへのアクセス方法を次のコード例に示します。
' Get the current MinIOThreads property value. Dim minIOThreads As Integer = _ processModelSection.MinIOThreads
' Set the MinIOThreads property to 1. processModelSection.MinIOThreads = 1
// Get the current MinIOThreads property value. int minIOThreads = processModelSection.MinIOThreads;
// Set the MinIOThreads property to 1. processModelSection.MinIOThreads = 1;
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
関連項目
ProcessModelSection クラス
ProcessModelSection メンバ
System.Web.Configuration 名前空間