次の方法で共有


ProcessModelSection.MaxAppDomains プロパティ

定義

1 つのプロセスに許容されるアプリケーション ドメイン数の上限を取得または設定します。

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

プロパティ値

1 つのプロセスに許容されるアプリケーション ドメイン数の上限。

属性

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


// Get the current MaxAppDomains property value.
int maxAppdomains = 
 processModelSection.MaxAppDomains;

// Set the MaxAppDomains property to 4.
processModelSection.MaxAppDomains = 4;
' Get the current MaxAppDomains property value.
   Dim maxAppdomains As Integer = _
   processModelSection.MaxAppDomains

' Set the MaxAppDomains property to 4.
processModelSection.MaxAppDomains = 4

注釈

しきい値を MaxAppDomains 超えた場合、新しいアプリケーション ドメインを開始する必要がある場合、最も使用頻度の低いアプリケーション ドメインはシャットダウンされます。

適用対象