ApplicationPoolDefaults.AutoStart 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
IIS가 시작될 때 애플리케이션 풀이 자동으로 시작되는지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
property bool AutoStart { bool get(); void set(bool value); };
public bool AutoStart { get; set; }
member this.AutoStart : bool with get, set
Public Property AutoStart As Boolean
속성 값
true
애플리케이션 풀이 자동으로 시작되어야 하면 이고, 그렇지 않으면 입니다 false
. 기본값은 true
입니다.
예제
다음 예에서는 속성을 설정하고 AutoStart 새 애플리케이션 풀을 만들고 커밋합니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ApplicationPoolDefaults 클래스입니다.
Console.WriteLine("AutoStart:\t{0}",
manager.ApplicationPoolDefaults.AutoStart.ToString());
manager.ApplicationPoolDefaults.AutoStart = false;
manager.ApplicationPoolDefaults.Cpu.Limit = 26;
manager.ApplicationPoolDefaults.Recycling.PeriodicRestart.Time = TimeSpan.FromMinutes(1000);
// Create a new application pool.
ApplicationPoolCollection applicationPoolCollection = manager.ApplicationPools;
applicationPoolCollection.Add("new app pool");
// Commit the changes to ApplicationHost.config file.
manager.CommitChanges();
설명
값은 true
WWW 서비스(World Wide Web Publishing Service)에 애플리케이션 풀을 만들 때 또는 IIS가 시작될 때 자동으로 시작되어야 했음을 나타냅니다.