//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* * IPartialSessionState * * Copyright (c) 1998-1999, Microsoft Corporation * */ namespace System.Web.SessionState { using System.Security.Permissions; using System.Collections.Generic; /* * Marker interface to indicate that class uses granular session state. */ /// /// [To be supplied.] /// public interface IPartialSessionState { IList PartialSessionStateKeys { get; } } }