15 lines
460 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <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
}
}