다음을 통해 공유


ApplicationPool.Name 속성

정의

현재 애플리케이션 풀의 이름을 가져오거나 설정합니다.

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

속성 값

현재 애플리케이션 풀의 이름입니다.

예제

다음 예제에서는 애플리케이션 풀 이름과 다른 애플리케이션 풀 속성의 값을 나열합니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ApplicationPool 클래스입니다.

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

설명

이 속성을 사용하여 현재 애플리케이션 풀의 이름을 구성할 수 있습니다. 서버의 모든 애플리케이션 풀에 대한 기본값을 설정하려면 개체를 ApplicationPoolDefaults 사용합니다.

적용 대상