15 lines
460 B
C#
15 lines
460 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <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
|
||
|
}
|
||
|
}
|