1 //------------------------------------------------------------------------------
2 // <copyright file="PagesConfiguration.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 /*
8  * Code related to the <assemblies> config section
9  *
10  * Copyright (c) 1999 Microsoft Corporation
11  */
12 
13 namespace System.Web.UI {
14     public enum CompilationMode {
15         Auto,        // Use no-compile mode when possible
16         Never,          // Never compile pages, and fail if no-compile is not possible
17         Always          // Always compile pages
18     }
19 }
20