File: Configuration\PagesEnableSessionState.cs | |
Project: ndp\fx\src\xsp\system\Web\System.Web.csproj (System.Web) |
//------------------------------------------------------------------------------ // <copyright file="PagesEnableSessionState.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> //------------------------------------------------------------------------------ namespace System.Web.Configuration { public enum PagesEnableSessionState { False = 0, ReadOnly = 1, True = 2 } } |