//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.Configuration { public enum PagesEnableSessionState { False = 0, ReadOnly = 1, True = 2 } }