ProcessModelSection.MinIOThreads プロパティとは何? わかりやすく解説 Weblio辞書 (original) (raw)

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

CLR スレッド プールにおける CPU あたりの I/O スレッド数の下限取得または設定します

名前空間: System.Web.Configuration
アセンブリ: System.Web (system.web.dll 内)
構文構文

Visual Basic (宣言)

Public Property MinIOThreads As Integer

Visual Basic (使用法)

Dim instance As ProcessModelSection Dim value As Integer

value = instance.MinIOThreads

instance.MinIOThreads = value

C#

public int MinIOThreads { get; set; }

C++

public: property int MinIOThreads { int get (); void set (int value); }

J#

/** @property */ public int get_MinIOThreads ()

/** @property */ public void set_MinIOThreads (int value)

JScript

public function get MinIOThreads () : int

public function set MinIOThreads (value : int)

プロパティ
CLR スレッド プールにおける CPU あたりの I/O スレッド数の下限

使用例使用例

MinIOThreads プロパティへのアクセス方法次のコード例示します

Visual Basic

' Get the current MinIOThreads property value. Dim minIOThreads As Integer = _ processModelSection.MinIOThreads

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

C#

// 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 によってサポートされていないバージョンありますサポートされているバージョンについては、「システム要件」を参照してください

バージョン情報バージョン情報

.NET Framework
サポート対象 : 2.0

参照参照

関連項目
ProcessModelSection クラス
ProcessModelSection メンバ
System.Web.Configuration 名前空間