CompilationSection.NumRecompilesBeforeAppRestart 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
애플리케이션을 다시 시작하기 전에 리소스를 동적으로 다시 컴파일할 수 있는 횟수를 가져오거나 설정합니다.
public:
property int NumRecompilesBeforeAppRestart { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("numRecompilesBeforeAppRestart", DefaultValue=15)]
public int NumRecompilesBeforeAppRestart { get; set; }
[<System.Configuration.ConfigurationProperty("numRecompilesBeforeAppRestart", DefaultValue=15)>]
member this.NumRecompilesBeforeAppRestart : int with get, set
Public Property NumRecompilesBeforeAppRestart As Integer
속성 값
애플리케이션을 다시 시작하기 전에 리소스를 동적으로 다시 컴파일할 수 있는 횟수를 나타내는 값입니다. 기본값은 15회입니다.
- 특성
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 NumRecompilesBeforeAppRestart 속성입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 CompilationSection 클래스입니다.
// Display NumRecompilesBeforeAppRestart property.
Console.WriteLine("NumRecompilesBeforeAppRestart: {0}",
configSection.NumRecompilesBeforeAppRestart);
// Set NumRecompilesBeforeAppRestart property.
configSection.NumRecompilesBeforeAppRestart = 15;
' Display NumRecompilesBeforeAppRestart property.
Console.WriteLine("NumRecompilesBeforeAppRestart: {0}", _
configSection.NumRecompilesBeforeAppRestart)
' Set NumRecompilesBeforeAppRestart property.
configSection.NumRecompilesBeforeAppRestart = 15
설명
애플리케이션 다시 시작 되기 전에 발생할 수 있는 리소스의 동적 재컴파일 수를 나타냅니다. 전역 및 애플리케이션 구성 수준에서 되지만 디렉터리 구성 수준에 없습니다.이 특성은 지원 됩니다.
참고
ASP.NET 증가 NumRecompilesBeforeAppRestart 될 때마다 어셈블리는 무효화 되 고 삭제 되지 않으면 속성 값입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET