次の方法で共有


ApplicationPool.ManagedRuntimeVersion プロパティ

定義

現在のアプリケーション プール内のマネージド アプリケーションに使用される.NET Frameworkのバージョンを取得または設定します。

public:
 property System::String ^ ManagedRuntimeVersion { System::String ^ get(); void set(System::String ^ value); };
public string ManagedRuntimeVersion { get; set; }
member this.ManagedRuntimeVersion : string with get, set
Public Property ManagedRuntimeVersion As String

プロパティ値

アプリケーション プールによって使用される.NET Frameworkのバージョン番号。 既定値は "v2.0" です。

次の例では、 プロパティの ManagedRuntimeVersion 値と、他のアプリケーション プール プロパティの値を一覧表示します。 このコード例は、ApplicationPool クラスのために提供されている大規模な例の一部です。

// If the applicationPool is stopped, restart it.
if (applicationPool.State == ObjectState.Stopped)
{
    applicationPool.Start();
}

注釈

現在有効な値は、"v2.0" と "v1.1" です。 IIS サーバーに新しいバージョンの.NET Frameworkがインストールされると、追加の値が受け入れられます。

このプロパティを使用して、現在のアプリケーション プールのマネージド ランタイム バージョンを構成できます。 サーバー上のすべてのアプリケーション プールの既定値を設定するには、 オブジェクトを ApplicationPoolDefaults 使用します。

適用対象