WebProcessStatistics.AppDomainCount 属性

定义

获取进程中的应用程序域数。

public:
 property int AppDomainCount { int get(); };
public int AppDomainCount { get; }
member this.AppDomainCount : int
Public ReadOnly Property AppDomainCount As Integer

属性值

应用程序域数。

示例

下面的代码示例演示如何获取 AppDomainCount 值。

public string GetAppDomainCount()
{
    // Get the app domain count.
    return (string.Format(
        "Application domain count: {0}",
        processStatistics.AppDomainCount.ToString()));
}
Public Function GetAppDomainCount() As String
    ' Get the app domain count.
    Return String.Format( _
    "Application domain count: {0}", _
    processStatistics.AppDomainCount.ToString())
End Function 'GetAppDomainCount

注解

此属性通常引用进程中 ASP.NET 应用程序的数量,包括默认域。

适用于