ApplicationPool.Name 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 애플리케이션 풀의 이름을 가져오거나 설정합니다.
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 사용합니다.