Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / State / SessionState.cs / 1 / SessionState.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* HttpSessionState
*
* Copyright (c) 1998-1999, Microsoft Corporation
*
*/
namespace System.Web.SessionState {
using System.Threading;
using System.Runtime.InteropServices;
using System.Web;
using System.Collections;
using System.Collections.Specialized;
using System.Text;
using System.Globalization;
using System.Security.Permissions;
///
/// [To be supplied.]
///
public enum SessionStateMode {
///
/// [To be supplied.]
///
Off = 0,
///
/// [To be supplied.]
///
InProc = 1,
///
/// [To be supplied.]
///
StateServer = 2,
///
/// [To be supplied.]
///
SQLServer = 3,
///
/// [To be supplied.]
///
Custom = 4
};
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public interface IHttpSessionState {
string SessionID {
get;
}
/*
* The length of a session before it times out, in minutes.
*/
///
/// [To be supplied.]
///
int Timeout {
get;
set;
}
/*
* Is this a new session?
*/
///
/// [To be supplied.]
///
bool IsNewSession {
get;
}
/*
* Is session state in a separate process
*/
///
/// [To be supplied.]
///
SessionStateMode Mode {
get;
}
/*
* Is session state cookieless?
*/
bool IsCookieless {
get;
}
HttpCookieMode CookieMode {
get;
}
/*
* Abandon the session.
*
*/
///
/// [To be supplied.]
///
void Abandon();
///
/// [To be supplied.]
///
int LCID {
get;
set;
}
///
/// [To be supplied.]
///
int CodePage {
get;
set;
}
///
/// [To be supplied.]
///
HttpStaticObjectsCollection StaticObjects {
get;
}
///
/// [To be supplied.]
///
Object this[String name]
{
get;
set;
}
///
/// [To be supplied.]
///
Object this[int index]
{
get;
set;
}
///
/// [To be supplied.]
///
void Add(String name, Object value);
///
/// [To be supplied.]
///
void Remove(String name);
///
/// [To be supplied.]
///
void RemoveAt(int index);
///
/// [To be supplied.]
///
void Clear();
///
/// [To be supplied.]
///
void RemoveAll();
///
/// [To be supplied.]
///
int Count {
get;
}
///
/// [To be supplied.]
///
NameObjectCollectionBase.KeysCollection Keys {
get;
}
///
/// [To be supplied.]
///
IEnumerator GetEnumerator();
///
/// [To be supplied.]
///
void CopyTo(Array array, int index);
///
/// [To be supplied.]
///
Object SyncRoot {
get;
}
///
/// [To be supplied.]
///
bool IsReadOnly {
get;
}
///
/// [To be supplied.]
///
bool IsSynchronized {
get;
}
}
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class HttpSessionState : ICollection {
private IHttpSessionState _container;
internal HttpSessionState(IHttpSessionState container) {
_container = container;
}
internal IHttpSessionState Container {
get { return _container; }
}
/*
* The Id of the session.
*/
///
/// [To be supplied.]
///
public String SessionID {
get {return _container.SessionID;}
}
/*
* The length of a session before it times out, in minutes.
*/
///
/// [To be supplied.]
///
public int Timeout {
get {return _container.Timeout;}
set {_container.Timeout = value;}
}
/*
* Is this a new session?
*/
///
/// [To be supplied.]
///
public bool IsNewSession {
get {return _container.IsNewSession;}
}
/*
* Is session state in a separate process
*/
///
/// [To be supplied.]
///
public SessionStateMode Mode {
get {return _container.Mode;}
}
/*
* Is session state cookieless?
*/
public bool IsCookieless {
get {return _container.IsCookieless;}
}
public HttpCookieMode CookieMode {
get {return _container.CookieMode; }
}
/*
* Abandon the session.
*
*/
///
/// [To be supplied.]
///
public void Abandon() {
_container.Abandon();
}
///
/// [To be supplied.]
///
public int LCID {
get { return _container.LCID; }
set { _container.LCID = value; }
}
///
/// [To be supplied.]
///
public int CodePage {
get { return _container.CodePage; }
set { _container.CodePage = value; }
}
///
/// [To be supplied.]
///
public HttpSessionState Contents {
get {return this;}
}
///
/// [To be supplied.]
///
public HttpStaticObjectsCollection StaticObjects {
get { return _container.StaticObjects;}
}
///
/// [To be supplied.]
///
public Object this[String name]
{
get {
return _container[name];
}
set {
_container[name] = value;
}
}
///
/// [To be supplied.]
///
public Object this[int index]
{
get {return _container[index];}
set {_container[index] = value;}
}
///
/// [To be supplied.]
///
public void Add(String name, Object value) {
_container[name] = value;
}
///
/// [To be supplied.]
///
public void Remove(String name) {
_container.Remove(name);
}
///
/// [To be supplied.]
///
public void RemoveAt(int index) {
_container.RemoveAt(index);
}
///
/// [To be supplied.]
///
public void Clear() {
_container.Clear();
}
///
/// [To be supplied.]
///
public void RemoveAll() {
Clear();
}
///
/// [To be supplied.]
///
public int Count {
get {return _container.Count;}
}
///
/// [To be supplied.]
///
public NameObjectCollectionBase.KeysCollection Keys {
get {return _container.Keys;}
}
///
/// [To be supplied.]
///
public IEnumerator GetEnumerator() {
return _container.GetEnumerator();
}
///
/// [To be supplied.]
///
public void CopyTo(Array array, int index) {
_container.CopyTo(array, index);
}
///
/// [To be supplied.]
///
public Object SyncRoot {
get { return _container.SyncRoot;}
}
///
/// [To be supplied.]
///
public bool IsReadOnly {
get { return _container.IsReadOnly;}
}
///
/// [To be supplied.]
///
public bool IsSynchronized {
get { return _container.IsSynchronized;}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* HttpSessionState
*
* Copyright (c) 1998-1999, Microsoft Corporation
*
*/
namespace System.Web.SessionState {
using System.Threading;
using System.Runtime.InteropServices;
using System.Web;
using System.Collections;
using System.Collections.Specialized;
using System.Text;
using System.Globalization;
using System.Security.Permissions;
///
/// [To be supplied.]
///
public enum SessionStateMode {
///
/// [To be supplied.]
///
Off = 0,
///
/// [To be supplied.]
///
InProc = 1,
///
/// [To be supplied.]
///
StateServer = 2,
///
/// [To be supplied.]
///
SQLServer = 3,
///
/// [To be supplied.]
///
Custom = 4
};
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public interface IHttpSessionState {
string SessionID {
get;
}
/*
* The length of a session before it times out, in minutes.
*/
///
/// [To be supplied.]
///
int Timeout {
get;
set;
}
/*
* Is this a new session?
*/
///
/// [To be supplied.]
///
bool IsNewSession {
get;
}
/*
* Is session state in a separate process
*/
///
/// [To be supplied.]
///
SessionStateMode Mode {
get;
}
/*
* Is session state cookieless?
*/
bool IsCookieless {
get;
}
HttpCookieMode CookieMode {
get;
}
/*
* Abandon the session.
*
*/
///
/// [To be supplied.]
///
void Abandon();
///
/// [To be supplied.]
///
int LCID {
get;
set;
}
///
/// [To be supplied.]
///
int CodePage {
get;
set;
}
///
/// [To be supplied.]
///
HttpStaticObjectsCollection StaticObjects {
get;
}
///
/// [To be supplied.]
///
Object this[String name]
{
get;
set;
}
///
/// [To be supplied.]
///
Object this[int index]
{
get;
set;
}
///
/// [To be supplied.]
///
void Add(String name, Object value);
///
/// [To be supplied.]
///
void Remove(String name);
///
/// [To be supplied.]
///
void RemoveAt(int index);
///
/// [To be supplied.]
///
void Clear();
///
/// [To be supplied.]
///
void RemoveAll();
///
/// [To be supplied.]
///
int Count {
get;
}
///
/// [To be supplied.]
///
NameObjectCollectionBase.KeysCollection Keys {
get;
}
///
/// [To be supplied.]
///
IEnumerator GetEnumerator();
///
/// [To be supplied.]
///
void CopyTo(Array array, int index);
///
/// [To be supplied.]
///
Object SyncRoot {
get;
}
///
/// [To be supplied.]
///
bool IsReadOnly {
get;
}
///
/// [To be supplied.]
///
bool IsSynchronized {
get;
}
}
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class HttpSessionState : ICollection {
private IHttpSessionState _container;
internal HttpSessionState(IHttpSessionState container) {
_container = container;
}
internal IHttpSessionState Container {
get { return _container; }
}
/*
* The Id of the session.
*/
///
/// [To be supplied.]
///
public String SessionID {
get {return _container.SessionID;}
}
/*
* The length of a session before it times out, in minutes.
*/
///
/// [To be supplied.]
///
public int Timeout {
get {return _container.Timeout;}
set {_container.Timeout = value;}
}
/*
* Is this a new session?
*/
///
/// [To be supplied.]
///
public bool IsNewSession {
get {return _container.IsNewSession;}
}
/*
* Is session state in a separate process
*/
///
/// [To be supplied.]
///
public SessionStateMode Mode {
get {return _container.Mode;}
}
/*
* Is session state cookieless?
*/
public bool IsCookieless {
get {return _container.IsCookieless;}
}
public HttpCookieMode CookieMode {
get {return _container.CookieMode; }
}
/*
* Abandon the session.
*
*/
///
/// [To be supplied.]
///
public void Abandon() {
_container.Abandon();
}
///
/// [To be supplied.]
///
public int LCID {
get { return _container.LCID; }
set { _container.LCID = value; }
}
///
/// [To be supplied.]
///
public int CodePage {
get { return _container.CodePage; }
set { _container.CodePage = value; }
}
///
/// [To be supplied.]
///
public HttpSessionState Contents {
get {return this;}
}
///
/// [To be supplied.]
///
public HttpStaticObjectsCollection StaticObjects {
get { return _container.StaticObjects;}
}
///
/// [To be supplied.]
///
public Object this[String name]
{
get {
return _container[name];
}
set {
_container[name] = value;
}
}
///
/// [To be supplied.]
///
public Object this[int index]
{
get {return _container[index];}
set {_container[index] = value;}
}
///
/// [To be supplied.]
///
public void Add(String name, Object value) {
_container[name] = value;
}
///
/// [To be supplied.]
///
public void Remove(String name) {
_container.Remove(name);
}
///
/// [To be supplied.]
///
public void RemoveAt(int index) {
_container.RemoveAt(index);
}
///
/// [To be supplied.]
///
public void Clear() {
_container.Clear();
}
///
/// [To be supplied.]
///
public void RemoveAll() {
Clear();
}
///
/// [To be supplied.]
///
public int Count {
get {return _container.Count;}
}
///
/// [To be supplied.]
///
public NameObjectCollectionBase.KeysCollection Keys {
get {return _container.Keys;}
}
///
/// [To be supplied.]
///
public IEnumerator GetEnumerator() {
return _container.GetEnumerator();
}
///
/// [To be supplied.]
///
public void CopyTo(Array array, int index) {
_container.CopyTo(array, index);
}
///
/// [To be supplied.]
///
public Object SyncRoot {
get { return _container.SyncRoot;}
}
///
/// [To be supplied.]
///
public bool IsReadOnly {
get { return _container.IsReadOnly;}
}
///
/// [To be supplied.]
///
public bool IsSynchronized {
get { return _container.IsSynchronized;}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectPersistData.cs
- DbExpressionBuilder.cs
- ClientSideQueueItem.cs
- SafeMarshalContext.cs
- DataGridViewDataConnection.cs
- ScrollViewer.cs
- SoapAttributeOverrides.cs
- Imaging.cs
- _CookieModule.cs
- HostedAspNetEnvironment.cs
- WaitHandle.cs
- Misc.cs
- ServiceEndpointElementCollection.cs
- OutputCacheEntry.cs
- EntityDataSourceDesignerHelper.cs
- unsafenativemethodstextservices.cs
- SmtpAuthenticationManager.cs
- Style.cs
- VirtualPathProvider.cs
- SqlInfoMessageEvent.cs
- BufferBuilder.cs
- Int32Converter.cs
- MarkupCompiler.cs
- ObjectDataSourceChooseMethodsPanel.cs
- base64Transforms.cs
- ImageKeyConverter.cs
- BinHexEncoder.cs
- PointConverter.cs
- JapaneseCalendar.cs
- DataGridViewControlCollection.cs
- WorkflowNamespace.cs
- ResourcesGenerator.cs
- ResponseStream.cs
- tooltip.cs
- ResourceDefaultValueAttribute.cs
- HttpCookiesSection.cs
- XamlFigureLengthSerializer.cs
- webproxy.cs
- TextFormatterContext.cs
- MessageSecurityOverTcpElement.cs
- ConnectivityStatus.cs
- Panel.cs
- ObjectRef.cs
- CallbackHandler.cs
- SqlBuilder.cs
- TextSerializer.cs
- TraceEventCache.cs
- PageFunction.cs
- CompensationHandlingFilter.cs
- ToolStripRenderEventArgs.cs
- MetricEntry.cs
- _FtpControlStream.cs
- RIPEMD160.cs
- DictionaryBase.cs
- SchemaDeclBase.cs
- ObjectListGeneralPage.cs
- GridViewCancelEditEventArgs.cs
- _IPv4Address.cs
- WebPartTracker.cs
- WebPartConnectionsDisconnectVerb.cs
- ResourceDescriptionAttribute.cs
- AppDomain.cs
- HttpRequestCacheValidator.cs
- TreeWalkHelper.cs
- UnauthorizedWebPart.cs
- WorkflowRuntimeSection.cs
- PageClientProxyGenerator.cs
- ProcessHostMapPath.cs
- AsymmetricSignatureFormatter.cs
- RegistrySecurity.cs
- ClientTargetSection.cs
- SBCSCodePageEncoding.cs
- PageHandlerFactory.cs
- TypeUtil.cs
- CodeStatement.cs
- ToolstripProfessionalRenderer.cs
- CharacterBufferReference.cs
- CmsUtils.cs
- ManagementScope.cs
- ColumnCollection.cs
- EventMappingSettings.cs
- SmiConnection.cs
- _BaseOverlappedAsyncResult.cs
- ClientScriptItemCollection.cs
- DataGridCommandEventArgs.cs
- RelationalExpressions.cs
- SwitchAttribute.cs
- RayHitTestParameters.cs
- MissingSatelliteAssemblyException.cs
- Perspective.cs
- SpecialNameAttribute.cs
- HttpCachePolicyElement.cs
- WindowPattern.cs
- TranslateTransform3D.cs
- XmlText.cs
- State.cs
- ResXResourceReader.cs
- DecimalAnimation.cs
- Pens.cs
- ArgumentException.cs