共用方式為


ProcessModelSection.MaxAppDomains 屬性

定義

取得或設定一個處理序中所允許的應用程式網域最大數目。

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

屬性值

一個處理序中所允許的應用程式網域最大數目。

屬性

範例

下列程式碼範例示範如何存取 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如果超過臨界值,則如果新的應用程式域必須啟動,則會關閉使用最少的應用程式域。

適用於