You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
481
mcs/class/referencesource/System.Web/State/SessionState.cs
Normal file
481
mcs/class/referencesource/System.Web/State/SessionState.cs
Normal file
@ -0,0 +1,481 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="SessionState.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/*
|
||||
* 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;
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public enum SessionStateMode {
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Off = 0,
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
InProc = 1,
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
StateServer = 2,
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
SQLServer = 3,
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Custom = 4
|
||||
};
|
||||
|
||||
public interface IHttpSessionState {
|
||||
|
||||
string SessionID {
|
||||
get;
|
||||
}
|
||||
|
||||
/*
|
||||
* The length of a session before it times out, in minutes.
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
int Timeout {
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/*
|
||||
* Is this a new session?
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
bool IsNewSession {
|
||||
get;
|
||||
}
|
||||
|
||||
/*
|
||||
* Is session state in a separate process
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
SessionStateMode Mode {
|
||||
get;
|
||||
}
|
||||
|
||||
/*
|
||||
* Is session state cookieless?
|
||||
*/
|
||||
bool IsCookieless {
|
||||
get;
|
||||
}
|
||||
|
||||
HttpCookieMode CookieMode {
|
||||
get;
|
||||
}
|
||||
|
||||
/*
|
||||
* Abandon the session.
|
||||
*
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
void Abandon();
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
int LCID {
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
int CodePage {
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
HttpStaticObjectsCollection StaticObjects {
|
||||
get;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Object this[String name]
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Object this[int index]
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
void Add(String name, Object value);
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
void Remove(String name);
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
void RemoveAt(int index);
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
void Clear();
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
void RemoveAll();
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
int Count {
|
||||
get;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
NameObjectCollectionBase.KeysCollection Keys {
|
||||
get;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
IEnumerator GetEnumerator();
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
void CopyTo(Array array, int index);
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Object SyncRoot {
|
||||
get;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
bool IsReadOnly {
|
||||
get;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
bool IsSynchronized {
|
||||
get;
|
||||
}
|
||||
}
|
||||
|
||||
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.
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public String SessionID {
|
||||
get {return _container.SessionID;}
|
||||
}
|
||||
|
||||
/*
|
||||
* The length of a session before it times out, in minutes.
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public int Timeout {
|
||||
get {return _container.Timeout;}
|
||||
set {_container.Timeout = value;}
|
||||
}
|
||||
|
||||
/*
|
||||
* Is this a new session?
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public bool IsNewSession {
|
||||
get {return _container.IsNewSession;}
|
||||
}
|
||||
|
||||
/*
|
||||
* Is session state in a separate process
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
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.
|
||||
*
|
||||
*/
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public void Abandon() {
|
||||
_container.Abandon();
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public int LCID {
|
||||
get { return _container.LCID; }
|
||||
set { _container.LCID = value; }
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public int CodePage {
|
||||
get { return _container.CodePage; }
|
||||
set { _container.CodePage = value; }
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public HttpSessionState Contents {
|
||||
get {return this;}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public HttpStaticObjectsCollection StaticObjects {
|
||||
get { return _container.StaticObjects;}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public Object this[String name]
|
||||
{
|
||||
get {
|
||||
return _container[name];
|
||||
}
|
||||
set {
|
||||
_container[name] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public Object this[int index]
|
||||
{
|
||||
get {return _container[index];}
|
||||
set {_container[index] = value;}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public void Add(String name, Object value) {
|
||||
_container[name] = value;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public void Remove(String name) {
|
||||
_container.Remove(name);
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public void RemoveAt(int index) {
|
||||
_container.RemoveAt(index);
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public void Clear() {
|
||||
_container.Clear();
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public void RemoveAll() {
|
||||
Clear();
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public int Count {
|
||||
get {return _container.Count;}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public NameObjectCollectionBase.KeysCollection Keys {
|
||||
get {return _container.Keys;}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public IEnumerator GetEnumerator() {
|
||||
return _container.GetEnumerator();
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public void CopyTo(Array array, int index) {
|
||||
_container.CopyTo(array, index);
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public Object SyncRoot {
|
||||
get { return _container.SyncRoot;}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public bool IsReadOnly {
|
||||
get { return _container.IsReadOnly;}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
public bool IsSynchronized {
|
||||
get { return _container.IsSynchronized;}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user