다음을 통해 공유


WebProcessStatistics.AppDomainCount 속성

정의

프로세스의 애플리케이션 도메인 수를 가져옵니다.

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

속성 값

Int32

애플리케이션 도메인 수입니다.

예제

다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 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 애플리케이션의 수를 나타냅니다.

적용 대상