You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
@@ -86,9 +86,9 @@ public sealed class HttpSessionState : ICollection, IEnumerable
|
||||
get { return container.IsSynchronized; }
|
||||
}
|
||||
|
||||
public object this [string key] {
|
||||
get { return container [key]; }
|
||||
set { container [key] = value; }
|
||||
public object this [string name] {
|
||||
get { return container [name]; }
|
||||
set { container [name] = value; }
|
||||
}
|
||||
|
||||
public object this [int index] {
|
||||
|
||||
@@ -37,11 +37,11 @@ namespace System.Web.SessionState {
|
||||
{
|
||||
///methods
|
||||
void Abandon ();
|
||||
void Add (string itemName, object itemValue);
|
||||
void Add (string name, object value);
|
||||
void Clear ();
|
||||
void CopyTo (Array sessionValues, int index);
|
||||
void CopyTo (Array array, int index);
|
||||
IEnumerator GetEnumerator ();
|
||||
void Remove (string itemName);
|
||||
void Remove (string name);
|
||||
void RemoveAll ();
|
||||
void RemoveAt (int index);
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ namespace System.Web.SessionState {
|
||||
void Initialize ();
|
||||
bool InitializeRequest (HttpContext context, bool suppressAutoDetectRedirect, out bool supportSessionIDReissue);
|
||||
void RemoveSessionID (HttpContext context);
|
||||
void SaveSessionID (HttpContext context, string sessionID, out bool isRedirected, out bool isCookieAdded);
|
||||
void SaveSessionID (HttpContext context, string id, out bool redirected, out bool cookieAdded);
|
||||
bool Validate (string id);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace System.Web.SessionState {
|
||||
{
|
||||
///methods
|
||||
void Clear ();
|
||||
void Remove (string itemName);
|
||||
void Remove (string name);
|
||||
void RemoveAt (int index);
|
||||
|
||||
///properties
|
||||
|
||||
@@ -38,12 +38,12 @@ namespace System.Web.SessionState {
|
||||
HttpStaticObjectsCollection staticObjects;
|
||||
int timeout;
|
||||
|
||||
public SessionStateStoreData (ISessionStateItemCollection items,
|
||||
HttpStaticObjectsCollection objects,
|
||||
public SessionStateStoreData (ISessionStateItemCollection sessionItems,
|
||||
HttpStaticObjectsCollection staticObjects,
|
||||
int timeout)
|
||||
{
|
||||
sessionItems = items;
|
||||
staticObjects = objects;
|
||||
this.sessionItems = sessionItems;
|
||||
this.staticObjects = staticObjects;
|
||||
this.timeout = timeout;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user