1 //------------------------------------------------------------------------------ 2 // <copyright file="IReadOnlySessionState.cs" company="Microsoft"> 3 // Copyright (c) Microsoft Corporation. All rights reserved. 4 // </copyright> 5 //------------------------------------------------------------------------------ 6 7 /* 8 * IReadOnlySessionState 9 * 10 * Copyright (c) 1998-1999, Microsoft Corporation 11 * 12 */ 13 14 namespace System.Web.SessionState { 15 16 /* 17 * Marker interface to indicate that class needs only read-only 18 * access to session state. 19 */ 20 21 22 /// <devdoc> 23 /// <para>[To be supplied.]</para> 24 /// </devdoc> 25 public interface IReadOnlySessionState : IRequiresSessionState { 26 } 27 28 } 29